Skip to content

Commit 445971b

Browse files
authored
Merge branch 'main' into msbemba-patch-1-6
2 parents e1f9992 + 02c14ba commit 445971b

File tree

81 files changed

+6207
-81
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+6207
-81
lines changed

docset/docs-conceptual/winserver2016-ps/get-started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ computer. For more information, see
7171
| Iscsi | [iSCSI](/powershell/module/iscsi) |
7272
| IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) |
7373
| KDS | [Key Distribution Server](/powershell/module/kds) |
74-
| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) |
7574
| MMAgent | [Memory Management Agent](/powershell/module/mmagent) |
7675
| Mpio | [MPIO](/powershell/module/mpio) |
7776
| MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) |

docset/docs-conceptual/winserver2019-ps/get-started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ computer. For more information, see
7070
| Iscsi | [iSCSI](/powershell/module/iscsi) |
7171
| IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) |
7272
| KDS | [Key Distribution Server](/powershell/module/kds) |
73-
| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) |
7473
| MMAgent | [Memory Management Agent](/powershell/module/mmagent) |
7574
| Mpio | [MPIO](/powershell/module/mpio) |
7675
| MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) |

docset/docs-conceptual/winserver2022-ps/get-started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ computer. For more information, see
7070
| Iscsi | [iSCSI](/powershell/module/iscsi) |
7171
| IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) |
7272
| KDS | [Key Distribution Server](/powershell/module/kds) |
73-
| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) |
7473
| MMAgent | [Memory Management Agent](/powershell/module/mmagent) |
7574
| Mpio | [MPIO](/powershell/module/mpio) |
7675
| MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) |

docset/winserver2012-ps/activedirectory/Move-ADObject.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType <ADAuthType>] [-Credential <PSCred
1919
```
2020

2121
## DESCRIPTION
22-
The Move-ADObject cmdlet moves an object or a container of objects from one container to another or from one domain to another.
22+
The **Move-ADObject** cmdlet moves an object or a container of objects from one container to another or from one domain to another within the same forest.
2323

2424
The Identity parameter specifies the Active Directory object or container to move.
2525
You can identify an object or container by its distinguished name (DN) or GUID.
@@ -30,6 +30,8 @@ You can also use the Get-ADGroup, Get-ADUser, Get-ADComputer, Get-ADServiceAccou
3030
The TargetPath parameter must be specified.
3131
This parameter identifies the new location for the object or container.
3232

33+
The cmdlet also moves the password when a user or computer object is moved across domains within a forest.
34+
3335
## EXAMPLES
3436

3537
### -------------------------- EXAMPLE 1 --------------------------

docset/winserver2012-ps/printmanagement/Get-PrintJob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Accept wildcard characters: False
104104
105105
### -ID
106106
Specifies the ID of the print job to retrieve.
107-
You can use wildcard characters.
107+
You cannot use wildcard characters.
108108
109109
```yaml
110110
Type: UInt32

docset/winserver2012-ps/smbshare/New-SmbShare.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ The **New-SMBShare** cmdlet exposes a file system folder to remote clients as a
2525

2626
To delete a share that was created by this cmdlet, use the Remove-SMBShare cmdlet.
2727

28+
> [!NOTE]
29+
> The **WhatIf** parameter does not work with this cmdlet.
30+
2831
## EXAMPLES
2932

3033
### EXAMPLE 1
@@ -376,8 +379,6 @@ Accept wildcard characters: False
376379
Shows what would happen if the cmdlet runs.
377380
The cmdlet is not run.
378381

379-
NOTE: The WhatIf switch does not work with this cmdlet.
380-
381382
```yaml
382383
Type: SwitchParameter
383384
Parameter Sets: (All)

docset/winserver2012-ps/storage/Get-Partition.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This cmdlet will return a Volume object or a set of Volume objects given paramet
5050
PS C:\>Get-Partition
5151
```
5252

53-
This example return all partitions, on all disks.
53+
This example returns all partitions, on all disks.
5454

5555
### EXAMPLE 2
5656
```
@@ -62,7 +62,7 @@ PartitionNumber DriveLetter Offset Size
6262
1 H 1048576 298.09 GB IFS
6363
```
6464

65-
This example return all partitions on disk 5.
65+
This example returns all partitions on disk 5.
6666

6767
### EXAMPLE 3
6868
```
@@ -74,7 +74,7 @@ PartitionNumber DriveLetter Offset Size
7474
2 C 368050176 465.42 GB IFS
7575
```
7676

77-
This example partition associated with the volume for drive letter C.
77+
This example returns partitions associated with the volume for drive letter C.
7878

7979
### EXAMPLE 4
8080
```

docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Accept wildcard characters: False
4848
```
4949
5050
### -Password
51-
Name of the user account that is used to access the central certificate store.
51+
Password of the user account that is used to access the central certificate store.
5252
5353
```yaml
5454
Type: String

docset/winserver2012r2-ps/activedirectory/Move-ADObject.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType <ADAuthType>] [-Credential <PSCred
2121
```
2222

2323
## DESCRIPTION
24-
The **Move-ADObject** cmdlet moves an object or a container of objects from one container to another or from one domain to another.
24+
The **Move-ADObject** cmdlet moves an object or a container of objects from one container to another or from one domain to another within the same forest.
2525

2626
The **Identity** parameter specifies the Active Directory object or container to move.
2727
You can identify an object or container by its distinguished name or GUID.
@@ -31,6 +31,7 @@ You can also use the Get-ADGroup, Get-ADUser, Get-ADComputer, Get-ADServiceAccou
3131

3232
The **TargetPath** parameter must be specified.
3333
This parameter identifies the new location for the object or container.
34+
The cmdlet also moves the password when a user or computer object is moved across domains within a forest.
3435

3536
## EXAMPLES
3637

docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Accept wildcard characters: False
103103
104104
### -ID
105105
Specifies the ID of the print job to retrieve.
106-
You can use wildcard characters.
106+
You cannot use wildcard characters.
107107
108108
```yaml
109109
Type: UInt32

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy