AWS appstream2 documentation change
Summary
Changed DataLossIndicator registry path from HKCU to HKLM and added PowerShell script for setting it with administrator permissions.
Security assessment
This change modifies the registry location for a client setting from user-level (HKCU) to machine-level (HKLM) and provides administrative script. This appears to be a configuration change for consistency or deployment purposes, not related to a security issue. No evidence of vulnerability remediation.
Diff
diff --git a/appstream2/latest/developerguide/install-client-configure-settings.md b/appstream2/latest/developerguide/install-client-configure-settings.md index d5c41fbac..e9f9bbf4d 100644 --- a//appstream2/latest/developerguide/install-client-configure-settings.md +++ b//appstream2/latest/developerguide/install-client-configure-settings.md @@ -350 +350 @@ Value | Registry path | Type | Description | Data -`DataLossIndicator` | `HKCU\Software\Amazon\Appstream Client` | String | Set this value to SHOW_ON_LOSSY to include a red warning indicator when there is streaming data loss. Set this value to SHOW_ON_LOSSLESS to include a green healthy indicator when there is no streaming data loss. | `DISABLED/SHOW_ON_LOSSY/SHOW_ON_LOSSLESS` +`DataLossIndicator` | `HKLM\Software\Amazon\Appstream Client` | String | Set this value to SHOW_ON_LOSSY to include a red warning indicator when there is streaming data loss. Set this value to SHOW_ON_LOSSLESS to include a green healthy indicator when there is no streaming data loss. | `DISABLED/SHOW_ON_LOSSY/SHOW_ON_LOSSLESS` @@ -368,0 +369,12 @@ You must set the following entries for each user. +To set the `DataLossIndicator` registry value, run the following PowerShell script. This value is stored in the HKLM registry path and requires Administrator permissions. + +###### Note + +To run this script, you must be logged in to the applicable computer with Administrator permissions. You can also run the script remotely under the System account on startup. + + + $registryPath="HKLM:\Software\Amazon\AppStream Client" + New-Item -Path "HKLM:\Software\Amazon" -Name "AppStream Client" -Force + + New-ItemProperty -Path $registryPath -Name "DataLossIndicator" -Value "SHOW_ON_LOSSY" -PropertyType String -Force | Out-Null +