Skip to content

Commit 6038eb3

Browse files
committed
Bug 71298
1 parent 7009930 commit 6038eb3

14 files changed

+34
-55
lines changed

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmContainerServiceAgentPoolProfile.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This command adds a container service agent pool profile to the local container
3333

3434
### -ContainerService
3535
Specifies the container service object to which this cmdlet adds an agent pool profile.
36-
To obtain a **ContainerService** object, use the New-AzureRmContainerServiceConfig cmdlet.
36+
To obtain a **ContainerService** object, use the [New-AzureRmContainerServiceConfig](./New-AzureRmContainerServiceConfig.md) cmdlet.
3737

3838
```yaml
3939
Type: ContainerService
@@ -154,5 +154,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
154154
[New-AzureRmContainerServiceConfig](./New-AzureRmContainerServiceConfig.md)
155155
156156
[Remove-AzureRmContainerServiceAgentPoolProfile](./Remove-AzureRmContainerServiceAgentPoolProfile.md)
157-
158-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmImageDataDisk.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ PS C:\> New-AzureRmImage -Image $imageConfig -ImageName 'ImageName01' -ResourceG
3636

3737
The first command creates an image object, and then stores it in the $imageConfig variable.
3838

39-
The next three commands assign paths of os disk and two data disks to the $osDiskVhdUri, $dataDiskVhdUri1, and $dataDiskVhdUri2 variables.
39+
The next three commands assign paths of operating system disk and two data disks to the $osDiskVhdUri, $dataDiskVhdUri1, and $dataDiskVhdUri2 variables.
4040
This approach is only for readability of the following commands.
4141

42-
The next three commands each adds an os disk and two data disks to the image stored in $imageConfig.
42+
The next three commands each adds an operating system disk and two data disks to the image stored in $imageConfig.
4343
The URI of each disk is stored in $osDiskVhdUri, $dataDiskVhdUri1, and $dataDiskVhdUri2.
4444

45-
The final command creates an image named 'ImageName01' in resource group 'ResourceGroup01'.
45+
The final command creates an image named ImageName01 in resource group ResourceGroup01.
4646

4747
## PARAMETERS
4848

4949
### -BlobUri
50-
Specifies the Uri of the blob.
50+
Specifies the link, as a URI, of the blob.
5151

5252
```yaml
5353
Type: String
@@ -78,7 +78,7 @@ Accept wildcard characters: False
7878
```
7979
8080
### -DiskSizeGB
81-
Specifies the size of the disk in GB.
81+
Specifies the size of the disk in Gigabytes (GB).
8282
8383
```yaml
8484
Type: Int32
@@ -200,4 +200,3 @@ System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, Pub
200200
## NOTES
201201

202202
## RELATED LINKS
203-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVMAdditionalUnattendContent.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ Accept wildcard characters: False
9191
9292
### -VM
9393
Specifies the virtual machine object that this cmdlet modifies.
94-
To obtain a virtual machine object, use the Get-AzureRmVM cmdlet.
95-
Create a virtual machine object by using the New-AzureRmVMConfig cmdlet.
94+
To obtain a virtual machine object, use the [Get-AzureRmVM](./Get-AzureRmVM.md) cmdlet.
95+
Create a virtual machine object by using the [New-AzureRmVMConfig](./New-AzureRmVMConfig.md) cmdlet.
9696
9797
```yaml
9898
Type: PSVirtualMachine
@@ -122,5 +122,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
122122
[Set-AzureRmVMOperatingSystem](./Set-AzureRmVMOperatingSystem.md)
123123
124124
[New-AzureRmVMConfig](./New-AzureRmVMConfig.md)
125-
126-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVMDataDisk.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ PS C:\> Add-AzureRmVMDataDisk -VM $VirtualMachine -Name "disk1" -VhdUri "https:/
5353
PS C:\> Update-AzureRmVM -ResourceGroupName "ResourceGroup11" -VM $VirtualMachine
5454
```
5555

56-
The first command gets the virtual machine named VirtualMachine07 by using the **Get-AzureRmVM** cmdlet.
56+
The first command gets the virtual machine named VirtualMachine07 by using the [Get-AzureRmVM](./Get-AzureRmVM.md) cmdlet.
5757
The command stores the virtual machine in the $VirtualMachine variable.
5858

