- Select a category.
Suspend user sign-in to complete app registration
This policy setting allows you to specify whether the app registration is completed before showing the Start screen to the user.
By default, when a new user signs in to a computer, the Start screen is shown and apps are registered in the background. However, some apps may not work until app registration is complete.
If you enable this policy setting, user sign-in is blocked for up to 6 minutes to complete the app registration. You can use this policy setting when customizing the Start screen on Remote Desktop Session Host servers.
If you disable or do not configure this policy setting, the Start screen is shown and apps are registered in the background.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Terminal Server |
| Category | Remote Desktop Services › Remote Desktop Session Host › Connections |
| Applies to | Computer Configuration |
| Supported on | At least Windows 8 Enterprise or Windows Server 2012 |
| Registry Key | [HKLM]SOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesAllUserInstallAgent |
| Value Name | LogonWaitForPackageRegistration |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesAllUserInstallAgent]
"LogonWaitForPackageRegistration"=dword:00000001
; Disable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesAllUserInstallAgent]
"LogonWaitForPackageRegistration"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesAllUserInstallAgent" -Name "LogonWaitForPackageRegistration" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesAllUserInstallAgent" -Name "LogonWaitForPackageRegistration" -Value 0 -Type DWord 