From b34b774e7452ddbfde83e53df0a7ac641cbd44b2 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 23 May 2025 13:55:29 -0500 Subject: [PATCH 1/2] Fix content issues for PlatyPS (#4005) * Fix content issues for PlatyPS * Fix broken links --- .../New-ADAuthenticationPolicy.md | 231 +++++++++++------- .../winserver2016-ps/DFSR/Import-DfsrClone.md | 8 +- .../DFSR/Remove-DfsReplicationGroup.md | 8 +- ...crosoft.Windows.ServerManager.Migration.md | 14 +- .../MultiPoint/Get-WmsUser.md | 22 +- .../MultiPoint/New-WmsUser.md | 13 +- .../MultiPoint/Remove-WmsUser.md | 9 +- .../MultiPoint/Set-WmsUser.md | 17 +- .../MultiPoint/Stop-WmsSystem.md | 13 +- .../winserver2016-ps/TLS/Get-TlsEccCurve.md | 38 +-- .../New-ADAuthenticationPolicy.md | 231 +++++++++++------- .../winserver2019-ps/DFSR/Import-DfsrClone.md | 8 +- .../DFSR/Remove-DfsReplicationGroup.md | 8 +- ...crosoft.Windows.ServerManager.Migration.md | 14 +- .../MultiPoint/Get-WmsUser.md | 22 +- .../MultiPoint/New-WmsUser.md | 13 +- .../MultiPoint/Remove-WmsUser.md | 9 +- .../MultiPoint/Set-WmsUser.md | 17 +- .../MultiPoint/Stop-WmsSystem.md | 13 +- .../winserver2019-ps/TLS/Get-TlsEccCurve.md | 38 +-- .../New-ADAuthenticationPolicy.md | 231 +++++++++++------- .../winserver2022-ps/DFSR/Import-DfsrClone.md | 8 +- .../DFSR/Remove-DfsReplicationGroup.md | 8 +- ...crosoft.Windows.ServerManager.Migration.md | 14 +- .../MultiPoint/Get-WmsUser.md | 25 +- .../MultiPoint/New-WmsUser.md | 17 +- .../MultiPoint/Remove-WmsUser.md | 13 +- .../MultiPoint/Set-WmsUser.md | 17 +- .../MultiPoint/Stop-WmsSystem.md | 13 +- .../winserver2022-ps/TLS/Get-TlsEccCurve.md | 4 +- .../New-ADAuthenticationPolicy.md | 185 +++++++++----- .../winserver2025-ps/DFSR/Import-DfsrClone.md | 2 +- .../DFSR/Remove-DfsReplicationGroup.md | 2 +- ...crosoft.Windows.ServerManager.Migration.md | 14 +- .../MultiPoint/Get-WmsUser.md | 13 +- .../MultiPoint/New-WmsUser.md | 9 +- .../MultiPoint/Remove-WmsUser.md | 11 +- .../MultiPoint/Set-WmsUser.md | 7 +- .../MultiPoint/Stop-WmsSystem.md | 13 +- .../NetworkATC/Set-NetIntentTracing.md | 4 +- .../winserver2025-ps/TLS/Get-TlsEccCurve.md | 4 +- 41 files changed, 825 insertions(+), 535 deletions(-) diff --git a/docset/winserver2016-ps/ActiveDirectory/New-ADAuthenticationPolicy.md b/docset/winserver2016-ps/ActiveDirectory/New-ADAuthenticationPolicy.md index 904c78c9c9..bf89600300 100644 --- a/docset/winserver2016-ps/ActiveDirectory/New-ADAuthenticationPolicy.md +++ b/docset/winserver2016-ps/ActiveDirectory/New-ADAuthenticationPolicy.md @@ -17,66 +17,77 @@ Creates an Active Directory Domain Services authentication policy object. ``` New-ADAuthenticationPolicy [-WhatIf] [-Confirm] [-AuthType ] - [-ComputerAllowedToAuthenticateTo ] [-ComputerTGTLifetimeMins ] [-Credential ] - [-Description ] [-Enforce] [-Instance ] [-Name] - [-OtherAttributes ] [-PassThru] [-ProtectedFromAccidentalDeletion ] - [-RollingNTLMSecret ] [-Server ] [-ServiceAllowedToAuthenticateFrom ] + [-ComputerAllowedToAuthenticateTo ] [-ComputerTGTLifetimeMins ] + [-Credential ] [-Description ] [-Enforce] + [-Instance ] [-Name] [-OtherAttributes ] [-PassThru] + [-ProtectedFromAccidentalDeletion ] [-RollingNTLMSecret ] + [-Server ] [-ServiceAllowedToAuthenticateFrom ] [-ServiceAllowedToAuthenticateTo ] [-ServiceAllowedNTLMNetworkAuthentication] [-ServiceTGTLifetimeMins ] [-UserAllowedToAuthenticateFrom ] - [-UserAllowedToAuthenticateTo ] [-UserAllowedNTLMNetworkAuthentication] [-UserTGTLifetimeMins ] - [] + [-UserAllowedToAuthenticateTo ] [-UserAllowedNTLMNetworkAuthentication] + [-UserTGTLifetimeMins ] [] ``` ## DESCRIPTION -The **New-ADAuthenticationPolicy** creates an authentication policy object in Active Directory® Domain Services. -Commonly used attributes of the object can be specified by the parameters of this cmdlet. -To set attributes for the object that are not represented by the parameters of this cmdlet, specify the *OtherAttributes* parameter. +The **New-ADAuthenticationPolicy** creates an authentication policy object in Active Directory® +Domain Services. -You can use the pipeline operator and the Import-Csv cmdlet to pass a list for bulk creation of objects in the directory. -You can also specify a template object by using the *Instance* parameter to create objects from a template. +Commonly used attributes of the object can be specified by the parameters of this cmdlet. To set +attributes for the object that are not represented by the parameters of this cmdlet, specify the +*OtherAttributes* parameter. + +You can use the pipeline operator and the Import-Csv cmdlet to pass a list for bulk creation of +objects in the directory. You can also specify a template object by using the *Instance* parameter +to create objects from a template. ## EXAMPLES ### Example 1: Create an authentication policy with a user TGT lifetime + ``` PS C:\> New-ADAuthenticationPolicy -Name "AuthenticationPolicy01" -UserTGTLifetimeMins 60 ``` -This command creates an authentication policy object named AuthenticationPolicy01 and sets the TGT lifetime for a user account to 60 minutes. -Because the *Enforce* parameter is not specified, the authentication policy created is in audit mode. +This command creates an authentication policy object named AuthenticationPolicy01 and sets the TGT +lifetime for a user account to 60 minutes. Because the *Enforce* parameter is not specified, the +authentication policy created is in audit mode. ### Example 2: Create an enforced authentication policy + ``` PS C:\> New-ADAuthenticationPolicy -Name "AuthenticationPolicy02" -Enforce ``` -This command creates an authentication policy named AuthenticationPolicy02 and enforces it by specifying the *Enforce* parameter. +This command creates an authentication policy named AuthenticationPolicy02 and enforces it by +specifying the *Enforce* parameter. ### Example 3: Create an authentication policy + ``` PS C:\> New-ADAuthenticationPolicy -Name "TestAuthenticationPolicy" -UserAllowedToAuthenticateFrom (Get-Acl .\someFile.txt).sddl ``` -This command creates an authentication policy named TestAuthenticationPolicy. -The *UserAllowedToAuthenticationFrom* parameter specifies the devices from which users are allowed to authenticate by an SDDL string in the file named someFile.txt. +This command creates an authentication policy named TestAuthenticationPolicy. The +*UserAllowedToAuthenticationFrom* parameter specifies the devices from which users are allowed to +authenticate by an SDDL string in the file named someFile.txt. ## PARAMETERS ### -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 -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 Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Negotiate, Basic Required: False @@ -87,12 +98,14 @@ Accept wildcard characters: False ``` ### -ComputerAllowedToAuthenticateTo -Specifies the security descriptor definition language (SDDL) string of the security descriptor used to determine if the computer can authenticate to this account. + +Specifies the security descriptor definition language (SDDL) string of the security descriptor used +to determine if the computer can authenticate to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -102,12 +115,14 @@ Accept wildcard characters: False ``` ### -ComputerTGTLifetimeMins -Specifies the lifetime in minutes for non-renewable ticket granting tickets (TGTs) for computer accounts. + +Specifies the lifetime in minutes for non-renewable ticket granting tickets (TGTs) for computer +accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -117,6 +132,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -132,19 +148,22 @@ 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 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. -If you specify credentials that do not have permission to perform the task, the cmdlet returns an error. +If you specify credentials that do not have permission to perform the task, the cmdlet returns an +error. ```yaml Type: PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -154,14 +173,15 @@ Accept wildcard characters: False ``` ### -Description -Specifies a description for the object. -This parameter sets the value of the description property for the object. -The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) for this property is description. + +Specifies a description for the object. This parameter sets the value of the description property +for the object. The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) +for this property is description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -171,12 +191,13 @@ Accept wildcard characters: False ``` ### -Enforce + Indicates that the authentication policy is enforced. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -186,13 +207,15 @@ Accept wildcard characters: False ``` ### -Instance -Specifies an instance of an **ADAuthenticationPolicy** object to use as a template for a new **ADAuthenticationPolicy**object. -To get the **ADAuthenticationPolicy** object to use as a template, use the **Get-ADAuthenticationPolicy** cmdlet. + +Specifies an instance of an **ADAuthenticationPolicy** object to use as a template for a new +**ADAuthenticationPolicy**object. To get the **ADAuthenticationPolicy** object to use as a template, +use the **Get-ADAuthenticationPolicy** cmdlet. ```yaml Type: ADAuthenticationPolicy Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -202,14 +225,14 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of the object. -This parameter sets the **Name** property of the Active Directory Domain Services object. -The LDAP display name (**ldapDisplayName**) of this property is name. + +Specifies the name of the object. This parameter sets the **Name** property of the Active Directory +Domain Services object. The LDAP display name (**ldapDisplayName**) of this property is name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -219,19 +242,24 @@ Accept wildcard characters: False ``` ### -OtherAttributes -Specifies a list of object attribute values for attributes that are not represented by other parameters. -You can set one or more attributes at the same time with this parameter, and if an attribute takes more than one value you can assign multiple values. -To identify an attribute, specify the LDAPDisplayName (**ldapDisplayName**) defined for it in the Active Directory Domain Services schema. -Specify the attribute and the value of the attribute in the following format: @{'AttributeLDAPDisplayName'=value}. +Specifies a list of object attribute values for attributes that are not represented by other +parameters. You can set one or more attributes at the same time with this parameter, and if an +attribute takes more than one value you can assign multiple values. To identify an attribute, +specify the LDAPDisplayName (**ldapDisplayName**) defined for it in the Active Directory Domain +Services schema. -To specify multiple values for an attribute, specify a comma separated list the values for the display name. -You can specify values for more than one attribute by using semicolons to separate attribute value pairs. +Specify the attribute and the value of the attribute in the following format: +@{'AttributeLDAPDisplayName'=value}. + +To specify multiple values for an attribute, specify a comma separated list the values for the +display name. You can specify values for more than one attribute by using semicolons to separate +attribute value pairs. ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -241,13 +269,14 @@ 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 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -257,9 +286,10 @@ Accept wildcard characters: False ``` ### -ProtectedFromAccidentalDeletion -Indicates whether to prevent the object from being deleted. -When this property is set to true, you cannot delete the corresponding object without changing the value of the property. -The acceptable values for this parameter are: + +Indicates whether to prevent the object from being deleted. When this property is set to true, you +cannot delete the corresponding object without changing the value of the property. The acceptable +values for this parameter are: - $False or 0 - $True or 1 @@ -267,7 +297,7 @@ The acceptable values for this parameter are: ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -277,12 +307,14 @@ Accept wildcard characters: False ``` ### -RollingNTLMSecret -Beginning with Windows 10, version 1703, this feature is deprecated and should not be configured in Active Directory. + +Beginning with Windows 10, version 1703, this feature is deprecated and should not be configured in +Active Directory. ```yaml Type: ADStrongNTLMPolicyType Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Disabled, Optional, Required Required: False @@ -293,32 +325,37 @@ 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 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: 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 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -328,12 +365,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedNTLMNetworkAuthentication -Specifies that the policy allows NTLM network authentication if the service account has an access control expression specified by the *ServiceAllowedToAuthenticateFrom* parameter. + +Specifies that the policy allows NTLM network authentication if the service account has an access +control expression specified by the *ServiceAllowedToAuthenticateFrom* parameter. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -343,12 +382,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedToAuthenticateFrom -Specifies an access control expression used to determine from which devices the service can authenticate. + +Specifies an access control expression used to determine from which devices the service can +authenticate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -358,12 +399,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedToAuthenticateTo -Specifies the SDDL string of the security descriptor used to determine if the service can authenticate to this account. + +Specifies the SDDL string of the security descriptor used to determine if the service can +authenticate to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -373,12 +416,13 @@ Accept wildcard characters: False ``` ### -ServiceTGTLifetimeMins + Specifies the lifetime in minutes for non-renewable TGTs for service accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -388,12 +432,14 @@ Accept wildcard characters: False ``` ### -UserAllowedNTLMNetworkAuthentication -Indicates that the policy allows NTLM network authentication if the user account has an access control expression specified by the *UserAllowedToAuthenticateFrom* parameter. + +Indicates that the policy allows NTLM network authentication if the user account has an access +control expression specified by the *UserAllowedToAuthenticateFrom* parameter. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -403,12 +449,14 @@ Accept wildcard characters: False ``` ### -UserAllowedToAuthenticateFrom -Specifies an access control expression used to determine from which devices the users can authenticate. + +Specifies an access control expression used to determine from which devices the users can +authenticate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -418,12 +466,14 @@ Accept wildcard characters: False ``` ### -UserAllowedToAuthenticateTo -Specifies the SDDL string of the security descriptor used to determine if the users can authenticate to this account. + +Specifies the SDDL string of the security descriptor used to determine if the users can authenticate +to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -433,12 +483,13 @@ Accept wildcard characters: False ``` ### -UserTGTLifetimeMins + Specifies the lifetime in minutes for non-renewable TGTs for user accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -448,6 +499,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -464,11 +516,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 -### System.String: System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], System.Management.Automation.SwitchParameter: System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] +### ADStrongNTLMPolicyType + +### System.Boolean + +### System.Int32 + +### System.Management.Automation.SwitchParameter + +### System.String ## OUTPUTS @@ -485,4 +549,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-ADAuthenticationPolicy](./Set-ADAuthenticationPolicy.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - diff --git a/docset/winserver2016-ps/DFSR/Import-DfsrClone.md b/docset/winserver2016-ps/DFSR/Import-DfsrClone.md index cc605ac2be..587e45e231 100644 --- a/docset/winserver2016-ps/DFSR/Import-DfsrClone.md +++ b/docset/winserver2016-ps/DFSR/Import-DfsrClone.md @@ -40,7 +40,7 @@ The term downstream refers to the non-authoritative server that is a clone of th ``` PS C:\> Import-DfsrClone -Volume "C:" -Path C:\DfsRClone This operation will import the database and clone DFSR. It can take a long time to complete. Use Get-DfsrCloneState or -DFSR event 2404 to determine when the import has succeeded. Volume: +DFSR event 2404 to determine when the import has succeeded. Volume: c:\ Path: C:\Dfsrclone Are you sure you want to continue to import the database clone? [Y] Yes [N] No [S] Suspend [?] Help (default is "Y"):Y ``` @@ -139,7 +139,7 @@ Use this parameter for scripted cloning. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -172,7 +172,7 @@ After you export the DFS Replication database, but before you perform the import ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -206,7 +206,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### [none] +### None ## NOTES diff --git a/docset/winserver2016-ps/DFSR/Remove-DfsReplicationGroup.md b/docset/winserver2016-ps/DFSR/Remove-DfsReplicationGroup.md index 8d5017ad00..3937b5e8df 100644 --- a/docset/winserver2016-ps/DFSR/Remove-DfsReplicationGroup.md +++ b/docset/winserver2016-ps/DFSR/Remove-DfsReplicationGroup.md @@ -78,7 +78,7 @@ If you do not specify this parameter, the cmdlet uses the current domain. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 100 @@ -94,7 +94,7 @@ Use this parameter for scripted removal of replication groups. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -127,7 +127,7 @@ Indicates that the cmdlet removes any replicated folders belonging to the replic ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -161,7 +161,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### [none] +### None ## NOTES diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md index fb7b598171..74dd3dac7c 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md @@ -1,31 +1,41 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. Download Help Link: https://aka.ms/winsvr-2016-pshelp +Help Version: 1.0.0.0 +Locale: en-US Module Name: Microsoft.Windows.ServerManager.Migration +Module Guid: 00000000-0000-0000-0000-000000000000 ms.date: 01/03/2017 +schema: 2.0.0 title: Microsoft.Windows.ServerManager.Migration --- - - # Microsoft.Windows.ServerManager.Migration Module + ## Description + This reference provides cmdlet descriptions and syntax for all Server Migration cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. Administrators can use the Windows Server Migration Tools cmdlets for Windows PowerShell to migrate server roles, features, operating system settings, and other data and shares to computers that are running the latest version of Windows Server. ## Microsoft.Windows.ServerManager.Migration Cmdlets + ### [Export-SmigServerSetting](./Export-SmigServerSetting.md) + Exports selected Windows features and operating system settings from the local computer, and stores them in a migration store. ### [Get-SmigServerFeature](./Get-SmigServerFeature.md) + Gets the set of all Windows features that can be migrated from the local server or from a migration store. ### [Import-SmigServerSetting](./Import-SmigServerSetting.md) + Imports selected Windows features, and operating system settings from a migration store, and applies them to the local computer. ### [Receive-SmigServerData](./Receive-SmigServerData.md) + Allows a destination server to receive shares, folders, files, and associated permissions and share properties that are migrated from a source server. ### [Send-SmigServerData](./Send-SmigServerData.md) + Migrates folders, files, and associated permissions and share properties from a source server to a destination server through port 7000. diff --git a/docset/winserver2016-ps/MultiPoint/Get-WmsUser.md b/docset/winserver2016-ps/MultiPoint/Get-WmsUser.md index 5aa55adf78..ed587ee22a 100644 --- a/docset/winserver2016-ps/MultiPoint/Get-WmsUser.md +++ b/docset/winserver2016-ps/MultiPoint/Get-WmsUser.md @@ -34,14 +34,14 @@ The **Get-WmsUser** cmdlet gets local user account information for a specified u ``` PS C:\> Get-WmsUser -All Name : Administrator -Password : -FullName : +Password : +FullName : Description : Built-in account for administering the computer/domain UserType : Administrator ComputerName : Test1 Name : Guest -Password : -FullName : +Password : +FullName : Description : Built-in account for guest access to the computer/domain UserType : Standard ComputerName : Test1 @@ -57,7 +57,7 @@ Indicates that this operation applies to all sessions on the target host. ```yaml Type: SwitchParameter Parameter Sets: GetAllUsers -Aliases: +Aliases: Required: True Position: Named @@ -72,7 +72,7 @@ Specifies the name of the user to get. ```yaml Type: String Parameter Sets: GetUser -Aliases: +Aliases: Required: True Position: Named @@ -106,16 +106,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### +### WmsUser + This cmdlet returns a **WmsUser** collection as **PSObject** collection. ## NOTES ## RELATED LINKS -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) -[Set-WmsUser](./Set-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) +[Set-WmsUser](Set-WmsUser.md) diff --git a/docset/winserver2016-ps/MultiPoint/New-WmsUser.md b/docset/winserver2016-ps/MultiPoint/New-WmsUser.md index a5098c8c91..d9e1c2e30f 100644 --- a/docset/winserver2016-ps/MultiPoint/New-WmsUser.md +++ b/docset/winserver2016-ps/MultiPoint/New-WmsUser.md @@ -56,7 +56,7 @@ Use the **Get-Credential** cmdlet to get a **PSCredential** object. ```yaml Type: PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -71,7 +71,7 @@ Specifies a description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 3 @@ -86,7 +86,7 @@ Specifies the full name of the user. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 2 @@ -122,7 +122,7 @@ The acceptable values for this parameter are: ```yaml Type: UserTypePS Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Administrator, Standard, DashboardUser Required: True @@ -162,7 +162,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) diff --git a/docset/winserver2016-ps/MultiPoint/Remove-WmsUser.md b/docset/winserver2016-ps/MultiPoint/Remove-WmsUser.md index b135a82f66..b0eabbae8d 100644 --- a/docset/winserver2016-ps/MultiPoint/Remove-WmsUser.md +++ b/docset/winserver2016-ps/MultiPoint/Remove-WmsUser.md @@ -54,7 +54,7 @@ Specifies the name of the user account to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -110,9 +110,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-WmsUser]() +[Get-WmsUser](Get-WmsUser.md) -[New-WmsUser]() - -[Set-WmsUser](./Set-WmsUser.md) +[New-WmsUser](New-WmsUser.md) +[Set-WmsUser](Set-WmsUser.md) diff --git a/docset/winserver2016-ps/MultiPoint/Set-WmsUser.md b/docset/winserver2016-ps/MultiPoint/Set-WmsUser.md index 2b41a7cb5a..a381b329c2 100644 --- a/docset/winserver2016-ps/MultiPoint/Set-WmsUser.md +++ b/docset/winserver2016-ps/MultiPoint/Set-WmsUser.md @@ -47,7 +47,7 @@ Specifies a **PSCredential** object. Use the **Get-Credential** cmdlet to get a ```yaml Type: PSCredential Parameter Sets: UseCreds -Aliases: +Aliases: Required: True Position: 0 @@ -62,7 +62,7 @@ Specifies a description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Specifies the full name of the user. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -92,7 +92,7 @@ Specifies a name for the user. ```yaml Type: String Parameter Sets: UseUserName -Aliases: +Aliases: Required: True Position: 0 @@ -126,7 +126,7 @@ Specifies the user type. The acceptable values for this parameter are: ```yaml Type: UserTypePS Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Administrator, Standard, DashboardUser Required: False @@ -151,9 +151,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-WmsUser]() +[Get-WmsUser](Get-WmsUser.md) -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) diff --git a/docset/winserver2016-ps/MultiPoint/Stop-WmsSystem.md b/docset/winserver2016-ps/MultiPoint/Stop-WmsSystem.md index 5997aa4d9a..1d47eb704e 100644 --- a/docset/winserver2016-ps/MultiPoint/Stop-WmsSystem.md +++ b/docset/winserver2016-ps/MultiPoint/Stop-WmsSystem.md @@ -94,15 +94,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add-WmsSystem]() +[Add-WmsSystem](Add-WmsSystem.md) -[Get-WmsSystem]() +[Get-WmsSystem](Get-WmsSystem.md) -[Remove-WmsSystem]() +[Remove-WmsSystem](Remove-WmsSystem.md) -[Restart-WmsSystem]() +[Restart-WmsSystem](Restart-WmsSystem.md) -[Search-WmsSystem]() - -[Set-WmsSystem]() +[Search-WmsSystem](Search-WmsSystem.md) +[Set-WmsSystem](Set-WmsSystem.md) diff --git a/docset/winserver2016-ps/TLS/Get-TlsEccCurve.md b/docset/winserver2016-ps/TLS/Get-TlsEccCurve.md index 7803ebb93f..1bbc558038 100644 --- a/docset/winserver2016-ps/TLS/Get-TlsEccCurve.md +++ b/docset/winserver2016-ps/TLS/Get-TlsEccCurve.md @@ -15,50 +15,52 @@ Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for T ## SYNTAX ``` -Get-TlsEccCurve [[-Name] ] +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 +72,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 (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 ### System.String - ## OUTPUTS ### System.Object @@ -84,6 +89,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Enable-TlsEccCurve]() -[Disable-TlsEccCurve]() +[Enable-TlsEccCurve](Enable-TlsEccCurve.md) + +[Disable-TlsEccCurve](Disable-TlsEccCurve.md) diff --git a/docset/winserver2019-ps/ActiveDirectory/New-ADAuthenticationPolicy.md b/docset/winserver2019-ps/ActiveDirectory/New-ADAuthenticationPolicy.md index 1112b1dc1a..f5603ca9eb 100644 --- a/docset/winserver2019-ps/ActiveDirectory/New-ADAuthenticationPolicy.md +++ b/docset/winserver2019-ps/ActiveDirectory/New-ADAuthenticationPolicy.md @@ -17,66 +17,77 @@ Creates an Active Directory Domain Services authentication policy object. ``` New-ADAuthenticationPolicy [-WhatIf] [-Confirm] [-AuthType ] - [-ComputerAllowedToAuthenticateTo ] [-ComputerTGTLifetimeMins ] [-Credential ] - [-Description ] [-Enforce] [-Instance ] [-Name] - [-OtherAttributes ] [-PassThru] [-ProtectedFromAccidentalDeletion ] - [-RollingNTLMSecret ] [-Server ] [-ServiceAllowedToAuthenticateFrom ] + [-ComputerAllowedToAuthenticateTo ] [-ComputerTGTLifetimeMins ] + [-Credential ] [-Description ] [-Enforce] + [-Instance ] [-Name] [-OtherAttributes ] [-PassThru] + [-ProtectedFromAccidentalDeletion ] [-RollingNTLMSecret ] + [-Server ] [-ServiceAllowedToAuthenticateFrom ] [-ServiceAllowedToAuthenticateTo ] [-ServiceAllowedNTLMNetworkAuthentication] [-ServiceTGTLifetimeMins ] [-UserAllowedToAuthenticateFrom ] - [-UserAllowedToAuthenticateTo ] [-UserAllowedNTLMNetworkAuthentication] [-UserTGTLifetimeMins ] - [] + [-UserAllowedToAuthenticateTo ] [-UserAllowedNTLMNetworkAuthentication] + [-UserTGTLifetimeMins ] [] ``` ## DESCRIPTION -The **New-ADAuthenticationPolicy** creates an authentication policy object in Active Directory® Domain Services. -Commonly used attributes of the object can be specified by the parameters of this cmdlet. -To set attributes for the object that are not represented by the parameters of this cmdlet, specify the *OtherAttributes* parameter. +The **New-ADAuthenticationPolicy** creates an authentication policy object in Active Directory® +Domain Services. -You can use the pipeline operator and the Import-Csv cmdlet to pass a list for bulk creation of objects in the directory. -You can also specify a template object by using the *Instance* parameter to create objects from a template. +Commonly used attributes of the object can be specified by the parameters of this cmdlet. To set +attributes for the object that are not represented by the parameters of this cmdlet, specify the +*OtherAttributes* parameter. + +You can use the pipeline operator and the Import-Csv cmdlet to pass a list for bulk creation of +objects in the directory. You can also specify a template object by using the *Instance* parameter +to create objects from a template. ## EXAMPLES ### Example 1: Create an authentication policy with a user TGT lifetime + ``` PS C:\> New-ADAuthenticationPolicy -Name "AuthenticationPolicy01" -UserTGTLifetimeMins 60 ``` -This command creates an authentication policy object named AuthenticationPolicy01 and sets the TGT lifetime for a user account to 60 minutes. -Because the *Enforce* parameter is not specified, the authentication policy created is in audit mode. +This command creates an authentication policy object named AuthenticationPolicy01 and sets the TGT +lifetime for a user account to 60 minutes. Because the *Enforce* parameter is not specified, the +authentication policy created is in audit mode. ### Example 2: Create an enforced authentication policy + ``` PS C:\> New-ADAuthenticationPolicy -Name "AuthenticationPolicy02" -Enforce ``` -This command creates an authentication policy named AuthenticationPolicy02 and enforces it by specifying the *Enforce* parameter. +This command creates an authentication policy named AuthenticationPolicy02 and enforces it by +specifying the *Enforce* parameter. ### Example 3: Create an authentication policy + ``` PS C:\> New-ADAuthenticationPolicy -Name "TestAuthenticationPolicy" -UserAllowedToAuthenticateFrom (Get-Acl .\someFile.txt).sddl ``` -This command creates an authentication policy named TestAuthenticationPolicy. -The *UserAllowedToAuthenticationFrom* parameter specifies the devices from which users are allowed to authenticate by an SDDL string in the file named someFile.txt. +This command creates an authentication policy named TestAuthenticationPolicy. The +*UserAllowedToAuthenticationFrom* parameter specifies the devices from which users are allowed to +authenticate by an SDDL string in the file named someFile.txt. ## PARAMETERS ### -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 -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 Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Negotiate, Basic Required: False @@ -87,12 +98,14 @@ Accept wildcard characters: False ``` ### -ComputerAllowedToAuthenticateTo -Specifies the security descriptor definition language (SDDL) string of the security descriptor used to determine if the computer can authenticate to this account. + +Specifies the security descriptor definition language (SDDL) string of the security descriptor used +to determine if the computer can authenticate to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -102,12 +115,14 @@ Accept wildcard characters: False ``` ### -ComputerTGTLifetimeMins -Specifies the lifetime in minutes for non-renewable ticket granting tickets (TGTs) for computer accounts. + +Specifies the lifetime in minutes for non-renewable ticket granting tickets (TGTs) for computer +accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -117,6 +132,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -132,19 +148,22 @@ 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 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. -If you specify credentials that do not have permission to perform the task, the cmdlet returns an error. +If you specify credentials that do not have permission to perform the task, the cmdlet returns an +error. ```yaml Type: PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -154,14 +173,15 @@ Accept wildcard characters: False ``` ### -Description -Specifies a description for the object. -This parameter sets the value of the description property for the object. -The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) for this property is description. + +Specifies a description for the object. This parameter sets the value of the description property +for the object. The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) +for this property is description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -171,12 +191,13 @@ Accept wildcard characters: False ``` ### -Enforce + Indicates that the authentication policy is enforced. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -186,13 +207,15 @@ Accept wildcard characters: False ``` ### -Instance -Specifies an instance of an **ADAuthenticationPolicy** object to use as a template for a new **ADAuthenticationPolicy**object. -To get the **ADAuthenticationPolicy** object to use as a template, use the **Get-ADAuthenticationPolicy** cmdlet. + +Specifies an instance of an **ADAuthenticationPolicy** object to use as a template for a new +**ADAuthenticationPolicy**object. To get the **ADAuthenticationPolicy** object to use as a template, +use the **Get-ADAuthenticationPolicy** cmdlet. ```yaml Type: ADAuthenticationPolicy Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -202,14 +225,14 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of the object. -This parameter sets the **Name** property of the Active Directory Domain Services object. -The LDAP display name (**ldapDisplayName**) of this property is name. + +Specifies the name of the object. This parameter sets the **Name** property of the Active Directory +Domain Services object. The LDAP display name (**ldapDisplayName**) of this property is name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -219,19 +242,24 @@ Accept wildcard characters: False ``` ### -OtherAttributes -Specifies a list of object attribute values for attributes that are not represented by other parameters. -You can set one or more attributes at the same time with this parameter, and if an attribute takes more than one value you can assign multiple values. -To identify an attribute, specify the LDAPDisplayName (**ldapDisplayName**) defined for it in the Active Directory Domain Services schema. -Specify the attribute and the value of the attribute in the following format: @{'AttributeLDAPDisplayName'=value}. +Specifies a list of object attribute values for attributes that are not represented by other +parameters. You can set one or more attributes at the same time with this parameter, and if an +attribute takes more than one value you can assign multiple values. To identify an attribute, +specify the LDAPDisplayName (**ldapDisplayName**) defined for it in the Active Directory Domain +Services schema. -To specify multiple values for an attribute, specify a comma separated list the values for the display name. -You can specify values for more than one attribute by using semicolons to separate attribute value pairs. +Specify the attribute and the value of the attribute in the following format: +@{'AttributeLDAPDisplayName'=value}. + +To specify multiple values for an attribute, specify a comma separated list the values for the +display name. You can specify values for more than one attribute by using semicolons to separate +attribute value pairs. ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -241,13 +269,14 @@ 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 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -257,9 +286,10 @@ Accept wildcard characters: False ``` ### -ProtectedFromAccidentalDeletion -Indicates whether to prevent the object from being deleted. -When this property is set to true, you cannot delete the corresponding object without changing the value of the property. -The acceptable values for this parameter are: + +Indicates whether to prevent the object from being deleted. When this property is set to true, you +cannot delete the corresponding object without changing the value of the property. The acceptable +values for this parameter are: - $False or 0 - $True or 1 @@ -267,7 +297,7 @@ The acceptable values for this parameter are: ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -277,12 +307,14 @@ Accept wildcard characters: False ``` ### -RollingNTLMSecret -Beginning with Windows 10, version 1703, this feature is deprecated and should not be configured in Active Directory. + +Beginning with Windows 10, version 1703, this feature is deprecated and should not be configured in +Active Directory. ```yaml Type: ADStrongNTLMPolicyType Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Disabled, Optional, Required Required: False @@ -293,32 +325,37 @@ 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 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: 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 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -328,12 +365,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedNTLMNetworkAuthentication -Specifies that the policy allows NTLM network authentication if the service account has an access control expression specified by the *ServiceAllowedToAuthenticateFrom* parameter. + +Specifies that the policy allows NTLM network authentication if the service account has an access +control expression specified by the *ServiceAllowedToAuthenticateFrom* parameter. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -343,12 +382,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedToAuthenticateFrom -Specifies an access control expression used to determine from which devices the service can authenticate. + +Specifies an access control expression used to determine from which devices the service can +authenticate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -358,12 +399,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedToAuthenticateTo -Specifies the SDDL string of the security descriptor used to determine if the service can authenticate to this account. + +Specifies the SDDL string of the security descriptor used to determine if the service can +authenticate to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -373,12 +416,13 @@ Accept wildcard characters: False ``` ### -ServiceTGTLifetimeMins + Specifies the lifetime in minutes for non-renewable TGTs for service accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -388,12 +432,14 @@ Accept wildcard characters: False ``` ### -UserAllowedNTLMNetworkAuthentication -Indicates that the policy allows NTLM network authentication if the user account has an access control expression specified by the *UserAllowedToAuthenticateFrom* parameter. + +Indicates that the policy allows NTLM network authentication if the user account has an access +control expression specified by the *UserAllowedToAuthenticateFrom* parameter. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -403,12 +449,14 @@ Accept wildcard characters: False ``` ### -UserAllowedToAuthenticateFrom -Specifies an access control expression used to determine from which devices the users can authenticate. + +Specifies an access control expression used to determine from which devices the users can +authenticate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -418,12 +466,14 @@ Accept wildcard characters: False ``` ### -UserAllowedToAuthenticateTo -Specifies the SDDL string of the security descriptor used to determine if the users can authenticate to this account. + +Specifies the SDDL string of the security descriptor used to determine if the users can authenticate +to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -433,12 +483,13 @@ Accept wildcard characters: False ``` ### -UserTGTLifetimeMins + Specifies the lifetime in minutes for non-renewable TGTs for user accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -448,6 +499,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -464,11 +516,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 -### System.String: System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], System.Management.Automation.SwitchParameter: System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] +### ADStrongNTLMPolicyType + +### System.Boolean + +### System.Int32 + +### System.Management.Automation.SwitchParameter + +### System.String ## OUTPUTS @@ -485,4 +549,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-ADAuthenticationPolicy](./Set-ADAuthenticationPolicy.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - diff --git a/docset/winserver2019-ps/DFSR/Import-DfsrClone.md b/docset/winserver2019-ps/DFSR/Import-DfsrClone.md index 5044615e2f..5415334f1e 100644 --- a/docset/winserver2019-ps/DFSR/Import-DfsrClone.md +++ b/docset/winserver2019-ps/DFSR/Import-DfsrClone.md @@ -40,7 +40,7 @@ The term downstream refers to the non-authoritative server that is a clone of th ``` PS C:\> Import-DfsrClone -Volume "C:" -Path C:\DfsRClone This operation will import the database and clone DFSR. It can take a long time to complete. Use Get-DfsrCloneState or -DFSR event 2404 to determine when the import has succeeded. Volume: +DFSR event 2404 to determine when the import has succeeded. Volume: c:\ Path: C:\Dfsrclone Are you sure you want to continue to import the database clone? [Y] Yes [N] No [S] Suspend [?] Help (default is "Y"):Y ``` @@ -139,7 +139,7 @@ Use this parameter for scripted cloning. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -172,7 +172,7 @@ After you export the DFS Replication database, but before you perform the import ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -206,7 +206,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### [none] +### None ## NOTES diff --git a/docset/winserver2019-ps/DFSR/Remove-DfsReplicationGroup.md b/docset/winserver2019-ps/DFSR/Remove-DfsReplicationGroup.md index 71c6a8ef93..21da2d3efc 100644 --- a/docset/winserver2019-ps/DFSR/Remove-DfsReplicationGroup.md +++ b/docset/winserver2019-ps/DFSR/Remove-DfsReplicationGroup.md @@ -78,7 +78,7 @@ If you do not specify this parameter, the cmdlet uses the current domain. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 100 @@ -94,7 +94,7 @@ Use this parameter for scripted removal of replication groups. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -127,7 +127,7 @@ Indicates that the cmdlet removes any replicated folders belonging to the replic ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -161,7 +161,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### [none] +### None ## NOTES diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md index 61f58ecc23..5f96b2d37c 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md @@ -1,31 +1,41 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. Download Help Link: https://aka.ms/winsvr-2019-pshelp +Help Version: 1.0.0.0 +Locale: en-US Module Name: Microsoft.Windows.ServerManager.Migration +Module Guid: 00000000-0000-0000-0000-000000000000 ms.date: 01/03/2017 +schema: 2.0.0 title: Microsoft.Windows.ServerManager.Migration --- - - # Microsoft.Windows.ServerManager.Migration Module + ## Description + This reference provides cmdlet descriptions and syntax for all Server Migration cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. Administrators can use the Windows Server Migration Tools cmdlets for Windows PowerShell to migrate server roles, features, operating system settings, and other data and shares to computers that are running the latest version of Windows Server. ## Microsoft.Windows.ServerManager.Migration Cmdlets + ### [Export-SmigServerSetting](./Export-SmigServerSetting.md) + Exports selected Windows features and operating system settings from the local computer, and stores them in a migration store. ### [Get-SmigServerFeature](./Get-SmigServerFeature.md) + Gets the set of all Windows features that can be migrated from the local server or from a migration store. ### [Import-SmigServerSetting](./Import-SmigServerSetting.md) + Imports selected Windows features, and operating system settings from a migration store, and applies them to the local computer. ### [Receive-SmigServerData](./Receive-SmigServerData.md) + Allows a destination server to receive shares, folders, files, and associated permissions and share properties that are migrated from a source server. ### [Send-SmigServerData](./Send-SmigServerData.md) + Migrates folders, files, and associated permissions and share properties from a source server to a destination server through port 7000. diff --git a/docset/winserver2019-ps/MultiPoint/Get-WmsUser.md b/docset/winserver2019-ps/MultiPoint/Get-WmsUser.md index 1151d11b6e..b64ea11d80 100644 --- a/docset/winserver2019-ps/MultiPoint/Get-WmsUser.md +++ b/docset/winserver2019-ps/MultiPoint/Get-WmsUser.md @@ -34,14 +34,14 @@ The **Get-WmsUser** cmdlet gets local user account information for a specified u ``` PS C:\> Get-WmsUser -All Name : Administrator -Password : -FullName : +Password : +FullName : Description : Built-in account for administering the computer/domain UserType : Administrator ComputerName : Test1 Name : Guest -Password : -FullName : +Password : +FullName : Description : Built-in account for guest access to the computer/domain UserType : Standard ComputerName : Test1 @@ -57,7 +57,7 @@ Indicates that this operation applies to all sessions on the target host. ```yaml Type: SwitchParameter Parameter Sets: GetAllUsers -Aliases: +Aliases: Required: True Position: Named @@ -72,7 +72,7 @@ Specifies the name of the user to get. ```yaml Type: String Parameter Sets: GetUser -Aliases: +Aliases: Required: True Position: Named @@ -106,16 +106,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### +### WmsUser + This cmdlet returns a **WmsUser** collection as **PSObject** collection. ## NOTES ## RELATED LINKS -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) -[Set-WmsUser](./Set-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) +[Set-WmsUser](Set-WmsUser.md) diff --git a/docset/winserver2019-ps/MultiPoint/New-WmsUser.md b/docset/winserver2019-ps/MultiPoint/New-WmsUser.md index ff1cb059d7..c58c1d84ed 100644 --- a/docset/winserver2019-ps/MultiPoint/New-WmsUser.md +++ b/docset/winserver2019-ps/MultiPoint/New-WmsUser.md @@ -56,7 +56,7 @@ Use the **Get-Credential** cmdlet to get a **PSCredential** object. ```yaml Type: PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -71,7 +71,7 @@ Specifies a description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 3 @@ -86,7 +86,7 @@ Specifies the full name of the user. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 2 @@ -122,7 +122,7 @@ The acceptable values for this parameter are: ```yaml Type: UserTypePS Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Administrator, Standard, DashboardUser Required: True @@ -162,7 +162,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) diff --git a/docset/winserver2019-ps/MultiPoint/Remove-WmsUser.md b/docset/winserver2019-ps/MultiPoint/Remove-WmsUser.md index b08ce9cb3d..8942fbd82e 100644 --- a/docset/winserver2019-ps/MultiPoint/Remove-WmsUser.md +++ b/docset/winserver2019-ps/MultiPoint/Remove-WmsUser.md @@ -54,7 +54,7 @@ Specifies the name of the user account to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -110,9 +110,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-WmsUser]() +[Get-WmsUser](Get-WmsUser.md) -[New-WmsUser]() - -[Set-WmsUser](./Set-WmsUser.md) +[New-WmsUser](New-WmsUser.md) +[Set-WmsUser](Set-WmsUser.md) diff --git a/docset/winserver2019-ps/MultiPoint/Set-WmsUser.md b/docset/winserver2019-ps/MultiPoint/Set-WmsUser.md index 5331ae73da..b2e1c294fd 100644 --- a/docset/winserver2019-ps/MultiPoint/Set-WmsUser.md +++ b/docset/winserver2019-ps/MultiPoint/Set-WmsUser.md @@ -47,7 +47,7 @@ Specifies a **PSCredential** object. Use the **Get-Credential** cmdlet to get a ```yaml Type: PSCredential Parameter Sets: UseCreds -Aliases: +Aliases: Required: True Position: 0 @@ -62,7 +62,7 @@ Specifies a description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Specifies the full name of the user. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -92,7 +92,7 @@ Specifies a name for the user. ```yaml Type: String Parameter Sets: UseUserName -Aliases: +Aliases: Required: True Position: 0 @@ -126,7 +126,7 @@ Specifies the user type. The acceptable values for this parameter are: ```yaml Type: UserTypePS Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Administrator, Standard, DashboardUser Required: False @@ -151,9 +151,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-WmsUser]() +[Get-WmsUser](Get-WmsUser.md) -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) diff --git a/docset/winserver2019-ps/MultiPoint/Stop-WmsSystem.md b/docset/winserver2019-ps/MultiPoint/Stop-WmsSystem.md index 67150845da..b1ad577b05 100644 --- a/docset/winserver2019-ps/MultiPoint/Stop-WmsSystem.md +++ b/docset/winserver2019-ps/MultiPoint/Stop-WmsSystem.md @@ -94,15 +94,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add-WmsSystem]() +[Add-WmsSystem](Add-WmsSystem.md) -[Get-WmsSystem]() +[Get-WmsSystem](Get-WmsSystem.md) -[Remove-WmsSystem]() +[Remove-WmsSystem](Remove-WmsSystem.md) -[Restart-WmsSystem]() +[Restart-WmsSystem](Restart-WmsSystem.md) -[Search-WmsSystem]() - -[Set-WmsSystem]() +[Search-WmsSystem](Search-WmsSystem.md) +[Set-WmsSystem](Set-WmsSystem.md) diff --git a/docset/winserver2019-ps/TLS/Get-TlsEccCurve.md b/docset/winserver2019-ps/TLS/Get-TlsEccCurve.md index 0be359a405..83f105364f 100644 --- a/docset/winserver2019-ps/TLS/Get-TlsEccCurve.md +++ b/docset/winserver2019-ps/TLS/Get-TlsEccCurve.md @@ -15,50 +15,52 @@ Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for T ## SYNTAX ``` -Get-TlsEccCurve [[-Name] ] +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 +72,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 (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 ### System.String - ## OUTPUTS ### System.Object @@ -84,6 +89,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Enable-TlsEccCurve]() -[Disable-TlsEccCurve]() +[Enable-TlsEccCurve](Enable-TlsEccCurve.md) + +[Disable-TlsEccCurve](Disable-TlsEccCurve.md) diff --git a/docset/winserver2022-ps/ActiveDirectory/New-ADAuthenticationPolicy.md b/docset/winserver2022-ps/ActiveDirectory/New-ADAuthenticationPolicy.md index f19170e3e6..bc3eae56b8 100644 --- a/docset/winserver2022-ps/ActiveDirectory/New-ADAuthenticationPolicy.md +++ b/docset/winserver2022-ps/ActiveDirectory/New-ADAuthenticationPolicy.md @@ -17,66 +17,77 @@ Creates an Active Directory Domain Services authentication policy object. ``` New-ADAuthenticationPolicy [-WhatIf] [-Confirm] [-AuthType ] - [-ComputerAllowedToAuthenticateTo ] [-ComputerTGTLifetimeMins ] [-Credential ] - [-Description ] [-Enforce] [-Instance ] [-Name] - [-OtherAttributes ] [-PassThru] [-ProtectedFromAccidentalDeletion ] - [-RollingNTLMSecret ] [-Server ] [-ServiceAllowedToAuthenticateFrom ] + [-ComputerAllowedToAuthenticateTo ] [-ComputerTGTLifetimeMins ] + [-Credential ] [-Description ] [-Enforce] + [-Instance ] [-Name] [-OtherAttributes ] [-PassThru] + [-ProtectedFromAccidentalDeletion ] [-RollingNTLMSecret ] + [-Server ] [-ServiceAllowedToAuthenticateFrom ] [-ServiceAllowedToAuthenticateTo ] [-ServiceAllowedNTLMNetworkAuthentication] [-ServiceTGTLifetimeMins ] [-UserAllowedToAuthenticateFrom ] - [-UserAllowedToAuthenticateTo ] [-UserAllowedNTLMNetworkAuthentication] [-UserTGTLifetimeMins ] - [] + [-UserAllowedToAuthenticateTo ] [-UserAllowedNTLMNetworkAuthentication] + [-UserTGTLifetimeMins ] [] ``` ## DESCRIPTION -The **New-ADAuthenticationPolicy** creates an authentication policy object in Active Directory® Domain Services. -Commonly used attributes of the object can be specified by the parameters of this cmdlet. -To set attributes for the object that are not represented by the parameters of this cmdlet, specify the *OtherAttributes* parameter. +The **New-ADAuthenticationPolicy** creates an authentication policy object in Active Directory® +Domain Services. -You can use the pipeline operator and the Import-Csv cmdlet to pass a list for bulk creation of objects in the directory. -You can also specify a template object by using the *Instance* parameter to create objects from a template. +Commonly used attributes of the object can be specified by the parameters of this cmdlet. To set +attributes for the object that are not represented by the parameters of this cmdlet, specify the +*OtherAttributes* parameter. + +You can use the pipeline operator and the Import-Csv cmdlet to pass a list for bulk creation of +objects in the directory. You can also specify a template object by using the *Instance* parameter +to create objects from a template. ## EXAMPLES ### Example 1: Create an authentication policy with a user TGT lifetime + ``` PS C:\> New-ADAuthenticationPolicy -Name "AuthenticationPolicy01" -UserTGTLifetimeMins 60 ``` -This command creates an authentication policy object named AuthenticationPolicy01 and sets the TGT lifetime for a user account to 60 minutes. -Because the *Enforce* parameter is not specified, the authentication policy created is in audit mode. +This command creates an authentication policy object named AuthenticationPolicy01 and sets the TGT +lifetime for a user account to 60 minutes. Because the *Enforce* parameter is not specified, the +authentication policy created is in audit mode. ### Example 2: Create an enforced authentication policy + ``` PS C:\> New-ADAuthenticationPolicy -Name "AuthenticationPolicy02" -Enforce ``` -This command creates an authentication policy named AuthenticationPolicy02 and enforces it by specifying the *Enforce* parameter. +This command creates an authentication policy named AuthenticationPolicy02 and enforces it by +specifying the *Enforce* parameter. ### Example 3: Create an authentication policy + ``` PS C:\> New-ADAuthenticationPolicy -Name "TestAuthenticationPolicy" -UserAllowedToAuthenticateFrom (Get-Acl .\someFile.txt).sddl ``` -This command creates an authentication policy named TestAuthenticationPolicy. -The *UserAllowedToAuthenticationFrom* parameter specifies the devices from which users are allowed to authenticate by an SDDL string in the file named someFile.txt. +This command creates an authentication policy named TestAuthenticationPolicy. The +*UserAllowedToAuthenticationFrom* parameter specifies the devices from which users are allowed to +authenticate by an SDDL string in the file named someFile.txt. ## PARAMETERS ### -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 -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 Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Negotiate, Basic Required: False @@ -87,12 +98,14 @@ Accept wildcard characters: False ``` ### -ComputerAllowedToAuthenticateTo -Specifies the security descriptor definition language (SDDL) string of the security descriptor used to determine if the computer can authenticate to this account. + +Specifies the security descriptor definition language (SDDL) string of the security descriptor used +to determine if the computer can authenticate to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -102,12 +115,14 @@ Accept wildcard characters: False ``` ### -ComputerTGTLifetimeMins -Specifies the lifetime in minutes for non-renewable ticket granting tickets (TGTs) for computer accounts. + +Specifies the lifetime in minutes for non-renewable ticket granting tickets (TGTs) for computer +accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -117,6 +132,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -132,19 +148,22 @@ 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 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. -If you specify credentials that do not have permission to perform the task, the cmdlet returns an error. +If you specify credentials that do not have permission to perform the task, the cmdlet returns an +error. ```yaml Type: PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -154,14 +173,15 @@ Accept wildcard characters: False ``` ### -Description -Specifies a description for the object. -This parameter sets the value of the description property for the object. -The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) for this property is description. + +Specifies a description for the object. This parameter sets the value of the description property +for the object. The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) +for this property is description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -171,12 +191,13 @@ Accept wildcard characters: False ``` ### -Enforce + Indicates that the authentication policy is enforced. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -186,13 +207,15 @@ Accept wildcard characters: False ``` ### -Instance -Specifies an instance of an **ADAuthenticationPolicy** object to use as a template for a new **ADAuthenticationPolicy**object. -To get the **ADAuthenticationPolicy** object to use as a template, use the **Get-ADAuthenticationPolicy** cmdlet. + +Specifies an instance of an **ADAuthenticationPolicy** object to use as a template for a new +**ADAuthenticationPolicy**object. To get the **ADAuthenticationPolicy** object to use as a template, +use the **Get-ADAuthenticationPolicy** cmdlet. ```yaml Type: ADAuthenticationPolicy Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -202,14 +225,14 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of the object. -This parameter sets the **Name** property of the Active Directory Domain Services object. -The LDAP display name (**ldapDisplayName**) of this property is name. + +Specifies the name of the object. This parameter sets the **Name** property of the Active Directory +Domain Services object. The LDAP display name (**ldapDisplayName**) of this property is name. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -219,19 +242,24 @@ Accept wildcard characters: False ``` ### -OtherAttributes -Specifies a list of object attribute values for attributes that are not represented by other parameters. -You can set one or more attributes at the same time with this parameter, and if an attribute takes more than one value you can assign multiple values. -To identify an attribute, specify the LDAPDisplayName (**ldapDisplayName**) defined for it in the Active Directory Domain Services schema. -Specify the attribute and the value of the attribute in the following format: @{'AttributeLDAPDisplayName'=value}. +Specifies a list of object attribute values for attributes that are not represented by other +parameters. You can set one or more attributes at the same time with this parameter, and if an +attribute takes more than one value you can assign multiple values. To identify an attribute, +specify the LDAPDisplayName (**ldapDisplayName**) defined for it in the Active Directory Domain +Services schema. -To specify multiple values for an attribute, specify a comma separated list the values for the display name. -You can specify values for more than one attribute by using semicolons to separate attribute value pairs. +Specify the attribute and the value of the attribute in the following format: +@{'AttributeLDAPDisplayName'=value}. + +To specify multiple values for an attribute, specify a comma separated list the values for the +display name. You can specify values for more than one attribute by using semicolons to separate +attribute value pairs. ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -241,13 +269,14 @@ 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 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -257,9 +286,10 @@ Accept wildcard characters: False ``` ### -ProtectedFromAccidentalDeletion -Indicates whether to prevent the object from being deleted. -When this property is set to true, you cannot delete the corresponding object without changing the value of the property. -The acceptable values for this parameter are: + +Indicates whether to prevent the object from being deleted. When this property is set to true, you +cannot delete the corresponding object without changing the value of the property. The acceptable +values for this parameter are: - $False or 0 - $True or 1 @@ -267,7 +297,7 @@ The acceptable values for this parameter are: ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -277,12 +307,14 @@ Accept wildcard characters: False ``` ### -RollingNTLMSecret -Beginning with Windows 10, version 1703, this feature is deprecated and should not be configured in Active Directory. + +Beginning with Windows 10, version 1703, this feature is deprecated and should not be configured in +Active Directory. ```yaml Type: ADStrongNTLMPolicyType Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Disabled, Optional, Required Required: False @@ -293,32 +325,37 @@ 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 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: 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 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -328,12 +365,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedNTLMNetworkAuthentication -Specifies that the policy allows NTLM network authentication if the service account has an access control expression specified by the *ServiceAllowedToAuthenticateFrom* parameter. + +Specifies that the policy allows NTLM network authentication if the service account has an access +control expression specified by the *ServiceAllowedToAuthenticateFrom* parameter. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -343,12 +382,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedToAuthenticateFrom -Specifies an access control expression used to determine from which devices the service can authenticate. + +Specifies an access control expression used to determine from which devices the service can +authenticate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -358,12 +399,14 @@ Accept wildcard characters: False ``` ### -ServiceAllowedToAuthenticateTo -Specifies the SDDL string of the security descriptor used to determine if the service can authenticate to this account. + +Specifies the SDDL string of the security descriptor used to determine if the service can +authenticate to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -373,12 +416,13 @@ Accept wildcard characters: False ``` ### -ServiceTGTLifetimeMins + Specifies the lifetime in minutes for non-renewable TGTs for service accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -388,12 +432,14 @@ Accept wildcard characters: False ``` ### -UserAllowedNTLMNetworkAuthentication -Indicates that the policy allows NTLM network authentication if the user account has an access control expression specified by the *UserAllowedToAuthenticateFrom* parameter. + +Indicates that the policy allows NTLM network authentication if the user account has an access +control expression specified by the *UserAllowedToAuthenticateFrom* parameter. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -403,12 +449,14 @@ Accept wildcard characters: False ``` ### -UserAllowedToAuthenticateFrom -Specifies an access control expression used to determine from which devices the users can authenticate. + +Specifies an access control expression used to determine from which devices the users can +authenticate. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -418,12 +466,14 @@ Accept wildcard characters: False ``` ### -UserAllowedToAuthenticateTo -Specifies the SDDL string of the security descriptor used to determine if the users can authenticate to this account. + +Specifies the SDDL string of the security descriptor used to determine if the users can authenticate +to this account. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -433,12 +483,13 @@ Accept wildcard characters: False ``` ### -UserTGTLifetimeMins + Specifies the lifetime in minutes for non-renewable TGTs for user accounts. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -448,6 +499,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -464,11 +516,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 -### System.String: System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], System.Management.Automation.SwitchParameter: System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] +### ADStrongNTLMPolicyType + +### System.Boolean + +### System.Int32 + +### System.Management.Automation.SwitchParameter + +### System.String ## OUTPUTS @@ -485,4 +549,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-ADAuthenticationPolicy](./Set-ADAuthenticationPolicy.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - diff --git a/docset/winserver2022-ps/DFSR/Import-DfsrClone.md b/docset/winserver2022-ps/DFSR/Import-DfsrClone.md index 3a89a573de..6b620db696 100644 --- a/docset/winserver2022-ps/DFSR/Import-DfsrClone.md +++ b/docset/winserver2022-ps/DFSR/Import-DfsrClone.md @@ -40,7 +40,7 @@ The term downstream refers to the non-authoritative server that is a clone of th ``` PS C:\> Import-DfsrClone -Volume "C:" -Path C:\DfsRClone This operation will import the database and clone DFSR. It can take a long time to complete. Use Get-DfsrCloneState or -DFSR event 2404 to determine when the import has succeeded. Volume: +DFSR event 2404 to determine when the import has succeeded. Volume: c:\ Path: C:\Dfsrclone Are you sure you want to continue to import the database clone? [Y] Yes [N] No [S] Suspend [?] Help (default is "Y"):Y ``` @@ -139,7 +139,7 @@ Use this parameter for scripted cloning. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -172,7 +172,7 @@ After you export the DFS Replication database, but before you perform the import ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -206,7 +206,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### [none] +### None ## NOTES diff --git a/docset/winserver2022-ps/DFSR/Remove-DfsReplicationGroup.md b/docset/winserver2022-ps/DFSR/Remove-DfsReplicationGroup.md index b7060b4483..d26f081a5d 100644 --- a/docset/winserver2022-ps/DFSR/Remove-DfsReplicationGroup.md +++ b/docset/winserver2022-ps/DFSR/Remove-DfsReplicationGroup.md @@ -78,7 +78,7 @@ If you do not specify this parameter, the cmdlet uses the current domain. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 100 @@ -94,7 +94,7 @@ Use this parameter for scripted removal of replication groups. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -127,7 +127,7 @@ Indicates that the cmdlet removes any replicated folders belonging to the replic ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -161,7 +161,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### [none] +### None ## NOTES diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md index 4b04a682f3..c9c6a815f6 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md @@ -1,31 +1,41 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. Download Help Link: https://aka.ms/winsvr-2022-pshelp +Help Version: 1.0.0.0 +Locale: en-US Module Name: Microsoft.Windows.ServerManager.Migration +Module Guid: 00000000-0000-0000-0000-000000000000 ms.date: 01/03/2017 +schema: 2.0.0 title: Microsoft.Windows.ServerManager.Migration --- - - # Microsoft.Windows.ServerManager.Migration Module + ## Description + This reference provides cmdlet descriptions and syntax for all Server Migration cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. Administrators can use the Windows Server Migration Tools cmdlets for Windows PowerShell to migrate server roles, features, operating system settings, and other data and shares to computers that are running the latest version of Windows Server. ## Microsoft.Windows.ServerManager.Migration Cmdlets + ### [Export-SmigServerSetting](./Export-SmigServerSetting.md) + Exports selected Windows features and operating system settings from the local computer, and stores them in a migration store. ### [Get-SmigServerFeature](./Get-SmigServerFeature.md) + Gets the set of all Windows features that can be migrated from the local server or from a migration store. ### [Import-SmigServerSetting](./Import-SmigServerSetting.md) + Imports selected Windows features, and operating system settings from a migration store, and applies them to the local computer. ### [Receive-SmigServerData](./Receive-SmigServerData.md) + Allows a destination server to receive shares, folders, files, and associated permissions and share properties that are migrated from a source server. ### [Send-SmigServerData](./Send-SmigServerData.md) + Migrates folders, files, and associated permissions and share properties from a source server to a destination server through port 7000. diff --git a/docset/winserver2022-ps/MultiPoint/Get-WmsUser.md b/docset/winserver2022-ps/MultiPoint/Get-WmsUser.md index fb86b3170c..6560e5b631 100644 --- a/docset/winserver2022-ps/MultiPoint/Get-WmsUser.md +++ b/docset/winserver2022-ps/MultiPoint/Get-WmsUser.md @@ -34,14 +34,14 @@ The **Get-WmsUser** cmdlet gets local user account information for a specified u ``` PS C:\> Get-WmsUser -All Name : Administrator -Password : -FullName : +Password : +FullName : Description : Built-in account for administering the computer/domain UserType : Administrator ComputerName : Test1 Name : Guest -Password : -FullName : +Password : +FullName : Description : Built-in account for guest access to the computer/domain UserType : Standard ComputerName : Test1 @@ -57,7 +57,7 @@ Indicates that this operation applies to all sessions on the target host. ```yaml Type: SwitchParameter Parameter Sets: GetAllUsers -Aliases: +Aliases: Required: True Position: Named @@ -72,7 +72,7 @@ Specifies the name of the user to get. ```yaml Type: String Parameter Sets: GetUser -Aliases: +Aliases: Required: True Position: Named @@ -102,19 +102,20 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String +### None ## OUTPUTS -### Microsoft.WindowsServerSolutions.MultipointServer.PowerShell.Commands.Library.WmsUser +### WmsUser + +This cmdlet returns a **WmsUser** collection as **PSObject** collection. ## NOTES ## RELATED LINKS -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) -[Set-WmsUser](./Set-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) +[Set-WmsUser](Set-WmsUser.md) diff --git a/docset/winserver2022-ps/MultiPoint/New-WmsUser.md b/docset/winserver2022-ps/MultiPoint/New-WmsUser.md index 2217f5948b..ee93597343 100644 --- a/docset/winserver2022-ps/MultiPoint/New-WmsUser.md +++ b/docset/winserver2022-ps/MultiPoint/New-WmsUser.md @@ -56,7 +56,7 @@ Use the **Get-Credential** cmdlet to get a **PSCredential** object. ```yaml Type: PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -71,7 +71,7 @@ Specifies a description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 3 @@ -86,7 +86,7 @@ Specifies the full name of the user. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 2 @@ -122,7 +122,7 @@ The acceptable values for this parameter are: ```yaml Type: UserTypePS Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Administrator, Standard, DashboardUser Required: True @@ -152,17 +152,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String +### None ## OUTPUTS -### System.Object +### None ## NOTES ## RELATED LINKS -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) diff --git a/docset/winserver2022-ps/MultiPoint/Remove-WmsUser.md b/docset/winserver2022-ps/MultiPoint/Remove-WmsUser.md index 9078e31e40..82fbc5f494 100644 --- a/docset/winserver2022-ps/MultiPoint/Remove-WmsUser.md +++ b/docset/winserver2022-ps/MultiPoint/Remove-WmsUser.md @@ -54,7 +54,7 @@ Specifies the name of the user account to remove. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -100,19 +100,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String +### None ## OUTPUTS -### System.Object +### None ## NOTES ## RELATED LINKS -[Get-WmsUser]() +[Get-WmsUser](Get-WmsUser.md) -[New-WmsUser]() - -[Set-WmsUser](./Set-WmsUser.md) +[New-WmsUser](New-WmsUser.md) +[Set-WmsUser](Set-WmsUser.md) diff --git a/docset/winserver2022-ps/MultiPoint/Set-WmsUser.md b/docset/winserver2022-ps/MultiPoint/Set-WmsUser.md index 4f8db728c2..ee09c4bca6 100644 --- a/docset/winserver2022-ps/MultiPoint/Set-WmsUser.md +++ b/docset/winserver2022-ps/MultiPoint/Set-WmsUser.md @@ -47,7 +47,7 @@ Specifies a **PSCredential** object. Use the **Get-Credential** cmdlet to get a ```yaml Type: PSCredential Parameter Sets: UseCreds -Aliases: +Aliases: Required: True Position: 0 @@ -62,7 +62,7 @@ Specifies a description. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,7 +77,7 @@ Specifies the full name of the user. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -92,7 +92,7 @@ Specifies a name for the user. ```yaml Type: String Parameter Sets: UseUserName -Aliases: +Aliases: Required: True Position: 0 @@ -126,7 +126,7 @@ Specifies the user type. The acceptable values for this parameter are: ```yaml Type: UserTypePS Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Administrator, Standard, DashboardUser Required: False @@ -151,9 +151,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-WmsUser]() +[Get-WmsUser](Get-WmsUser.md) -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) diff --git a/docset/winserver2022-ps/MultiPoint/Stop-WmsSystem.md b/docset/winserver2022-ps/MultiPoint/Stop-WmsSystem.md index 50d93fd9e3..458d0bbd29 100644 --- a/docset/winserver2022-ps/MultiPoint/Stop-WmsSystem.md +++ b/docset/winserver2022-ps/MultiPoint/Stop-WmsSystem.md @@ -94,15 +94,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add-WmsSystem]() +[Add-WmsSystem](Add-WmsSystem.md) -[Get-WmsSystem]() +[Get-WmsSystem](Get-WmsSystem.md) -[Remove-WmsSystem]() +[Remove-WmsSystem](Remove-WmsSystem.md) -[Restart-WmsSystem]() +[Restart-WmsSystem](Restart-WmsSystem.md) -[Search-WmsSystem]() - -[Set-WmsSystem]() +[Search-WmsSystem](Search-WmsSystem.md) +[Set-WmsSystem](Set-WmsSystem.md) diff --git a/docset/winserver2022-ps/TLS/Get-TlsEccCurve.md b/docset/winserver2022-ps/TLS/Get-TlsEccCurve.md index d634a709fb..2e2c458c72 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-TlsEccCurve.md) +[Enable-TlsEccCurve](Enable-TlsEccCurve.md) -[Disable-TlsEccCurve](./Disable-TlsEccCurve.md) +[Disable-TlsEccCurve](Disable-TlsEccCurve.md) diff --git a/docset/winserver2025-ps/ActiveDirectory/New-ADAuthenticationPolicy.md b/docset/winserver2025-ps/ActiveDirectory/New-ADAuthenticationPolicy.md index 1febf540e6..9925ef916c 100644 --- a/docset/winserver2025-ps/ActiveDirectory/New-ADAuthenticationPolicy.md +++ b/docset/winserver2025-ps/ActiveDirectory/New-ADAuthenticationPolicy.md @@ -17,61 +17,72 @@ Creates an Active Directory Domain Services authentication policy object. ``` New-ADAuthenticationPolicy [-WhatIf] [-Confirm] [-AuthType ] - [-ComputerAllowedToAuthenticateTo ] [-ComputerTGTLifetimeMins ] [-Credential ] - [-Description ] [-Enforce] [-Instance ] [-Name] - [-OtherAttributes ] [-PassThru] [-ProtectedFromAccidentalDeletion ] - [-RollingNTLMSecret ] [-Server ] [-ServiceAllowedToAuthenticateFrom ] + [-ComputerAllowedToAuthenticateTo ] [-ComputerTGTLifetimeMins ] + [-Credential ] [-Description ] [-Enforce] + [-Instance ] [-Name] [-OtherAttributes ] [-PassThru] + [-ProtectedFromAccidentalDeletion ] [-RollingNTLMSecret ] + [-Server ] [-ServiceAllowedToAuthenticateFrom ] [-ServiceAllowedToAuthenticateTo ] [-ServiceAllowedNTLMNetworkAuthentication] [-ServiceTGTLifetimeMins ] [-UserAllowedToAuthenticateFrom ] - [-UserAllowedToAuthenticateTo ] [-UserAllowedNTLMNetworkAuthentication] [-UserTGTLifetimeMins ] - [] + [-UserAllowedToAuthenticateTo ] [-UserAllowedNTLMNetworkAuthentication] + [-UserTGTLifetimeMins ] [] ``` ## DESCRIPTION -The **New-ADAuthenticationPolicy** creates an authentication policy object in Active Directory® Domain Services. -Commonly used attributes of the object can be specified by the parameters of this cmdlet. -To set attributes for the object that are not represented by the parameters of this cmdlet, specify the *OtherAttributes* parameter. +The **New-ADAuthenticationPolicy** creates an authentication policy object in Active Directory® +Domain Services. -You can use the pipeline operator and the Import-Csv cmdlet to pass a list for bulk creation of objects in the directory. -You can also specify a template object by using the *Instance* parameter to create objects from a template. +Commonly used attributes of the object can be specified by the parameters of this cmdlet. To set +attributes for the object that are not represented by the parameters of this cmdlet, specify the +*OtherAttributes* parameter. + +You can use the pipeline operator and the Import-Csv cmdlet to pass a list for bulk creation of +objects in the directory. You can also specify a template object by using the *Instance* parameter +to create objects from a template. ## EXAMPLES ### Example 1: Create an authentication policy with a user TGT lifetime + ``` PS C:\> New-ADAuthenticationPolicy -Name "AuthenticationPolicy01" -UserTGTLifetimeMins 60 ``` -This command creates an authentication policy object named AuthenticationPolicy01 and sets the TGT lifetime for a user account to 60 minutes. -Because the *Enforce* parameter is not specified, the authentication policy created is in audit mode. +This command creates an authentication policy object named AuthenticationPolicy01 and sets the TGT +lifetime for a user account to 60 minutes. Because the *Enforce* parameter is not specified, the +authentication policy created is in audit mode. ### Example 2: Create an enforced authentication policy + ``` PS C:\> New-ADAuthenticationPolicy -Name "AuthenticationPolicy02" -Enforce ``` -This command creates an authentication policy named AuthenticationPolicy02 and enforces it by specifying the *Enforce* parameter. +This command creates an authentication policy named AuthenticationPolicy02 and enforces it by +specifying the *Enforce* parameter. ### Example 3: Create an authentication policy + ``` PS C:\> New-ADAuthenticationPolicy -Name "TestAuthenticationPolicy" -UserAllowedToAuthenticateFrom (Get-Acl .\someFile.txt).sddl ``` -This command creates an authentication policy named TestAuthenticationPolicy. -The *UserAllowedToAuthenticationFrom* parameter specifies the devices from which users are allowed to authenticate by an SDDL string in the file named someFile.txt. +This command creates an authentication policy named TestAuthenticationPolicy. The +*UserAllowedToAuthenticationFrom* parameter specifies the devices from which users are allowed to +authenticate by an SDDL string in the file named someFile.txt. ## PARAMETERS ### -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 -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 @@ -87,7 +98,9 @@ Accept wildcard characters: False ``` ### -ComputerAllowedToAuthenticateTo -Specifies the security descriptor definition language (SDDL) string of the security descriptor used to determine if the computer can authenticate to this account. + +Specifies the security descriptor definition language (SDDL) string of the security descriptor used +to determine if the computer can authenticate to this account. ```yaml Type: String @@ -102,7 +115,9 @@ Accept wildcard characters: False ``` ### -ComputerTGTLifetimeMins -Specifies the lifetime in minutes for non-renewable ticket granting tickets (TGTs) for computer accounts. + +Specifies the lifetime in minutes for non-renewable ticket granting tickets (TGTs) for computer +accounts. ```yaml Type: Int32 @@ -117,6 +132,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -132,14 +148,17 @@ 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 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. -If you specify credentials that do not have permission to perform the task, the cmdlet returns an error. +If you specify credentials that do not have permission to perform the task, the cmdlet returns an +error. ```yaml Type: PSCredential @@ -154,9 +173,10 @@ Accept wildcard characters: False ``` ### -Description -Specifies a description for the object. -This parameter sets the value of the description property for the object. -The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) for this property is description. + +Specifies a description for the object. This parameter sets the value of the description property +for the object. The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) +for this property is description. ```yaml Type: String @@ -171,6 +191,7 @@ Accept wildcard characters: False ``` ### -Enforce + Indicates that the authentication policy is enforced. ```yaml @@ -186,8 +207,10 @@ Accept wildcard characters: False ``` ### -Instance -Specifies an instance of an **ADAuthenticationPolicy** object to use as a template for a new **ADAuthenticationPolicy**object. -To get the **ADAuthenticationPolicy** object to use as a template, use the **Get-ADAuthenticationPolicy** cmdlet. + +Specifies an instance of an **ADAuthenticationPolicy** object to use as a template for a new +**ADAuthenticationPolicy**object. To get the **ADAuthenticationPolicy** object to use as a template, +use the **Get-ADAuthenticationPolicy** cmdlet. ```yaml Type: ADAuthenticationPolicy @@ -202,9 +225,9 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of the object. -This parameter sets the **Name** property of the Active Directory Domain Services object. -The LDAP display name (**ldapDisplayName**) of this property is name. + +Specifies the name of the object. This parameter sets the **Name** property of the Active Directory +Domain Services object. The LDAP display name (**ldapDisplayName**) of this property is name. ```yaml Type: String @@ -219,14 +242,19 @@ Accept wildcard characters: False ``` ### -OtherAttributes -Specifies a list of object attribute values for attributes that are not represented by other parameters. -You can set one or more attributes at the same time with this parameter, and if an attribute takes more than one value you can assign multiple values. -To identify an attribute, specify the LDAPDisplayName (**ldapDisplayName**) defined for it in the Active Directory Domain Services schema. -Specify the attribute and the value of the attribute in the following format: @{'AttributeLDAPDisplayName'=value}. +Specifies a list of object attribute values for attributes that are not represented by other +parameters. You can set one or more attributes at the same time with this parameter, and if an +attribute takes more than one value you can assign multiple values. To identify an attribute, +specify the LDAPDisplayName (**ldapDisplayName**) defined for it in the Active Directory Domain +Services schema. -To specify multiple values for an attribute, specify a comma separated list the values for the display name. -You can specify values for more than one attribute by using semicolons to separate attribute value pairs. +Specify the attribute and the value of the attribute in the following format: +@{'AttributeLDAPDisplayName'=value}. + +To specify multiple values for an attribute, specify a comma separated list the values for the +display name. You can specify values for more than one attribute by using semicolons to separate +attribute value pairs. ```yaml Type: Hashtable @@ -241,8 +269,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 @@ -257,9 +286,10 @@ Accept wildcard characters: False ``` ### -ProtectedFromAccidentalDeletion -Indicates whether to prevent the object from being deleted. -When this property is set to true, you cannot delete the corresponding object without changing the value of the property. -The acceptable values for this parameter are: + +Indicates whether to prevent the object from being deleted. When this property is set to true, you +cannot delete the corresponding object without changing the value of the property. The acceptable +values for this parameter are: - $False or 0 - $True or 1 @@ -277,7 +307,9 @@ Accept wildcard characters: False ``` ### -RollingNTLMSecret -Beginning with Windows 10, version 1703, this feature is deprecated and should not be configured in Active Directory. + +Beginning with Windows 10, version 1703, this feature is deprecated and should not be configured in +Active Directory. ```yaml Type: ADStrongNTLMPolicyType @@ -293,8 +325,11 @@ 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. + +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: @@ -309,10 +344,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 @@ -328,7 +365,9 @@ Accept wildcard characters: False ``` ### -ServiceAllowedNTLMNetworkAuthentication -Specifies that the policy allows NTLM network authentication if the service account has an access control expression specified by the *ServiceAllowedToAuthenticateFrom* parameter. + +Specifies that the policy allows NTLM network authentication if the service account has an access +control expression specified by the *ServiceAllowedToAuthenticateFrom* parameter. ```yaml Type: SwitchParameter @@ -343,7 +382,9 @@ Accept wildcard characters: False ``` ### -ServiceAllowedToAuthenticateFrom -Specifies an access control expression used to determine from which devices the service can authenticate. + +Specifies an access control expression used to determine from which devices the service can +authenticate. ```yaml Type: String @@ -358,7 +399,9 @@ Accept wildcard characters: False ``` ### -ServiceAllowedToAuthenticateTo -Specifies the SDDL string of the security descriptor used to determine if the service can authenticate to this account. + +Specifies the SDDL string of the security descriptor used to determine if the service can +authenticate to this account. ```yaml Type: String @@ -373,6 +416,7 @@ Accept wildcard characters: False ``` ### -ServiceTGTLifetimeMins + Specifies the lifetime in minutes for non-renewable TGTs for service accounts. ```yaml @@ -388,7 +432,9 @@ Accept wildcard characters: False ``` ### -UserAllowedNTLMNetworkAuthentication -Indicates that the policy allows NTLM network authentication if the user account has an access control expression specified by the *UserAllowedToAuthenticateFrom* parameter. + +Indicates that the policy allows NTLM network authentication if the user account has an access +control expression specified by the *UserAllowedToAuthenticateFrom* parameter. ```yaml Type: SwitchParameter @@ -403,7 +449,9 @@ Accept wildcard characters: False ``` ### -UserAllowedToAuthenticateFrom -Specifies an access control expression used to determine from which devices the users can authenticate. + +Specifies an access control expression used to determine from which devices the users can +authenticate. ```yaml Type: String @@ -418,7 +466,9 @@ Accept wildcard characters: False ``` ### -UserAllowedToAuthenticateTo -Specifies the SDDL string of the security descriptor used to determine if the users can authenticate to this account. + +Specifies the SDDL string of the security descriptor used to determine if the users can authenticate +to this account. ```yaml Type: String @@ -433,6 +483,7 @@ Accept wildcard characters: False ``` ### -UserTGTLifetimeMins + Specifies the lifetime in minutes for non-renewable TGTs for user accounts. ```yaml @@ -448,6 +499,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -464,11 +516,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 -### System.String: System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], System.Management.Automation.SwitchParameter: System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] +### ADStrongNTLMPolicyType + +### System.Boolean + +### System.Int32 + +### System.Management.Automation.SwitchParameter + +### System.String ## OUTPUTS @@ -485,4 +549,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-ADAuthenticationPolicy](./Set-ADAuthenticationPolicy.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - diff --git a/docset/winserver2025-ps/DFSR/Import-DfsrClone.md b/docset/winserver2025-ps/DFSR/Import-DfsrClone.md index 33bf5da65c..a1212b88b0 100644 --- a/docset/winserver2025-ps/DFSR/Import-DfsrClone.md +++ b/docset/winserver2025-ps/DFSR/Import-DfsrClone.md @@ -206,7 +206,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### [none] +### None ## NOTES diff --git a/docset/winserver2025-ps/DFSR/Remove-DfsReplicationGroup.md b/docset/winserver2025-ps/DFSR/Remove-DfsReplicationGroup.md index a8b45775b9..85b71f623b 100644 --- a/docset/winserver2025-ps/DFSR/Remove-DfsReplicationGroup.md +++ b/docset/winserver2025-ps/DFSR/Remove-DfsReplicationGroup.md @@ -161,7 +161,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### [none] +### None ## NOTES diff --git a/docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md b/docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md index a3fb18e4d1..559ee06582 100644 --- a/docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md +++ b/docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration.md @@ -1,31 +1,41 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. Download Help Link: https://aka.ms/winsvr-2025-pshelp +Help Version: 1.0.0.0 +Locale: en-US Module Name: Microsoft.Windows.ServerManager.Migration +Module Guid: 00000000-0000-0000-0000-000000000000 ms.date: 01/03/2017 +schema: 2.0.0 title: Microsoft.Windows.ServerManager.Migration --- - - # Microsoft.Windows.ServerManager.Migration Module + ## Description + This reference provides cmdlet descriptions and syntax for all Server Migration cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. Administrators can use the Windows Server Migration Tools cmdlets for Windows PowerShell to migrate server roles, features, operating system settings, and other data and shares to computers that are running the latest version of Windows Server. ## Microsoft.Windows.ServerManager.Migration Cmdlets + ### [Export-SmigServerSetting](./Export-SmigServerSetting.md) + Exports selected Windows features and operating system settings from the local computer, and stores them in a migration store. ### [Get-SmigServerFeature](./Get-SmigServerFeature.md) + Gets the set of all Windows features that can be migrated from the local server or from a migration store. ### [Import-SmigServerSetting](./Import-SmigServerSetting.md) + Imports selected Windows features, and operating system settings from a migration store, and applies them to the local computer. ### [Receive-SmigServerData](./Receive-SmigServerData.md) + Allows a destination server to receive shares, folders, files, and associated permissions and share properties that are migrated from a source server. ### [Send-SmigServerData](./Send-SmigServerData.md) + Migrates folders, files, and associated permissions and share properties from a source server to a destination server through port 7000. diff --git a/docset/winserver2025-ps/MultiPoint/Get-WmsUser.md b/docset/winserver2025-ps/MultiPoint/Get-WmsUser.md index 339d5378b4..686897b1d9 100644 --- a/docset/winserver2025-ps/MultiPoint/Get-WmsUser.md +++ b/docset/winserver2025-ps/MultiPoint/Get-WmsUser.md @@ -102,19 +102,20 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String +### None ## OUTPUTS -### Microsoft.WindowsServerSolutions.MultipointServer.PowerShell.Commands.Library.WmsUser +### WmsUser + +This cmdlet returns a **WmsUser** collection as **PSObject** collection. ## NOTES ## RELATED LINKS -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) -[Set-WmsUser](./Set-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) +[Set-WmsUser](Set-WmsUser.md) diff --git a/docset/winserver2025-ps/MultiPoint/New-WmsUser.md b/docset/winserver2025-ps/MultiPoint/New-WmsUser.md index 138b1f304b..75bd94c252 100644 --- a/docset/winserver2025-ps/MultiPoint/New-WmsUser.md +++ b/docset/winserver2025-ps/MultiPoint/New-WmsUser.md @@ -152,17 +152,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String +### None ## OUTPUTS -### System.Object +### None ## NOTES ## RELATED LINKS -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) diff --git a/docset/winserver2025-ps/MultiPoint/Remove-WmsUser.md b/docset/winserver2025-ps/MultiPoint/Remove-WmsUser.md index e91ae56312..41d366c05d 100644 --- a/docset/winserver2025-ps/MultiPoint/Remove-WmsUser.md +++ b/docset/winserver2025-ps/MultiPoint/Remove-WmsUser.md @@ -100,19 +100,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### System.String +### None ## OUTPUTS -### System.Object +### None ## NOTES ## RELATED LINKS -[Get-WmsUser]() +[Get-WmsUser](Get-WmsUser.md) -[New-WmsUser]() - -[Set-WmsUser](./Set-WmsUser.md) +[New-WmsUser](New-WmsUser.md) +[Set-WmsUser](Set-WmsUser.md) diff --git a/docset/winserver2025-ps/MultiPoint/Set-WmsUser.md b/docset/winserver2025-ps/MultiPoint/Set-WmsUser.md index ff8f4053ea..f3a72e6887 100644 --- a/docset/winserver2025-ps/MultiPoint/Set-WmsUser.md +++ b/docset/winserver2025-ps/MultiPoint/Set-WmsUser.md @@ -151,9 +151,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-WmsUser]() +[Get-WmsUser](Get-WmsUser.md) -[New-WmsUser]() - -[Remove-WmsUser]() +[New-WmsUser](New-WmsUser.md) +[Remove-WmsUser](Remove-WmsUser.md) diff --git a/docset/winserver2025-ps/MultiPoint/Stop-WmsSystem.md b/docset/winserver2025-ps/MultiPoint/Stop-WmsSystem.md index ae26e9d1d8..2e0b04b543 100644 --- a/docset/winserver2025-ps/MultiPoint/Stop-WmsSystem.md +++ b/docset/winserver2025-ps/MultiPoint/Stop-WmsSystem.md @@ -94,15 +94,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add-WmsSystem]() +[Add-WmsSystem](Add-WmsSystem.md) -[Get-WmsSystem]() +[Get-WmsSystem](Get-WmsSystem.md) -[Remove-WmsSystem]() +[Remove-WmsSystem](Remove-WmsSystem.md) -[Restart-WmsSystem]() +[Restart-WmsSystem](Restart-WmsSystem.md) -[Search-WmsSystem]() - -[Set-WmsSystem]() +[Search-WmsSystem](Search-WmsSystem.md) +[Set-WmsSystem](Set-WmsSystem.md) diff --git a/docset/winserver2025-ps/NetworkATC/Set-NetIntentTracing.md b/docset/winserver2025-ps/NetworkATC/Set-NetIntentTracing.md index 872fea246c..5b7f8de4ea 100644 --- a/docset/winserver2025-ps/NetworkATC/Set-NetIntentTracing.md +++ b/docset/winserver2025-ps/NetworkATC/Set-NetIntentTracing.md @@ -79,9 +79,9 @@ Accept wildcard characters: False ## INPUTS -### [switch] $StopTracing, switch to stop tracing +### SwitchParameter -### [string] $ComputerName, target computer name +### String ## OUTPUTS diff --git a/docset/winserver2025-ps/TLS/Get-TlsEccCurve.md b/docset/winserver2025-ps/TLS/Get-TlsEccCurve.md index 22b058da3e..bca22c4594 100644 --- a/docset/winserver2025-ps/TLS/Get-TlsEccCurve.md +++ b/docset/winserver2025-ps/TLS/Get-TlsEccCurve.md @@ -90,6 +90,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Enable-TlsEccCurve](./Enable-TlsEccCurve.md) +[Enable-TlsEccCurve](Enable-TlsEccCurve.md) -[Disable-TlsEccCurve](./Disable-TlsEccCurve.md) +[Disable-TlsEccCurve](Disable-TlsEccCurve.md) From b86b053539a918e9d71c7ebacb845244ae61f1a9 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 23 May 2025 16:49:57 -0500 Subject: [PATCH 2/2] Rename missing files and fix content errors (#4006) * Rename missing files and fix content errors * Rename missed Hyper-V files --- ...dd-VmNetworkAdapterRoutingDomainMapping.md | 0 .../Get-VmNetworkAdapterIsolation.md | 0 .../Set-VmNetworkAdapterIsolation.md | 0 ...et-VmNetworkAdapterRoutingDomainMapping.md | 0 ...WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../Get-WinCultureFromLanguageListOptOut.md | 1 + .../Get-WinDefaultInputMethodOverride.md | 1 + .../International/Get-WinHomeLocation.md | 1 + .../International/Get-WinLanguageBarOption.md | 5 +-- .../International/Get-WinSystemLocale.md | 1 + .../Get-WinUILanguageOverride.md | 5 +-- .../International/Get-WinUserLanguageList.md | 31 ++++++++++--------- .../International/New-WinUserLanguageList.md | 25 ++++++++------- .../International/Set-Culture.md | 3 +- ...WinAcceptLanguageFromLanguageListOptOut.md | 3 +- .../Set-WinCultureFromLanguageListOptOut.md | 3 +- .../Set-WinDefaultInputMethodOverride.md | 3 +- .../International/Set-WinHomeLocation.md | 3 +- .../International/Set-WinLanguageBarOption.md | 5 +-- .../International/Set-WinSystemLocale.md | 3 +- .../Set-WinUILanguageOverride.md | 3 +- .../International/Set-WinUserLanguageList.md | 17 +++++----- .../Clear-MsmqOutgoingQueue.md} | 0 .../Clear-MsmqQueue.md} | 0 .../Enable-MsmqCertificate.md} | 0 .../Get-MsmqCertificate.md} | 0 .../Get-MsmqOutgoingQueue.md} | 0 ...Microsoft.Windows.ServerManager.Migration} | 0 .../ConvertTo-ProcessMitigationPolicy.md | 7 +++-- ...WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../Get-WinCultureFromLanguageListOptOut.md | 1 + .../Get-WinDefaultInputMethodOverride.md | 1 + .../International/Get-WinHomeLocation.md | 1 + .../International/Get-WinLanguageBarOption.md | 5 +-- .../International/Get-WinSystemLocale.md | 1 + .../Get-WinUILanguageOverride.md | 5 +-- .../International/Get-WinUserLanguageList.md | 31 ++++++++++--------- .../International/New-WinUserLanguageList.md | 25 ++++++++------- .../International/Set-Culture.md | 3 +- ...WinAcceptLanguageFromLanguageListOptOut.md | 3 +- .../Set-WinCultureFromLanguageListOptOut.md | 3 +- .../Set-WinDefaultInputMethodOverride.md | 3 +- .../International/Set-WinHomeLocation.md | 3 +- .../International/Set-WinLanguageBarOption.md | 5 +-- .../International/Set-WinSystemLocale.md | 3 +- .../Set-WinUILanguageOverride.md | 3 +- .../International/Set-WinUserLanguageList.md | 17 +++++----- ...Microsoft.Windows.ServerManager.Migration} | 0 .../ConvertTo-ProcessMitigationPolicy.md | 7 +++-- .../Copy-UserInternationalSettingsToSystem.md | 15 ++++++--- ...WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../Get-WinCultureFromLanguageListOptOut.md | 1 + .../Get-WinDefaultInputMethodOverride.md | 1 + .../International/Get-WinHomeLocation.md | 1 + .../International/Get-WinLanguageBarOption.md | 5 +-- .../International/Get-WinSystemLocale.md | 1 + .../Get-WinUILanguageOverride.md | 5 +-- .../International/Get-WinUserLanguageList.md | 31 ++++++++++--------- .../International/New-WinUserLanguageList.md | 25 ++++++++------- .../International/Set-Culture.md | 3 +- ...WinAcceptLanguageFromLanguageListOptOut.md | 3 +- .../Set-WinCultureFromLanguageListOptOut.md | 3 +- .../Set-WinDefaultInputMethodOverride.md | 5 +-- .../International/Set-WinHomeLocation.md | 3 +- .../International/Set-WinLanguageBarOption.md | 5 +-- .../International/Set-WinSystemLocale.md | 3 +- .../Set-WinUILanguageOverride.md | 3 +- .../International/Set-WinUserLanguageList.md | 17 +++++----- ...Microsoft.Windows.ServerManager.Migration} | 0 .../SmbShare/Grant-SmbClientAccessToServer.md | 2 +- .../Copy-UserInternationalSettingsToSystem.md | 15 ++++++--- ...WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../Get-WinCultureFromLanguageListOptOut.md | 1 + .../Get-WinDefaultInputMethodOverride.md | 1 + .../International/Get-WinHomeLocation.md | 1 + .../International/Get-WinLanguageBarOption.md | 1 + .../International/Get-WinSystemLocale.md | 1 + .../Get-WinUILanguageOverride.md | 1 + .../International/Get-WinUserLanguageList.md | 1 + .../International/New-WinUserLanguageList.md | 1 + .../International/Set-Culture.md | 1 + ...WinAcceptLanguageFromLanguageListOptOut.md | 1 + .../Set-WinCultureFromLanguageListOptOut.md | 1 + .../Set-WinDefaultInputMethodOverride.md | 3 +- .../International/Set-WinHomeLocation.md | 1 + .../International/Set-WinLanguageBarOption.md | 1 + .../International/Set-WinSystemLocale.md | 1 + .../Set-WinUILanguageOverride.md | 1 + .../International/Set-WinUserLanguageList.md | 1 + ...Microsoft.Windows.ServerManager.Migration} | 0 .../SmbShare/Grant-SmbClientAccessToServer.md | 2 +- 91 files changed, 250 insertions(+), 166 deletions(-) rename docset/winserver2016-ps/{hyper-v => Hyper-V}/Add-VmNetworkAdapterRoutingDomainMapping.md (100%) rename docset/winserver2016-ps/{hyper-v => Hyper-V}/Get-VmNetworkAdapterIsolation.md (100%) rename docset/winserver2016-ps/{hyper-v => Hyper-V}/Set-VmNetworkAdapterIsolation.md (100%) rename docset/winserver2016-ps/{hyper-v => Hyper-V}/Set-VmNetworkAdapterRoutingDomainMapping.md (100%) rename docset/winserver2016-ps/{msmq/Clear-MSMQOutgoingQueue.md => MSMQ/Clear-MsmqOutgoingQueue.md} (100%) rename docset/winserver2016-ps/{msmq/Clear-MSMQQueue.md => MSMQ/Clear-MsmqQueue.md} (100%) rename docset/winserver2016-ps/{msmq/Enable-MSMQCertificate.md => MSMQ/Enable-MsmqCertificate.md} (100%) rename docset/winserver2016-ps/{msmq/Get-MSMQCertificate.md => MSMQ/Get-MsmqCertificate.md} (100%) rename docset/winserver2016-ps/{msmq/Get-MSMQOutgoingQueue.md => MSMQ/Get-MsmqOutgoingQueue.md} (100%) rename docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/{ServerManager.md => Microsoft.Windows.ServerManager.Migration} (100%) rename docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/{ServerManager.md => Microsoft.Windows.ServerManager.Migration} (100%) rename docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/{ServerManager.md => Microsoft.Windows.ServerManager.Migration} (100%) rename docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/{ServerManager.md => Microsoft.Windows.ServerManager.Migration} (100%) diff --git a/docset/winserver2016-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2016-ps/Hyper-V/Add-VmNetworkAdapterRoutingDomainMapping.md similarity index 100% rename from docset/winserver2016-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md rename to docset/winserver2016-ps/Hyper-V/Add-VmNetworkAdapterRoutingDomainMapping.md diff --git a/docset/winserver2016-ps/hyper-v/Get-VmNetworkAdapterIsolation.md b/docset/winserver2016-ps/Hyper-V/Get-VmNetworkAdapterIsolation.md similarity index 100% rename from docset/winserver2016-ps/hyper-v/Get-VmNetworkAdapterIsolation.md rename to docset/winserver2016-ps/Hyper-V/Get-VmNetworkAdapterIsolation.md diff --git a/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterIsolation.md b/docset/winserver2016-ps/Hyper-V/Set-VmNetworkAdapterIsolation.md similarity index 100% rename from docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterIsolation.md rename to docset/winserver2016-ps/Hyper-V/Set-VmNetworkAdapterIsolation.md diff --git a/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2016-ps/Hyper-V/Set-VmNetworkAdapterRoutingDomainMapping.md similarity index 100% rename from docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md rename to docset/winserver2016-ps/Hyper-V/Set-VmNetworkAdapterRoutingDomainMapping.md diff --git a/docset/winserver2016-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2016-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md index f5410c0a1f..5f200d71a4 100644 --- a/docset/winserver2016-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2016-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -55,4 +56,3 @@ This cmdlet returns a Boolean value that reports the status of the **HTTP Accept [Set-WinAcceptLanguageFromLanguageListOptOut](./Set-WinAcceptLanguageFromLanguageListOptOut.md) [Get-WinUserLanguageList](./Get-WinUserLanguageList.md) - diff --git a/docset/winserver2016-ps/International/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2016-ps/International/Get-WinCultureFromLanguageListOptOut.md index ad34a2e515..d43fbb8bbe 100644 --- a/docset/winserver2016-ps/International/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2016-ps/International/Get-WinCultureFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2016-ps/International/Get-WinDefaultInputMethodOverride.md b/docset/winserver2016-ps/International/Get-WinDefaultInputMethodOverride.md index 8640a2f08e..e617d8a7e6 100644 --- a/docset/winserver2016-ps/International/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2016-ps/International/Get-WinDefaultInputMethodOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2016-ps/International/Get-WinHomeLocation.md b/docset/winserver2016-ps/International/Get-WinHomeLocation.md index c7f4922374..cdb967fead 100644 --- a/docset/winserver2016-ps/International/Get-WinHomeLocation.md +++ b/docset/winserver2016-ps/International/Get-WinHomeLocation.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2016-ps/International/Get-WinLanguageBarOption.md b/docset/winserver2016-ps/International/Get-WinLanguageBarOption.md index f72e529e2c..078a3bac90 100644 --- a/docset/winserver2016-ps/International/Get-WinLanguageBarOption.md +++ b/docset/winserver2016-ps/International/Get-WinLanguageBarOption.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -46,12 +47,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### LanguageBar -This cmdlet returns an object that contains the following settings. +This cmdlet returns an object that contains the following settings. - **IsLegacyLanguageBar**. When this setting is set to true, the desktop language bar is used, where available. When this setting is set to false, the modem input switcher is used. -This is recommended. +This is recommended. - **IsLegacySwitchingMode**. When this setting is set to true, the current input method, which includes keyboard layout or input method editor (IME), is selected for the current application only. When new applications start, the default input method is selected. diff --git a/docset/winserver2016-ps/International/Get-WinSystemLocale.md b/docset/winserver2016-ps/International/Get-WinSystemLocale.md index 4367455185..e7eb80d59f 100644 --- a/docset/winserver2016-ps/International/Get-WinSystemLocale.md +++ b/docset/winserver2016-ps/International/Get-WinSystemLocale.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2016-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2016-ps/International/Get-WinUILanguageOverride.md b/docset/winserver2016-ps/International/Get-WinUILanguageOverride.md index 3dc856b5e8..d0c7717a5c 100644 --- a/docset/winserver2016-ps/International/Get-WinUILanguageOverride.md +++ b/docset/winserver2016-ps/International/Get-WinUILanguageOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -29,8 +30,8 @@ For more information, see the **Get-WinUserLanguageList** and **Set-WinUserLangu ### Example 1: Display the language override setting ``` PS C:\> Get-WinUILanguageOverride -LCID Name DisplayName ----- ---- ----------- +LCID Name DisplayName +---- ---- ----------- 1033 en-US English (United States) ``` diff --git a/docset/winserver2016-ps/International/Get-WinUserLanguageList.md b/docset/winserver2016-ps/International/Get-WinUserLanguageList.md index 5a105c4466..46d8281923 100644 --- a/docset/winserver2016-ps/International/Get-WinUserLanguageList.md +++ b/docset/winserver2016-ps/International/Get-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -30,16 +31,16 @@ For more information, see [CultureInfo Class](https://go.microsoft.com/fwlink/?L ``` PS C:\> Get-WinUserLanguageList LanguageTag : en-US -Autonym : English (United States) -EnglishName : English (United States) -LocalizedName : English (United States) +Autonym : English (United States) +EnglishName : English (United States) +LocalizedName : English (United States) ScriptName : Latin InputMethodTips : {0409:00000409} -Handwriting : False +Handwriting : False LanguageTag : fr-FR -Autonym : français (France) -EnglishName : French (France) -LocalizedName : French (France) +Autonym : français (France) +EnglishName : French (France) +LocalizedName : French (France) ScriptName : Latin InputMethodTips : {040c:0000040c} Handwriting : False @@ -77,28 +78,28 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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("`LanguageTag`") - Insert(index, "`LanguageTag`") - Remove(Index) -The output language object contains the following properties: +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). +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. +The name of the language in the language itself. - **EnglishName** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **LocalizedName** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **ScriptName** (LP database) (READ). -The writing system of the language. +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`. +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). diff --git a/docset/winserver2016-ps/International/New-WinUserLanguageList.md b/docset/winserver2016-ps/International/New-WinUserLanguageList.md index 3cb6e4d9f8..6c000ef414 100644 --- a/docset/winserver2016-ps/International/New-WinUserLanguageList.md +++ b/docset/winserver2016-ps/International/New-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -48,7 +49,7 @@ Specifies a language. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -68,36 +69,36 @@ 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. For more information about the **Generic.List** object, see [System.Collections.Generic.List(Of T)](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") - Remove(Index) The **LanguageList** is a list of language objects in the current user account's list. -The language list object contains the following methods: +The language list object contains the following methods: - **Add** ("BCP-47") -- **Insert** (BCP-47, index) -- **Remove** (BCP-47) +- **Insert** (BCP-47, index) +- **Remove** (BCP-47) - **Remove** (Index) -The language list object contains the following properties: +The language list 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). +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. +The name of the language in the language itself. - **English name** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **Localized name** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **Script** (LP database) (READ). -The writing system of the 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`. - **Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). diff --git a/docset/winserver2016-ps/International/Set-Culture.md b/docset/winserver2016-ps/International/Set-Culture.md index e11caa1b18..eeac9a8a2e 100644 --- a/docset/winserver2016-ps/International/Set-Culture.md +++ b/docset/winserver2016-ps/International/Set-Culture.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -42,7 +43,7 @@ Specifies a culture. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2016-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2016-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md index 64035678f8..400b61fba7 100644 --- a/docset/winserver2016-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2016-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -43,7 +44,7 @@ Specifies the opt-out value. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2016-ps/International/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2016-ps/International/Set-WinCultureFromLanguageListOptOut.md index e516976a0e..fe4d0012a9 100644 --- a/docset/winserver2016-ps/International/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2016-ps/International/Set-WinCultureFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -42,7 +43,7 @@ Specifies the opt-out value. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2016-ps/International/Set-WinDefaultInputMethodOverride.md b/docset/winserver2016-ps/International/Set-WinDefaultInputMethodOverride.md index 3bc29f9475..48c93eac09 100644 --- a/docset/winserver2016-ps/International/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2016-ps/International/Set-WinDefaultInputMethodOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -41,7 +42,7 @@ Specifies an input tip. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 0 diff --git a/docset/winserver2016-ps/International/Set-WinHomeLocation.md b/docset/winserver2016-ps/International/Set-WinHomeLocation.md index 0614dae9af..4674cac117 100644 --- a/docset/winserver2016-ps/International/Set-WinHomeLocation.md +++ b/docset/winserver2016-ps/International/Set-WinHomeLocation.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -44,7 +45,7 @@ Specifies a GeoID setting. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2016-ps/International/Set-WinLanguageBarOption.md b/docset/winserver2016-ps/International/Set-WinLanguageBarOption.md index d7567dea5d..7d0e835254 100644 --- a/docset/winserver2016-ps/International/Set-WinLanguageBarOption.md +++ b/docset/winserver2016-ps/International/Set-WinLanguageBarOption.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -49,7 +50,7 @@ If you do not specify this parameter, the cmdlet sets the language bar mode to t ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -65,7 +66,7 @@ If you do not specify this parameter, the cmdlet sets the language bar switch mo ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/docset/winserver2016-ps/International/Set-WinSystemLocale.md b/docset/winserver2016-ps/International/Set-WinSystemLocale.md index cd0b924d87..dfc1e2e633 100644 --- a/docset/winserver2016-ps/International/Set-WinSystemLocale.md +++ b/docset/winserver2016-ps/International/Set-WinSystemLocale.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -45,7 +46,7 @@ Specifies a system locale. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2016-ps/International/Set-WinUILanguageOverride.md b/docset/winserver2016-ps/International/Set-WinUILanguageOverride.md index 27938d26c4..78a1549db0 100644 --- a/docset/winserver2016-ps/International/Set-WinUILanguageOverride.md +++ b/docset/winserver2016-ps/International/Set-WinUILanguageOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -50,7 +51,7 @@ Specifies a language. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 0 diff --git a/docset/winserver2016-ps/International/Set-WinUserLanguageList.md b/docset/winserver2016-ps/International/Set-WinUserLanguageList.md index 82f6d3a531..a31c633514 100644 --- a/docset/winserver2016-ps/International/Set-WinUserLanguageList.md +++ b/docset/winserver2016-ps/International/Set-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp @@ -82,7 +83,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +98,7 @@ Specifies a language list. ```yaml Type: System.Collections.Generic.List`1[Microsoft.InternationalSettings.Commands.WinUserLanguage] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -129,19 +130,19 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Generic.List You can pipe 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: +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 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). +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. +The name of the language in the language itself. - **English name** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **Localized name** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **Script** (LP database) (READ). -The writing system of the 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). diff --git a/docset/winserver2016-ps/msmq/Clear-MSMQOutgoingQueue.md b/docset/winserver2016-ps/MSMQ/Clear-MsmqOutgoingQueue.md similarity index 100% rename from docset/winserver2016-ps/msmq/Clear-MSMQOutgoingQueue.md rename to docset/winserver2016-ps/MSMQ/Clear-MsmqOutgoingQueue.md diff --git a/docset/winserver2016-ps/msmq/Clear-MSMQQueue.md b/docset/winserver2016-ps/MSMQ/Clear-MsmqQueue.md similarity index 100% rename from docset/winserver2016-ps/msmq/Clear-MSMQQueue.md rename to docset/winserver2016-ps/MSMQ/Clear-MsmqQueue.md diff --git a/docset/winserver2016-ps/msmq/Enable-MSMQCertificate.md b/docset/winserver2016-ps/MSMQ/Enable-MsmqCertificate.md similarity index 100% rename from docset/winserver2016-ps/msmq/Enable-MSMQCertificate.md rename to docset/winserver2016-ps/MSMQ/Enable-MsmqCertificate.md diff --git a/docset/winserver2016-ps/msmq/Get-MSMQCertificate.md b/docset/winserver2016-ps/MSMQ/Get-MsmqCertificate.md similarity index 100% rename from docset/winserver2016-ps/msmq/Get-MSMQCertificate.md rename to docset/winserver2016-ps/MSMQ/Get-MsmqCertificate.md diff --git a/docset/winserver2016-ps/msmq/Get-MSMQOutgoingQueue.md b/docset/winserver2016-ps/MSMQ/Get-MsmqOutgoingQueue.md similarity index 100% rename from docset/winserver2016-ps/msmq/Get-MSMQOutgoingQueue.md rename to docset/winserver2016-ps/MSMQ/Get-MsmqOutgoingQueue.md diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration similarity index 100% rename from docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md rename to docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration diff --git a/docset/winserver2016-ps/ProcessMitigations/ConvertTo-ProcessMitigationPolicy.md b/docset/winserver2016-ps/ProcessMitigations/ConvertTo-ProcessMitigationPolicy.md index 1b01354cb0..cee79559e6 100644 --- a/docset/winserver2016-ps/ProcessMitigations/ConvertTo-ProcessMitigationPolicy.md +++ b/docset/winserver2016-ps/ProcessMitigations/ConvertTo-ProcessMitigationPolicy.md @@ -34,7 +34,8 @@ Converts EMET file policy.xml to result.xml, may also generate a CI file CI-resu ## PARAMETERS ### -EMETFilePath -{{Fill EMETFilePath Description}}```yaml + +```yaml Type: String Parameter Sets: (All) Aliases: f @@ -47,7 +48,8 @@ Accept wildcard characters: False ``` ### -OutputFilePath -{{Fill OutputFilePath Description}}```yaml + +```yaml Type: String Parameter Sets: (All) Aliases: o @@ -73,4 +75,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2019-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2019-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md index db652b9e00..68f56db322 100644 --- a/docset/winserver2019-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2019-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -55,4 +56,3 @@ This cmdlet returns a Boolean value that reports the status of the **HTTP Accept [Set-WinAcceptLanguageFromLanguageListOptOut](./Set-WinAcceptLanguageFromLanguageListOptOut.md) [Get-WinUserLanguageList](./Get-WinUserLanguageList.md) - diff --git a/docset/winserver2019-ps/International/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2019-ps/International/Get-WinCultureFromLanguageListOptOut.md index 102a79e99c..0032a95e1b 100644 --- a/docset/winserver2019-ps/International/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2019-ps/International/Get-WinCultureFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2019-ps/International/Get-WinDefaultInputMethodOverride.md b/docset/winserver2019-ps/International/Get-WinDefaultInputMethodOverride.md index 7f7cdfb333..d53d40ce2a 100644 --- a/docset/winserver2019-ps/International/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2019-ps/International/Get-WinDefaultInputMethodOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2019-ps/International/Get-WinHomeLocation.md b/docset/winserver2019-ps/International/Get-WinHomeLocation.md index 21fa7be419..02568e3bed 100644 --- a/docset/winserver2019-ps/International/Get-WinHomeLocation.md +++ b/docset/winserver2019-ps/International/Get-WinHomeLocation.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2019-ps/International/Get-WinLanguageBarOption.md b/docset/winserver2019-ps/International/Get-WinLanguageBarOption.md index 20f0b917b0..9ccd99cf49 100644 --- a/docset/winserver2019-ps/International/Get-WinLanguageBarOption.md +++ b/docset/winserver2019-ps/International/Get-WinLanguageBarOption.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -46,12 +47,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### LanguageBar -This cmdlet returns an object that contains the following settings. +This cmdlet returns an object that contains the following settings. - **IsLegacyLanguageBar**. When this setting is set to true, the desktop language bar is used, where available. When this setting is set to false, the modem input switcher is used. -This is recommended. +This is recommended. - **IsLegacySwitchingMode**. When this setting is set to true, the current input method, which includes keyboard layout or input method editor (IME), is selected for the current application only. When new applications start, the default input method is selected. diff --git a/docset/winserver2019-ps/International/Get-WinSystemLocale.md b/docset/winserver2019-ps/International/Get-WinSystemLocale.md index dc133ce1af..d4f7bda193 100644 --- a/docset/winserver2019-ps/International/Get-WinSystemLocale.md +++ b/docset/winserver2019-ps/International/Get-WinSystemLocale.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2019-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2019-ps/International/Get-WinUILanguageOverride.md b/docset/winserver2019-ps/International/Get-WinUILanguageOverride.md index 468a745018..ba9e69cda1 100644 --- a/docset/winserver2019-ps/International/Get-WinUILanguageOverride.md +++ b/docset/winserver2019-ps/International/Get-WinUILanguageOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -29,8 +30,8 @@ For more information, see the **Get-WinUserLanguageList** and **Set-WinUserLangu ### Example 1: Display the language override setting ``` PS C:\> Get-WinUILanguageOverride -LCID Name DisplayName ----- ---- ----------- +LCID Name DisplayName +---- ---- ----------- 1033 en-US English (United States) ``` diff --git a/docset/winserver2019-ps/International/Get-WinUserLanguageList.md b/docset/winserver2019-ps/International/Get-WinUserLanguageList.md index fe65665a99..24c7b9162d 100644 --- a/docset/winserver2019-ps/International/Get-WinUserLanguageList.md +++ b/docset/winserver2019-ps/International/Get-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -30,16 +31,16 @@ For more information, see [CultureInfo Class](https://go.microsoft.com/fwlink/?L ``` PS C:\> Get-WinUserLanguageList LanguageTag : en-US -Autonym : English (United States) -EnglishName : English (United States) -LocalizedName : English (United States) +Autonym : English (United States) +EnglishName : English (United States) +LocalizedName : English (United States) ScriptName : Latin InputMethodTips : {0409:00000409} -Handwriting : False +Handwriting : False LanguageTag : fr-FR -Autonym : français (France) -EnglishName : French (France) -LocalizedName : French (France) +Autonym : français (France) +EnglishName : French (France) +LocalizedName : French (France) ScriptName : Latin InputMethodTips : {040c:0000040c} Handwriting : False @@ -77,28 +78,28 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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("`LanguageTag`") - Insert(index, "`LanguageTag`") - Remove(Index) -The output language object contains the following properties: +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). +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. +The name of the language in the language itself. - **EnglishName** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **LocalizedName** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **ScriptName** (LP database) (READ). -The writing system of the language. +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`. +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). diff --git a/docset/winserver2019-ps/International/New-WinUserLanguageList.md b/docset/winserver2019-ps/International/New-WinUserLanguageList.md index b73945ed03..89e3cbf4a3 100644 --- a/docset/winserver2019-ps/International/New-WinUserLanguageList.md +++ b/docset/winserver2019-ps/International/New-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -48,7 +49,7 @@ Specifies a language. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -68,36 +69,36 @@ 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. For more information about the **Generic.List** object, see [System.Collections.Generic.List(Of T)](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") - Remove(Index) The **LanguageList** is a list of language objects in the current user account's list. -The language list object contains the following methods: +The language list object contains the following methods: - **Add** ("BCP-47") -- **Insert** (BCP-47, index) -- **Remove** (BCP-47) +- **Insert** (BCP-47, index) +- **Remove** (BCP-47) - **Remove** (Index) -The language list object contains the following properties: +The language list 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). +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. +The name of the language in the language itself. - **English name** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **Localized name** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **Script** (LP database) (READ). -The writing system of the 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`. - **Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). diff --git a/docset/winserver2019-ps/International/Set-Culture.md b/docset/winserver2019-ps/International/Set-Culture.md index f57f6eed8f..8ad02d2f4a 100644 --- a/docset/winserver2019-ps/International/Set-Culture.md +++ b/docset/winserver2019-ps/International/Set-Culture.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -42,7 +43,7 @@ Specifies a culture. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2019-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2019-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md index b111236e34..53da5487c8 100644 --- a/docset/winserver2019-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2019-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -43,7 +44,7 @@ Specifies the opt-out value. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2019-ps/International/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2019-ps/International/Set-WinCultureFromLanguageListOptOut.md index 2e7974b3f6..e639aec65b 100644 --- a/docset/winserver2019-ps/International/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2019-ps/International/Set-WinCultureFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -42,7 +43,7 @@ Specifies the opt-out value. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2019-ps/International/Set-WinDefaultInputMethodOverride.md b/docset/winserver2019-ps/International/Set-WinDefaultInputMethodOverride.md index e18c1a5645..fab9cb02cd 100644 --- a/docset/winserver2019-ps/International/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2019-ps/International/Set-WinDefaultInputMethodOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -41,7 +42,7 @@ Specifies an input tip. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 0 diff --git a/docset/winserver2019-ps/International/Set-WinHomeLocation.md b/docset/winserver2019-ps/International/Set-WinHomeLocation.md index d498eabdd9..45bf4ee381 100644 --- a/docset/winserver2019-ps/International/Set-WinHomeLocation.md +++ b/docset/winserver2019-ps/International/Set-WinHomeLocation.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -44,7 +45,7 @@ Specifies a GeoID setting. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2019-ps/International/Set-WinLanguageBarOption.md b/docset/winserver2019-ps/International/Set-WinLanguageBarOption.md index 05181e07f2..aa57cdf0f6 100644 --- a/docset/winserver2019-ps/International/Set-WinLanguageBarOption.md +++ b/docset/winserver2019-ps/International/Set-WinLanguageBarOption.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -49,7 +50,7 @@ If you do not specify this parameter, the cmdlet sets the language bar mode to t ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -65,7 +66,7 @@ If you do not specify this parameter, the cmdlet sets the language bar switch mo ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/docset/winserver2019-ps/International/Set-WinSystemLocale.md b/docset/winserver2019-ps/International/Set-WinSystemLocale.md index 3c99a5f571..bef64297c4 100644 --- a/docset/winserver2019-ps/International/Set-WinSystemLocale.md +++ b/docset/winserver2019-ps/International/Set-WinSystemLocale.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -45,7 +46,7 @@ Specifies a system locale. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2019-ps/International/Set-WinUILanguageOverride.md b/docset/winserver2019-ps/International/Set-WinUILanguageOverride.md index b88fd5555b..5825db976d 100644 --- a/docset/winserver2019-ps/International/Set-WinUILanguageOverride.md +++ b/docset/winserver2019-ps/International/Set-WinUILanguageOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -50,7 +51,7 @@ Specifies a language. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 0 diff --git a/docset/winserver2019-ps/International/Set-WinUserLanguageList.md b/docset/winserver2019-ps/International/Set-WinUserLanguageList.md index 4b64e52328..4f263374dc 100644 --- a/docset/winserver2019-ps/International/Set-WinUserLanguageList.md +++ b/docset/winserver2019-ps/International/Set-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp @@ -82,7 +83,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +98,7 @@ Specifies a language list. ```yaml Type: System.Collections.Generic.List`1[Microsoft.InternationalSettings.Commands.WinUserLanguage] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -129,19 +130,19 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Generic.List You can pipe 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: +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 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). +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. +The name of the language in the language itself. - **English name** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **Localized name** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **Script** (LP database) (READ). -The writing system of the 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). diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration similarity index 100% rename from docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md rename to docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration diff --git a/docset/winserver2019-ps/ProcessMitigations/ConvertTo-ProcessMitigationPolicy.md b/docset/winserver2019-ps/ProcessMitigations/ConvertTo-ProcessMitigationPolicy.md index 1189f27794..09105f9273 100644 --- a/docset/winserver2019-ps/ProcessMitigations/ConvertTo-ProcessMitigationPolicy.md +++ b/docset/winserver2019-ps/ProcessMitigations/ConvertTo-ProcessMitigationPolicy.md @@ -34,7 +34,8 @@ Converts EMET file policy.xml to result.xml, may also generate a CI file CI-resu ## PARAMETERS ### -EMETFilePath -{{Fill EMETFilePath Description}}```yaml + +```yaml Type: String Parameter Sets: (All) Aliases: f @@ -47,7 +48,8 @@ Accept wildcard characters: False ``` ### -OutputFilePath -{{Fill OutputFilePath Description}}```yaml + +```yaml Type: String Parameter Sets: (All) Aliases: o @@ -73,4 +75,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2022-ps/International/Copy-UserInternationalSettingsToSystem.md b/docset/winserver2022-ps/International/Copy-UserInternationalSettingsToSystem.md index 62d1c4556c..ad2a5fb7b6 100644 --- a/docset/winserver2022-ps/International/Copy-UserInternationalSettingsToSystem.md +++ b/docset/winserver2022-ps/International/Copy-UserInternationalSettingsToSystem.md @@ -2,13 +2,12 @@ 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 +Locale: en-US manager: aandrejs ms.author: ertorres ms.date: 09/08/2021 -ms.mktglfcycl: manage -ms.service: windows-11 -ms.sitesec: library -ms.topic: reference +Module Name: International +online version: https://learn.microsoft.com/powershell/module/international/copy-userinternationalsettingstosystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-UserInternationalSettingsToSystem --- @@ -84,3 +83,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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2022-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md index dc63e4e346..6e948d59f1 100644 --- a/docset/winserver2022-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2022-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -55,4 +56,3 @@ This cmdlet returns a Boolean value that reports the status of the **HTTP Accept [Set-WinAcceptLanguageFromLanguageListOptOut](./Set-WinAcceptLanguageFromLanguageListOptOut.md) [Get-WinUserLanguageList](./Get-WinUserLanguageList.md) - diff --git a/docset/winserver2022-ps/International/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2022-ps/International/Get-WinCultureFromLanguageListOptOut.md index 7102182097..604522a063 100644 --- a/docset/winserver2022-ps/International/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2022-ps/International/Get-WinCultureFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/International/Get-WinDefaultInputMethodOverride.md b/docset/winserver2022-ps/International/Get-WinDefaultInputMethodOverride.md index e10b3de4ed..6844c7d975 100644 --- a/docset/winserver2022-ps/International/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2022-ps/International/Get-WinDefaultInputMethodOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/International/Get-WinHomeLocation.md b/docset/winserver2022-ps/International/Get-WinHomeLocation.md index 690b7d4853..1d853f5b15 100644 --- a/docset/winserver2022-ps/International/Get-WinHomeLocation.md +++ b/docset/winserver2022-ps/International/Get-WinHomeLocation.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/International/Get-WinLanguageBarOption.md b/docset/winserver2022-ps/International/Get-WinLanguageBarOption.md index 75958fb35a..2746f091d1 100644 --- a/docset/winserver2022-ps/International/Get-WinLanguageBarOption.md +++ b/docset/winserver2022-ps/International/Get-WinLanguageBarOption.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -46,12 +47,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### LanguageBar -This cmdlet returns an object that contains the following settings. +This cmdlet returns an object that contains the following settings. - **IsLegacyLanguageBar**. When this setting is set to true, the desktop language bar is used, where available. When this setting is set to false, the modem input switcher is used. -This is recommended. +This is recommended. - **IsLegacySwitchingMode**. When this setting is set to true, the current input method, which includes keyboard layout or input method editor (IME), is selected for the current application only. When new applications start, the default input method is selected. diff --git a/docset/winserver2022-ps/International/Get-WinSystemLocale.md b/docset/winserver2022-ps/International/Get-WinSystemLocale.md index 47b8fafbdd..68fa80668f 100644 --- a/docset/winserver2022-ps/International/Get-WinSystemLocale.md +++ b/docset/winserver2022-ps/International/Get-WinSystemLocale.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/International/Get-WinUILanguageOverride.md b/docset/winserver2022-ps/International/Get-WinUILanguageOverride.md index aaea1221cb..27630ea625 100644 --- a/docset/winserver2022-ps/International/Get-WinUILanguageOverride.md +++ b/docset/winserver2022-ps/International/Get-WinUILanguageOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -29,8 +30,8 @@ For more information, see the **Get-WinUserLanguageList** and **Set-WinUserLangu ### Example 1: Display the language override setting ``` PS C:\> Get-WinUILanguageOverride -LCID Name DisplayName ----- ---- ----------- +LCID Name DisplayName +---- ---- ----------- 1033 en-US English (United States) ``` diff --git a/docset/winserver2022-ps/International/Get-WinUserLanguageList.md b/docset/winserver2022-ps/International/Get-WinUserLanguageList.md index 26eda660a5..a0a3ce595e 100644 --- a/docset/winserver2022-ps/International/Get-WinUserLanguageList.md +++ b/docset/winserver2022-ps/International/Get-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -30,16 +31,16 @@ For more information, see [CultureInfo Class](https://go.microsoft.com/fwlink/?L ``` PS C:\> Get-WinUserLanguageList LanguageTag : en-US -Autonym : English (United States) -EnglishName : English (United States) -LocalizedName : English (United States) +Autonym : English (United States) +EnglishName : English (United States) +LocalizedName : English (United States) ScriptName : Latin InputMethodTips : {0409:00000409} -Handwriting : False +Handwriting : False LanguageTag : fr-FR -Autonym : français (France) -EnglishName : French (France) -LocalizedName : French (France) +Autonym : français (France) +EnglishName : French (France) +LocalizedName : French (France) ScriptName : Latin InputMethodTips : {040c:0000040c} Handwriting : False @@ -77,28 +78,28 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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("`LanguageTag`") - Insert(index, "`LanguageTag`") - Remove(Index) -The output language object contains the following properties: +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). +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. +The name of the language in the language itself. - **EnglishName** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **LocalizedName** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **ScriptName** (LP database) (READ). -The writing system of the language. +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`. +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). diff --git a/docset/winserver2022-ps/International/New-WinUserLanguageList.md b/docset/winserver2022-ps/International/New-WinUserLanguageList.md index aacc7606bf..2c13249837 100644 --- a/docset/winserver2022-ps/International/New-WinUserLanguageList.md +++ b/docset/winserver2022-ps/International/New-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -48,7 +49,7 @@ Specifies a language. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -68,36 +69,36 @@ 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. For more information about the **Generic.List** object, see [System.Collections.Generic.List(Of T)](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") - Remove(Index) The **LanguageList** is a list of language objects in the current user account's list. -The language list object contains the following methods: +The language list object contains the following methods: - **Add** ("BCP-47") -- **Insert** (BCP-47, index) -- **Remove** (BCP-47) +- **Insert** (BCP-47, index) +- **Remove** (BCP-47) - **Remove** (Index) -The language list object contains the following properties: +The language list 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). +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. +The name of the language in the language itself. - **English name** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **Localized name** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **Script** (LP database) (READ). -The writing system of the 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`. - **Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). diff --git a/docset/winserver2022-ps/International/Set-Culture.md b/docset/winserver2022-ps/International/Set-Culture.md index 519db63920..37364abe71 100644 --- a/docset/winserver2022-ps/International/Set-Culture.md +++ b/docset/winserver2022-ps/International/Set-Culture.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -42,7 +43,7 @@ Specifies a culture. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2022-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2022-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md index 6942f6f17c..2f16f3838f 100644 --- a/docset/winserver2022-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2022-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -43,7 +44,7 @@ Specifies the opt-out value. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2022-ps/International/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2022-ps/International/Set-WinCultureFromLanguageListOptOut.md index 7286d2506a..e02f939506 100644 --- a/docset/winserver2022-ps/International/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2022-ps/International/Set-WinCultureFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -42,7 +43,7 @@ Specifies the opt-out value. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2022-ps/International/Set-WinDefaultInputMethodOverride.md b/docset/winserver2022-ps/International/Set-WinDefaultInputMethodOverride.md index 76ef229a3d..f06911c95d 100644 --- a/docset/winserver2022-ps/International/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2022-ps/International/Set-WinDefaultInputMethodOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -41,7 +42,7 @@ Specifies an input tip. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 0 @@ -56,7 +57,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 diff --git a/docset/winserver2022-ps/International/Set-WinHomeLocation.md b/docset/winserver2022-ps/International/Set-WinHomeLocation.md index efd1c5fcf6..f5c29a6e64 100644 --- a/docset/winserver2022-ps/International/Set-WinHomeLocation.md +++ b/docset/winserver2022-ps/International/Set-WinHomeLocation.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -44,7 +45,7 @@ Specifies a GeoID setting. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2022-ps/International/Set-WinLanguageBarOption.md b/docset/winserver2022-ps/International/Set-WinLanguageBarOption.md index dcb496c298..81a00977e8 100644 --- a/docset/winserver2022-ps/International/Set-WinLanguageBarOption.md +++ b/docset/winserver2022-ps/International/Set-WinLanguageBarOption.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -49,7 +50,7 @@ If you do not specify this parameter, the cmdlet sets the language bar mode to t ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -65,7 +66,7 @@ If you do not specify this parameter, the cmdlet sets the language bar switch mo ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named diff --git a/docset/winserver2022-ps/International/Set-WinSystemLocale.md b/docset/winserver2022-ps/International/Set-WinSystemLocale.md index 45956346a2..1944cd90bd 100644 --- a/docset/winserver2022-ps/International/Set-WinSystemLocale.md +++ b/docset/winserver2022-ps/International/Set-WinSystemLocale.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -45,7 +46,7 @@ Specifies a system locale. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 diff --git a/docset/winserver2022-ps/International/Set-WinUILanguageOverride.md b/docset/winserver2022-ps/International/Set-WinUILanguageOverride.md index 3475eeaa61..357ce559cf 100644 --- a/docset/winserver2022-ps/International/Set-WinUILanguageOverride.md +++ b/docset/winserver2022-ps/International/Set-WinUILanguageOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -50,7 +51,7 @@ Specifies a language. ```yaml Type: CultureInfo Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 0 diff --git a/docset/winserver2022-ps/International/Set-WinUserLanguageList.md b/docset/winserver2022-ps/International/Set-WinUserLanguageList.md index 67f418f570..9b1a0b86d7 100644 --- a/docset/winserver2022-ps/International/Set-WinUserLanguageList.md +++ b/docset/winserver2022-ps/International/Set-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp @@ -82,7 +83,7 @@ Accept wildcard characters: False ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -97,7 +98,7 @@ Specifies a language list. ```yaml Type: System.Collections.Generic.List`1[Microsoft.InternationalSettings.Commands.WinUserLanguage] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -129,19 +130,19 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Generic.List You can pipe 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: +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 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). +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. +The name of the language in the language itself. - **English name** (LP database) (READ). -The name of the language in English. +The name of the language in English. - **Localized name** (LP database) (READ). -The name of the language in the current Windows display language. +The name of the language in the current Windows display language. - **Script** (LP database) (READ). -The writing system of the 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). diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration similarity index 100% rename from docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md rename to docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration diff --git a/docset/winserver2022-ps/SmbShare/Grant-SmbClientAccessToServer.md b/docset/winserver2022-ps/SmbShare/Grant-SmbClientAccessToServer.md index 70e4a35b8e..ee44abbbd1 100644 --- a/docset/winserver2022-ps/SmbShare/Grant-SmbClientAccessToServer.md +++ b/docset/winserver2022-ps/SmbShare/Grant-SmbClientAccessToServer.md @@ -1,7 +1,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: SmbClientAccessToServer +Module Name: SmbShare ms.date: 02/22/2024 online version: https://learn.microsoft.com/powershell/module/smbshare/grant-smbclientaccesstoserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 diff --git a/docset/winserver2025-ps/International/Copy-UserInternationalSettingsToSystem.md b/docset/winserver2025-ps/International/Copy-UserInternationalSettingsToSystem.md index 62d1c4556c..ad2a5fb7b6 100644 --- a/docset/winserver2025-ps/International/Copy-UserInternationalSettingsToSystem.md +++ b/docset/winserver2025-ps/International/Copy-UserInternationalSettingsToSystem.md @@ -2,13 +2,12 @@ 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 +Locale: en-US manager: aandrejs ms.author: ertorres ms.date: 09/08/2021 -ms.mktglfcycl: manage -ms.service: windows-11 -ms.sitesec: library -ms.topic: reference +Module Name: International +online version: https://learn.microsoft.com/powershell/module/international/copy-userinternationalsettingstosystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-UserInternationalSettingsToSystem --- @@ -84,3 +83,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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2025-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md index 3c8f492a3b..934378db64 100644 --- a/docset/winserver2025-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2025-ps/International/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2025-ps&wt.mc_id=ps-gethelp @@ -55,4 +56,3 @@ This cmdlet returns a Boolean value that reports the status of the **HTTP Accept [Set-WinAcceptLanguageFromLanguageListOptOut](./Set-WinAcceptLanguageFromLanguageListOptOut.md) [Get-WinUserLanguageList](./Get-WinUserLanguageList.md) - diff --git a/docset/winserver2025-ps/International/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2025-ps/International/Get-WinCultureFromLanguageListOptOut.md index 35ce288bc4..da00c636f1 100644 --- a/docset/winserver2025-ps/International/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2025-ps/International/Get-WinCultureFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Get-WinDefaultInputMethodOverride.md b/docset/winserver2025-ps/International/Get-WinDefaultInputMethodOverride.md index cb35d7bb29..f6df0f6e52 100644 --- a/docset/winserver2025-ps/International/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2025-ps/International/Get-WinDefaultInputMethodOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Get-WinHomeLocation.md b/docset/winserver2025-ps/International/Get-WinHomeLocation.md index 1d33ab68df..2c8bc69e2e 100644 --- a/docset/winserver2025-ps/International/Get-WinHomeLocation.md +++ b/docset/winserver2025-ps/International/Get-WinHomeLocation.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Get-WinLanguageBarOption.md b/docset/winserver2025-ps/International/Get-WinLanguageBarOption.md index 95d7f273b5..324c8f4ba0 100644 --- a/docset/winserver2025-ps/International/Get-WinLanguageBarOption.md +++ b/docset/winserver2025-ps/International/Get-WinLanguageBarOption.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Get-WinSystemLocale.md b/docset/winserver2025-ps/International/Get-WinSystemLocale.md index b93e7a39ce..178431e3ac 100644 --- a/docset/winserver2025-ps/International/Get-WinSystemLocale.md +++ b/docset/winserver2025-ps/International/Get-WinSystemLocale.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Get-WinUILanguageOverride.md b/docset/winserver2025-ps/International/Get-WinUILanguageOverride.md index 77095abe27..963920391f 100644 --- a/docset/winserver2025-ps/International/Get-WinUILanguageOverride.md +++ b/docset/winserver2025-ps/International/Get-WinUILanguageOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Get-WinUserLanguageList.md b/docset/winserver2025-ps/International/Get-WinUserLanguageList.md index 65687ed579..52f85d58b3 100644 --- a/docset/winserver2025-ps/International/Get-WinUserLanguageList.md +++ b/docset/winserver2025-ps/International/Get-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/New-WinUserLanguageList.md b/docset/winserver2025-ps/International/New-WinUserLanguageList.md index 4c4f9c4d7c..3225f108ac 100644 --- a/docset/winserver2025-ps/International/New-WinUserLanguageList.md +++ b/docset/winserver2025-ps/International/New-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Set-Culture.md b/docset/winserver2025-ps/International/Set-Culture.md index 5abca3dd29..09b35846af 100644 --- a/docset/winserver2025-ps/International/Set-Culture.md +++ b/docset/winserver2025-ps/International/Set-Culture.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2025-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md index 7a86674463..921d505445 100644 --- a/docset/winserver2025-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2025-ps/International/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2025-ps/International/Set-WinCultureFromLanguageListOptOut.md index 49ccf8b5d0..97eb07777d 100644 --- a/docset/winserver2025-ps/International/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2025-ps/International/Set-WinCultureFromLanguageListOptOut.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Set-WinDefaultInputMethodOverride.md b/docset/winserver2025-ps/International/Set-WinDefaultInputMethodOverride.md index 4e06d2e921..f4b72ebfdd 100644 --- a/docset/winserver2025-ps/International/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2025-ps/International/Set-WinDefaultInputMethodOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2025-ps&wt.mc_id=ps-gethelp @@ -56,7 +57,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 diff --git a/docset/winserver2025-ps/International/Set-WinHomeLocation.md b/docset/winserver2025-ps/International/Set-WinHomeLocation.md index 136f35f564..ae05319b09 100644 --- a/docset/winserver2025-ps/International/Set-WinHomeLocation.md +++ b/docset/winserver2025-ps/International/Set-WinHomeLocation.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Set-WinLanguageBarOption.md b/docset/winserver2025-ps/International/Set-WinLanguageBarOption.md index 0c51239dbc..721939dd43 100644 --- a/docset/winserver2025-ps/International/Set-WinLanguageBarOption.md +++ b/docset/winserver2025-ps/International/Set-WinLanguageBarOption.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Set-WinSystemLocale.md b/docset/winserver2025-ps/International/Set-WinSystemLocale.md index 5ee58251d8..4363b2d991 100644 --- a/docset/winserver2025-ps/International/Set-WinSystemLocale.md +++ b/docset/winserver2025-ps/International/Set-WinSystemLocale.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Set-WinUILanguageOverride.md b/docset/winserver2025-ps/International/Set-WinUILanguageOverride.md index 25c51d68c4..fa9294adbd 100644 --- a/docset/winserver2025-ps/International/Set-WinUILanguageOverride.md +++ b/docset/winserver2025-ps/International/Set-WinUILanguageOverride.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/International/Set-WinUserLanguageList.md b/docset/winserver2025-ps/International/Set-WinUserLanguageList.md index 4937cc951f..da3df14785 100644 --- a/docset/winserver2025-ps/International/Set-WinUserLanguageList.md +++ b/docset/winserver2025-ps/International/Set-WinUserLanguageList.md @@ -1,6 +1,7 @@ --- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml +Locale: en-US Module Name: International ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2025-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md b/docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration similarity index 100% rename from docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md rename to docset/winserver2025-ps/Microsoft.Windows.ServerManager.Migration/Microsoft.Windows.ServerManager.Migration diff --git a/docset/winserver2025-ps/SmbShare/Grant-SmbClientAccessToServer.md b/docset/winserver2025-ps/SmbShare/Grant-SmbClientAccessToServer.md index 75cb42da43..896a9852fb 100644 --- a/docset/winserver2025-ps/SmbShare/Grant-SmbClientAccessToServer.md +++ b/docset/winserver2025-ps/SmbShare/Grant-SmbClientAccessToServer.md @@ -1,7 +1,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: SmbClientAccessToServer +Module Name: SmbShare ms.date: 02/22/2024 online version: https://learn.microsoft.com/powershell/module/smbshare/grant-smbclientaccesstoserver?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0