5959
The second command adds a data disk to the virtual machine stored in $VirtualMachine.
@@ -259,8 +259,8 @@ Accept wildcard characters: False
259259
260260
### -VM
261261
Specifies the local virtual machine object to which to add a data disk.
262-
You can use the Get-AzureRmVM cmdlet to obtain a virtual machine object.
263-
You can use the New-AzureRmVMConfig cmdlet to create a virtual machine object.
262+
You can use the **Get-AzureRmVM** cmdlet to obtain a virtual machine object.
263+
You can use the **New-AzureRmVMConfig** cmdlet to create a virtual machine object.
264264
265265
```yaml
266266
Type: PSVirtualMachine

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVMNetworkInterface.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The final command updates the state of the virtual machine stored in $VirtualMac
5959

6060
### -Id
6161
Specifies the ID of a network interface to add to a virtual machine.
62-
You can use the Get-AzureRmNetworkInterface cmdlet to obtain a network interface.
62+
You can use the [Get-AzureRmNetworkInterface](./Get-AzureRmNetworkInterface.md) cmdlet to obtain a network interface.
6363

6464
```yaml
6565
Type: String
@@ -105,8 +105,8 @@ Accept wildcard characters: False
105105
106106
### -VM
107107
Specifies a local virtual machine object to which to add a network interface.
108-
To create a virtual machine, use the New-AzureRmVMConfig cmdlet.
109-
To obtain an existing virtual machine, use the Get-AzureRmVM cmdlet.
108+
To create a virtual machine, use the **New-AzureRmVMConfig** cmdlet.
109+
To obtain an existing virtual machine, use the **Get-AzureRmVM** cmdlet.
110110
111111
```yaml
112112
Type: PSVirtualMachine
@@ -136,5 +136,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
136136
[Get-AzureRmVM](./Get-AzureRmVM.md)
137137
138138
[Get-AzureRmAvailabilitySet](./Get-AzureRmAvailabilitySet.md)
139-
140-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVMSecret.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The **Add-AzureRmVMSecret** cmdlet adds a secret to a virtual machine.
2222
This value lets you add a certificate to the virtual machine.
2323
The secret must be stored in a Key Vault.
2424
For more information about Key Vault, see [What is Azure Key Vault?](https://azure.microsoft.com/en-us/documentation/articles/key-vault-whatis/).
25-
For more information about the cmdlets, see [Azure Key Vault Cmdlets](https://msdn.microsoft.com/library/azure/dn868052.aspx) in the Microsoft Developer Network library or the Set-AzureKeyVaultSecret cmdlet.
25+
For more information about the cmdlets, see [Azure Key Vault Cmdlets](https://msdn.microsoft.com/library/azure/dn868052.aspx) in the Microsoft Developer Network library or the [Set-AzureKeyVaultSecret](./Set-AzureKeyVaultSecret.md) cmdlet.
2626

2727
## EXAMPLES
2828

@@ -44,7 +44,7 @@ The second command creates a credential object by using the Get-Credential cmdle
4444
The command prompts you for a user name and password.
4545
For more information, type `Get-Help Get-Credential`.
4646

47-
The third command uses the Set-AzureRmVMOperatingSystem cmdlet to configure the virtual machine stored in $VirtualMachine.
47+
The third command uses the **Set-AzureRmVMOperatingSystem** cmdlet to configure the virtual machine stored in $VirtualMachine.
4848

4949
The fourth command assigns a source vault ID to the $SourceVaultId variable for later use.
5050
The command assumes that the $SubscriptionId variable has an appropriate value.
@@ -122,8 +122,8 @@ Accept wildcard characters: False
122122
123123
### -VM
124124
Specifies the virtual machine object that this cmdlet modifies.
125-
To obtain a virtual machine object, use the Get-AzureRmVM cmdlet.
126-
You can use the New-AzureRmVMConfig cmdlet to create a virtual machine object.
125+
To obtain a virtual machine object, use the [Get-AzureRmVM](./Get-AzureRmVM.md) cmdlet.
126+
You can use the [New-AzureRmVMConfig](./New-AzureRmVMConfig.md) cmdlet to create a virtual machine object.
127127
128128
```yaml
129129
Type: PSVirtualMachine

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVMSshPublicKey.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ Accept wildcard characters: False
6969
7070
### -VM
7171
Specifies the virtual machine object that this cmdlet modifies.
72-
To obtain a virtual machine object, use the Get-AzureRmVM cmdlet.
73-
You can use the New-AzureRmVMConfig cmdlet to create a virtual machine object.
72+
To obtain a virtual machine object, use the [Get-AzureRmVM](./Get-AzureRmVM.md) cmdlet.
73+
You can use the [New-AzureRmVMConfig](./New-AzureRmVMConfig.md) cmdlet to create a virtual machine object.
7474
7575
```yaml
7676
Type: PSVirtualMachine
@@ -98,5 +98,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
9898
[Get-AzureRmVM](./Get-AzureRmVM.md)
9999
100100
[New-AzureRmVMConfig](./New-AzureRmVMConfig.md)
101-
102-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVmssAdditionalUnattendContent.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Accept wildcard characters: False
103103
104104
### -VirtualMachineScaleSet
105105
Specify the virtual machine **Scale Set** object.
106-
You can use the New-AzureRmVmssConfig cmdlet to create the object.
106+
You can use the [New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md) cmdlet to create the object.
107107
108108
```yaml
109109
Type: VirtualMachineScaleSet
@@ -159,5 +159,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
159159
## RELATED LINKS
160160
161161
[New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md)
162-
163-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVmssDataDisk.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Accept wildcard characters: False
127127
128128
### -VirtualMachineScaleSet
129129
Specify the VMSS object.
130-
You can use the New-AzureRmVmssConfig cmdlet to create the object.
130+
You can use the [New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md) cmdlet to create the object.
131131
132132
```yaml
133133
Type: VirtualMachineScaleSet
@@ -192,4 +192,3 @@ System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.StorageAccountTypes
192192
## NOTES
193193

194194
## RELATED LINKS
195-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVmssDiagnosticsExtension.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Accept wildcard characters: False
110110
111111
### -TypeHandlerVersion
112112
Specifies the version of the extension to use for this VMSS.
113-
To obtain the version, run the Get-AzureRmVMExtensionImage cmdlet with a value of Microsoft.Azure.Diagnostics for the *PublisherName* parameter and IaaSDiagnostics for the *Type* parameter.
113+
To obtain the version, run the [Get-AzureRmVMExtensionImage](./Get-AzureRmVMExtensionImage.md) cmdlet with a value of Microsoft.Azure.Diagnostics for the *PublisherName* parameter and IaaSDiagnostics for the *Type* parameter.
114114
115115
```yaml
116116
Type: String
@@ -126,7 +126,7 @@ Accept wildcard characters: False
126126
127127
### -VirtualMachineScaleSet
128128
Specify the VMSS object.
129-
You can use the New-AzureRmVmssConfig cmdlet to create the object.
129+
You can use the [New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md) cmdlet to create the object.
130130
131131
```yaml
132132
Type: VirtualMachineScaleSet
@@ -157,7 +157,6 @@ Accept wildcard characters: False
157157
158158
### -WhatIf
159159
Shows what would happen if the cmdlet runs.
160-
161160
The cmdlet is not run.
162161
163162
```yaml

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVmssExtension.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Accept wildcard characters: False
8282
### -Publisher
8383
Specifies the name of the extension publisher.
8484
The publisher provides a name when the publisher registers an extension.
85-
This can use the Get-AzureRmVMImagePublisher cmdlet to get the publisher.
85+
This can use the [Get-AzureRmVMImagePublisher](./Get-AzureRmVMImagePublisher.md) cmdlet to get the publisher.
8686
8787
```yaml
8888
Type: String
@@ -114,7 +114,7 @@ Accept wildcard characters: False
114114
115115
### -Type
116116
Specifies the extension type.
117-
You can use the Get-AzureRmVMExtensionImageType cmdlet to get the extension type.
117+
You can use the [Get-AzureRmVMExtensionImageType](./Get-AzureRmVMExtensionImageType.md) cmdlet to get the extension type.
118118
119119
```yaml
120120
Type: String
@@ -130,7 +130,7 @@ Accept wildcard characters: False
130130
131131
### -TypeHandlerVersion
132132
Specifies the version of the extension to use for this virtual machine.
133-
You can use the Get-AzureRmVMExtensionImage cmdlet to get the version of the extension.
133+
You can use the [Get-AzureRmVMExtensionImage](./Get-AzureRmVMExtensionImage.md) cmdlet to get the version of the extension.
134134
135135
```yaml
136136
Type: String
@@ -146,7 +146,7 @@ Accept wildcard characters: False
146146
147147
### -VirtualMachineScaleSet
148148
Specify the VMSS object.
149-
You can use the New-AzureRmVmssConfig to create the object.
149+
You can use the [New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md) to create the object.
150150
151151
```yaml
152152
Type: VirtualMachineScaleSet
@@ -213,5 +213,3 @@ This cmdlet does not generate any output.
213213
[Get-AzureRmVMExtensionImage](./Get-AzureRmVMExtensionImage.md)
214214
215215
[New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md)
216-
217-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVmssNetworkInterfaceConfiguration.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Accept wildcard characters: False
9494
9595
### -VirtualMachineScaleSet
9696
Specifies the VMSS object.
97-
You can use the New-AzureRmVmssConfig cmdlet to create the object.
97+
You can use the [New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md) cmdlet to create the object.
9898
9999
```yaml
100100
Type: VirtualMachineScaleSet
@@ -153,5 +153,3 @@ This cmdlet does not generate any output.
153153
## RELATED LINKS
154154
155155
[New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md)
156-
157-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVmssSecret.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Add-AzureRmVmssSecret [-VirtualMachineScaleSet] <VirtualMachineScaleSet> [[-Sour
2020
## DESCRIPTION
2121
The **Add-AzureRmVmssSecret** cmdlet adds a secret to the Virtual Machine Scale Set (VMSS).
2222
The secret must be stored in an Azure Key Vault.
23-
For more information relating to Key Vault, see What is Azure Key Vault?https://azure.microsoft.com/en-us/documentation/articles/key-vault-whatis/ (https://azure.microsoft.com/en-us/documentation/articles/key-vault-whatis/).
24-
For more information about the cmdlets, see Azure Key Vault Cmdletshttps://msdn.microsoft.com/library/azure/dn868052.aspx(https://msdn.microsoft.com/library/azure/dn868052.aspx) in the Microsoft Developer Network library or the Set-AzureKeyVaultSecret cmdlet.
23+
For more information relating to Key Vault, see [What is Azure Key Vault?](https://azure.microsoft.com/en-us/documentation/articles/key-vault-whatis/) (https://azure.microsoft.com/en-us/documentation/articles/key-vault-whatis/).
24+
For more information about the cmdlets, see [Azure Key Vault Cmdlets](https://msdn.microsoft.com/library/azure/dn868052.aspx) (https://msdn.microsoft.com/library/azure/dn868052.aspx) in the Microsoft Developer Network library or the [Set-AzureKeyVaultSecret](./Set-AzureKeyVaultSecret.md) cmdlet.
2525

2626
## EXAMPLES
2727

@@ -60,7 +60,7 @@ Accept wildcard characters: False
6060
6161
### -VaultCertificate
6262
Specifies the Vault **Certificate** object that contains the certificate URL and certificate name.
63-
You can use the New-AzureRmVmssVaultCertificateConfig cmdlet to create this object.
63+
You can use the [New-AzureRmVmssVaultCertificateConfig](./New-AzureRmVmssVaultCertificateConfig.md) cmdlet to create this object.
6464
6565
```yaml
6666
Type: VaultCertificate[]
@@ -76,7 +76,7 @@ Accept wildcard characters: False
7676
7777
### -VirtualMachineScaleSet
7878
Specifies the VMSS object.
79-
You can use the New-AzureRmVmssConfig cmdlet to create this object.
79+
You can use the [New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md) cmdlet to create this object.
8080
8181
```yaml
8282
Type: VirtualMachineScaleSet
@@ -137,5 +137,3 @@ This cmdlet does not generate any output.
137137
[New-AzureRmVmssVaultCertificateConfig](./New-AzureRmVmssVaultCertificateConfig.md)
138138
139139
[New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md)
140-
141-

src/ResourceManager/Compute/Commands.Compute/help/Add-AzureRmVmssSshPublicKey.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Accept wildcard characters: False
6868
6969
### -VirtualMachineScaleSet
7070
Specifies the VMSS object.
71-
You can use the New-AzureRmVmssConfig cmdlet to create the object.
71+
You can use the [New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md) cmdlet to create the object.
7272
7373
```yaml
7474
Type: VirtualMachineScaleSet
@@ -127,5 +127,3 @@ This cmdlet does not generate any output.
127127
## RELATED LINKS
128128
129129
[New-AzureRmVmssConfig](./New-AzureRmVmssConfig.md)
130-
131-

0 commit comments

Comments
 (0)