Skip to content

Commit 5c66539

Browse files
authored
Merge pull request #267953 from dknappettmsft/avd-custom-image-fslogix-exclusions
AVD added link to FSLogix antivirus exclusions and updated Storage Se…
2 parents 2bb88f1 + 39bacd3 commit 5c66539

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

articles/virtual-desktop/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
- name: Set up golden image in Azure
271271
displayName: session hosts, virtual machines, vms, vhd, vhdx
272272
href: set-up-golden-image.md
273-
- name: Set up a master VHD image
273+
- name: Prepare and customize a VHD image
274274
displayName: session hosts, virtual machines, vms, vhd, vhdx
275275
href: set-up-customize-master-image.md
276276
- name: Install Office on a master VHD image
-293 KB
Binary file not shown.

articles/virtual-desktop/set-up-customize-master-image.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,17 @@ If you're installing Microsoft 365 Apps for enterprise and OneDrive on your VM,
6666

6767
If your users need to access certain LOB applications, we recommend you install them after completing this section's instructions.
6868

69-
### Set up user profile container (FSLogix)
69+
### Set up FSLogix profile container
7070

7171
To include the FSLogix container as part of the image, follow the instructions in [Create a profile container for a host pool using a file share](create-host-pools-user-profile.md#configure-the-fslogix-profile-container). You can test the functionality of the FSLogix container with [this quickstart](/fslogix/configure-cloud-cache-tutorial/).
7272

73-
### Configure Windows Defender
73+
### Configure antivirus exclusions for FSLogix
7474

75-
If Windows Defender is configured in the VM, make sure it's configured to not scan the entire contents of VHD and VHDX files during attachment.
75+
If Windows Defender is configured in the VM, make sure it's configured to not scan the entire contents of VHD and VHDX files during attachment. You can find a list of exclusions for FSLogix at [Configure Antivirus file and folder exclusions](/fslogix/overview-prerequisites#configure-antivirus-file-and-folder-exclusions).
7676

7777
This configuration only removes scanning of VHD and VHDX files during attachment, but won't affect real-time scanning.
7878

79-
For more detailed instructions for how to configure Windows Defender, see [Configure Windows Defender Antivirus exclusions on Windows Server](/windows/security/threat-protection/windows-defender-antivirus/configure-server-exclusions-windows-defender-antivirus/).
80-
81-
To learn more about how to configure Windows Defender to exclude certain files from scanning, see [Configure and validate exclusions based on file extension and folder location](/windows/security/threat-protection/windows-defender-antivirus/configure-extension-file-exclusions-windows-defender-antivirus/).
79+
If you're using Windows Defender, you can learn more about how to configure Windows Defender to exclude certain files from scanning at [Configure and validate exclusions based on file extension and folder location](/windows/security/threat-protection/windows-defender-antivirus/configure-extension-file-exclusions-windows-defender-antivirus/).
8280

8381
### Disable Automatic Updates
8482

@@ -121,16 +119,17 @@ New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Se
121119

122120
### Disable Storage Sense
123121

124-
For Azure Virtual Desktop session hosts that use Windows 10 Enterprise or Windows 10 Enterprise multi-session, we recommend disabling Storage Sense. Disks where the operating system is installed are typically small in size and user data is stored remotely through profile roaming. This scenario results in Storage Sense believing that the disk is critically low on free space. You can disable Storage Sense in the Settings menu under **Storage**, as shown in the following screenshot:
122+
For Azure Virtual Desktop session hosts that use Windows 10 Enterprise or Windows 10 Enterprise multi-session, we recommend disabling Storage Sense. Disks where the operating system is installed are typically small in size and user data is stored remotely through profile roaming. This scenario results in Storage Sense believing that the disk is critically low on free space. You can disable Storage Sense in the image using the registry, or use Group Policy or Intune to disable Storage Sense after the session hosts are deployed.
125123

126-
> [!div class="mx-imgBorder"]
127-
> ![A screenshot of the Storage menu under Settings. The "Storage sense" option is turned off.](media/storagesense.png)
124+
- For the registry, you can run the following command from an elevated PowerShell prompt to disable Storage Sense:
128125

129-
You can also run the following command from an elevated PowerShell prompt to disable Storage Sense:
126+
```powershell
127+
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy" -Name 01 -PropertyType DWORD -Value 0 -Force
128+
```
130129

131-
```powershell
132-
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy" -Name 01 -PropertyType DWORD -Value 0 -Force
133-
```
130+
- For Group Policy, configure a Group Policy Object with the setting **Computer Configuration** > **Administrative Templates** > **System** > **Storage Sense** > **Allow Storage Sense** set to **Disabled**.
131+
132+
- For Intune, configure a configuration profile using the settings catalog with the setting **Storage** > **Allow Storage Sense Global** set to **Block**.
134133

135134
### Include additional language support
136135

0 commit comments

Comments
 (0)