Skip to content

Commit 7e51ad8

Browse files
committed
Fixed review feedback
1 parent ea637a6 commit 7e51ad8

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

articles/lab-services/classroom-labs/how-to-windows-shutdown.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Even with these cost controls, there are situations where a Windows VM may unexp
2626

2727
When a student connects to their VM using RDP, they may inadvertently leave the RDP window open. As long as the RDP window remains open, the **automatic shutdown on disconnect** setting will never take effect since it is only triggered after the RDP session is disconnected.
2828

29-
- **Windows shutdown is used to turn off the VM**
29+
- **Windows shutdown command is used to turn off the VM**
3030

31-
A student may use Windows shutdown button, or other shutdown mechanisms provided within Windows, to turn off the VM instead of using [Azure Lab Services' stop button](https://docs.microsoft.com/azure/lab-services/classroom-labs/how-to-use-classroom-lab#start-or-stop-the-vm). When this happens, from the perspective of Azure Lab Services, the VM is still running.
31+
A student may use Windows shutdown button, or other shutdown mechanisms provided within Windows, to turn off the VM instead of using [Azure Lab Services' stop button](https://docs.microsoft.com/azure/lab-services/classroom-labs/how-to-use-classroom-lab#start-or-stop-the-vm). When this happens, from the perspective of Azure Lab Services, the VM is still being used.
3232

3333
To help you prevent these situations from happening, this guide provides steps to automatically shutdown an idle Windows VM and remove the Windows shutdown command from the **Start** menu.
3434

@@ -54,7 +54,7 @@ To set the RDP session idle time limit, you can connect to the template VM and e
5454

5555
```powershell
5656
# The MaxIdleTime is in milliseconds; by default, this script sets MaxIdleTime to 15 minutes.
57-
$maxIdleTime = 900000
57+
$maxIdleTime = 15 * 60 * 90
5858
5959
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" -Name "MaxIdleTime" -Value $maxIdleTime -Force
6060
```
@@ -105,4 +105,4 @@ Or, you can choose to follow these manual steps using the template VM:
105105
![Shutdown command](../media/how-to-windows-shutdown/start-menu.png)
106106

107107
## Next steps
108-
See the article on how to prepare a Windows template VM: [Guide to setting up a Windows template machine in Azure Lab ddServices](how-to-prepare-windows-template.md)
108+
See the article on how to prepare a Windows template VM: [Guide to setting up a Windows template machine in Azure Lab Services](how-to-prepare-windows-template.md)

articles/lab-services/classroom-labs/setup-guide.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ There are a variety of compute sizes that you can choose from that includes:
4747
- GPU sizes so that your students can use computer-intensive types of applications, such as for Artificial Intelligence and Machine Learning.
4848

4949
Refer to the guide on [VM sizing](https://docs.microsoft.com/azure/lab-services/classroom-labs/administrator-guide#vm-sizing) to see the complete list of available compute sizes.
50-
'
50+
5151
> [!NOTE]
5252
> Depending on the region that your lab will be created in, you may see fewer compute sizes available since this varies by region. Our general recommendation is to select the smallest compute size that is closest to your needs. With Azure Lab Services, you can set up a new lab with a different compute capacity later if needed.
5353
@@ -150,5 +150,4 @@ See the following articles:
150150

151151
- [Track usage of a classroom lab](tutorial-track-usage.md)
152152

153-
- [Access a classroom lab](tutorial-connect-virtual-machine-classroom-lab.md)
154-
""'''''''
153+
- [Access a classroom lab](tutorial-connect-virtual-machine-classroom-lab.md)

0 commit comments

Comments
 (0)