Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix long dash to short version #300

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -85,7 +85,7 @@ The main tasks for this exercise are as follows:

1. In the Azure portal, search for and select **Subscriptions** and, from the **Subscriptions** blade, select the entry representing the Azure subscription you intend to use for this lab.
1. In the Azure portal, on the subscription blade, in the vertical menu on the left side, in the **Settings** section, select **Usage + quotas**.
1. On the **Azure Pass Sponsorship | Usage + quotas** blade, select the following drop down arrows from the top search bar:
1. On the **Azure Pass - Sponsorship | Usage + quotas** blade, select the following drop down arrows from the top search bar:

|**Setting**|**Value**|
|---|---|
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ The main tasks for this exercise are as follows:

**Note:** Requesting quota increase requires signing-in with multi-factor authentication (MFA). If you need to configure your account with MFA, refer to [Plan an Azure Active Directory Multi-Factor Authentication deployment](https://learn.microsoft.com/en-us/azure/active-directory/authentication/howto-mfa-getstarted).

1. On the **Azure Pass Sponsorship | Usage + quotas** blade, select **Region**, in the drop down list, select the checkbox next to the name of the Azure region you intend to use for this lab, select **Apply**, ensure that the **Compute** entry appears in the drop down list to the left of the **Region** entry, and, in the search box, type **Standard DSv3**.
1. On the **Azure Pass - Sponsorship | Usage + quotas** blade, select **Region**, in the drop down list, select the checkbox next to the name of the Azure region you intend to use for this lab, select **Apply**, ensure that the **Compute** entry appears in the drop down list to the left of the **Region** entry, and, in the search box, type **Standard DSv3**.
1. In the list of results, select the checkbox next to the **Standard DSv3 Family vCPUs** item, select the **Request quota increase** entry in the toolbar, and, in the drop down list, select **Enter a new limit**.
1. In the **Request quota increase** pane, in the **New limit** column text box, type **30**, and then select **Submit**.
1. If prompted, on the **Request quota increase** pane, select **Authenticate with Multi-Factory Authentication** and follow the prompts to authenticate.
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ The main tasks for this exercise are as follows:
1. Within the Bastion session to **az140-dc-vm11**, from the **Administrator: Windows PowerShell ISE** console, run the following to create an organizational unit that will host the computer objects of the Azure Virtual Desktop hosts:

```powershell
New-ADOrganizationalUnit 'WVDInfra' path 'DC=adatum,DC=com' -ProtectedFromAccidentalDeletion $false
New-ADOrganizationalUnit 'WVDInfra' -path 'DC=adatum,DC=com' -ProtectedFromAccidentalDeletion $false
```

1. From the **Administrator: Windows PowerShell ISE** console, run the following to identify the user principal name of the **aduser1** account:
Original file line number Diff line number Diff line change
@@ -155,7 +155,7 @@ The main tasks for this exercise are as follows:
$profilesParentKey = 'HKLM:\SOFTWARE\FSLogix'
$profilesChildKey = 'Profiles'
$fileShareName = 'az140-22a-profiles'
New-Item -Path $profilesParentKey -Name $profilesChildKey Force
New-Item -Path $profilesParentKey -Name $profilesChildKey -Force
New-ItemProperty -Path $profilesParentKey\$profilesChildKey -Name 'Enabled' -PropertyType DWord -Value 1
New-ItemProperty -Path $profilesParentKey\$profilesChildKey -Name 'VHDLocations' -PropertyType MultiString -Value "\\$storageAccountName.file.core.windows.net\$fileShareName"
```
@@ -199,7 +199,7 @@ and select **OK** to close the group **Properties** window.
$profilesChildKey = 'Profiles'
$fileShareName = 'az140-22a-profiles'
Invoke-Command -ComputerName $server -ScriptBlock {
New-Item -Path $using:profilesParentKey -Name $using:profilesChildKey Force
New-Item -Path $using:profilesParentKey -Name $using:profilesChildKey -Force
New-ItemProperty -Path $using:profilesParentKey\$using:profilesChildKey -Name 'Enabled' -PropertyType DWord -Value 1
New-ItemProperty -Path $using:profilesParentKey\$using:profilesChildKey -Name 'VHDLocations' -PropertyType MultiString -Value "\\$storageAccountName.file.core.windows.net\$using:fileShareName"
}
Original file line number Diff line number Diff line change
@@ -108,7 +108,7 @@ The main tasks for this exercise are as follows:
$profilesParentKey = 'HKLM:\SOFTWARE\FSLogix'
$profilesChildKey = 'Profiles'
$fileShareName = 'az140-22-profiles'
New-Item -Path $profilesParentKey -Name $profilesChildKey Force
New-Item -Path $profilesParentKey -Name $profilesChildKey -Force
New-ItemProperty -Path $profilesParentKey\$profilesChildKey -Name 'Enabled' -PropertyType DWord -Value 1
New-ItemProperty -Path $profilesParentKey\$profilesChildKey -Name 'VHDLocations' -PropertyType MultiString -Value "\\$storageAccountName.file.core.windows.net\$fileShareName"
```
@@ -158,7 +158,7 @@ The main tasks for this exercise are as follows:
$fileShareName = 'az140-22-profiles'
foreach ($server in $servers) {
Invoke-Command -ComputerName $server -ScriptBlock {
New-Item -Path $using:profilesParentKey -Name $using:profilesChildKey Force
New-Item -Path $using:profilesParentKey -Name $using:profilesChildKey -Force
New-ItemProperty -Path $using:profilesParentKey\$using:profilesChildKey -Name 'Enabled' -PropertyType DWord -Value 1
New-ItemProperty -Path $using:profilesParentKey\$using:profilesChildKey -Name 'VHDLocations' -PropertyType MultiString -Value "\\$using:storageAccountName.file.core.windows.net\$using:fileShareName"
}