Skip to content

Commit bfa2ffd

Browse files
committed
Line edits2
1 parent 33e88d3 commit bfa2ffd

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

learn-pr/azure/create-windows-virtual-machine-in-azure/8-summary.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ quiz:
1818
choices:
1919
- content: "HTTPS"
2020
isCorrect: false
21-
explanation: "The remote-desktop connection does not use the HTTPS protocol."
21+
explanation: "The remote-desktop connection doesn't use the HTTPS protocol."
2222
- content: "SSH (22)"
2323
isCorrect: false
24-
explanation: "The remote-desktop connection does not use SSH."
24+
explanation: "The remote-desktop connection doesn't use SSH."
2525
- content: "RDP (3389)"
2626
isCorrect: true
2727
explanation: "The Remote Desktop Protocol (RDP) uses port 3389 by default, so this port is the standard port you would open if you wanted to use an RDP client to administer your Windows virtual machines."
@@ -32,18 +32,18 @@ quiz:
3232
explanation: "You can store data files on the OS disk; however, you may want to optimize that disk for OS performance by selecting a Premium SSD type, which could be an expensive way to store your data."
3333
- content: "Temporary disk (D:)"
3434
isCorrect: false
35-
explanation: "The temporary disk is not persistent. You should not write important data to this disk."
35+
explanation: "The temporary disk isn't persistent. You shouldn't write important data to this disk."
3636
- content: "Attached data disk"
3737
isCorrect: true
3838
explanation: "Dedicated data disks are considered the best place to store application data files. They can be larger than OS disks and you can optimize them for the cost and performance characteristics appropriate for your data."
3939
- content: "What is the final rule that is applied in every Network Security Group?"
4040
choices:
4141
- content: "Allow All"
4242
isCorrect: false
43-
explanation: "This could allow unwanted traffic to gain access if your rules are not configured correctly."
43+
explanation: "This could allow unwanted traffic to gain access if your rules aren't configured correctly."
4444
- content: "Deny All"
4545
isCorrect: true
4646
explanation: "This is a safe choice. It blocks all traffic that you don't specifically allow."
4747
- content: "You configure the final rule to your needs."
4848
isCorrect: false
49-
explanation: "The final rule is added automatically when the security group is created, and you cannot change it."
49+
explanation: "The final rule is added automatically when the security group is created, and you can't change it."

learn-pr/azure/create-windows-virtual-machine-in-azure/includes/2-create-a-windows-virtual-machine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ By default, two virtual hard disks (VHDs) will be created for your Windows VM:
7272
1. **A Temporary disk**: This provides temporary storage for the OS or any apps. It's configured as the D: drive by default and is sized based on the VM size, making it an ideal location for the Windows paging file.
7373

7474
> [!WARNING]
75-
> The temporary disk is not persistent. You should only write data to this disk that you're willing to lose at any time.
75+
> The temporary disk isn't persistent. You should only write data to this disk that you're willing to lose at any time.
7676
7777
#### What about data?
7878

learn-pr/azure/create-windows-virtual-machine-in-azure/includes/5-exercise-connect-to-a-windows-vm-using-rdp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To connect to an Azure VM with an RDP client, you'll need:
1717
- Public IP address of the VM (or private if the VM is configured to connect to your network)
1818
- Port number
1919

20-
You can enter this information into the RDP client, or download a pre-configured **RDP** file.
20+
You can enter this information into the RDP client, or download a preconfigured **RDP** file.
2121

2222
> [!NOTE]
2323
> An **RDP** file is a text file that contains a set of name/value pairs that define the connection parameters for an RDP client to connect to a remote computer using the Remote Desktop Protocol.
@@ -82,7 +82,7 @@ We have two approaches we can use to install software. First, this VM is connect
8282

8383
With access to your local drive, you can copy the files for the custom software onto the VM and install the software. We won't actually do that because it's just a simulated scenario, but you can imagine how it would work.
8484

85-
The more interesting thing to observe in the list of drives is what is *missing*. Notice that our **Data** drive is not present. Azure added a VHD, but didn't initialize it.
85+
The more interesting thing to observe in the list of drives is what is *missing*. Notice that our **Data** drive isn't present. Azure added a VHD, but didn't initialize it.
8686

8787
## Initialize data disks
8888

0 commit comments

Comments
 (0)