5

I have a piece of software that deploys a local account on workstations via an MSI and creates a profile for it. In versions of windows prior to windows 8, the first time this account was used it would go through all the initial profile setup tasks that it does. However, in windows 8, this screen is replaced by a welcome/tutorial video that I can't figure out how to disable. This means that the first time users load this account, which is done infrequently, they will be presented with an interactive windows tutorial (awkward).

Is there a GPO or a registry setting we can deploy that will prevent this video from being shown? I realize it will have to do the profile setup tasks, but in this particular use case, it would be much better to have a please wait screen or something, rather than an interactive tutorial.

Falcon Momot
  • 24,975
  • 13
  • 61
  • 92
  • Back in XP, that video used to be called the *Windows XP Tour*; you used to be able to disable it by using a registry setting: key - `HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Applets\Tour`; value name - `RunCount`; type - `REG_DWORD`; value - `0` -- it might still work? – jimbobmcgee Aug 21 '12 at 18:38

1 Answers1

2

This can be disabled for all users using Group Policy. Set the "Show first sign-in animation" policy under Computer Configuration > Administrative Templates > System > Logon to Disabled.

Make sure your administrative templates are up-to-date, or you won't see this option, as it's a Windows 8/Server 2012 policy only.

Group Policy Editor

tfrederick74656
  • 1,442
  • 1
  • 12
  • 29