ringfinger Posted June 6, 2006 Posted June 6, 2006 Hey all I'm looking for some help with a tough question. I'm trying to find a way to disable all Windows default sounds through either a GPO object or through a possible login script which yields a reg edit (or something else?). This needs to be done at the user level, when they login, not on just the local machine. I'm hoping to either have a GPO set to do it or a one time login script. I've seen some tips here and there within the Unattended forum, but nothing concrete nor in an enterprise networked environment. Any help would be GREATLY appriciated!
kyuuzo Posted June 6, 2006 Posted June 6, 2006 Here are the registry entries that you need to change.You could easily accomplish this with a logon script.Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\.Default\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\.Default\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\AppGPFault\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\AppGPFault\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\Close\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\Close\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\CriticalBatteryAlarm\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\DeviceConnect\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\DeviceConnect\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\DeviceDisconnect\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\DeviceDisconnect\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\DeviceFail\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\DeviceFail\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\LowBatteryAlarm\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\MailBeep\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\MailBeep\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\Maximize\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\Maximize\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\MenuCommand\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\MenuCommand\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\MenuPopup\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\MenuPopup\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\Minimize\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\Minimize\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\Open\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\Open\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\PrintComplete\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\PrintComplete\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\RestoreDown\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\RestoreDown\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\RestoreUp\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\RestoreUp\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemAsterisk\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemAsterisk\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemExclamation\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemExclamation\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemExit\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemExit\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemHand\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemHand\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemNotification\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemNotification\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemQuestion\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemQuestion\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemStart\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\SystemStart\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\WindowsLogoff\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\WindowsLogoff\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\WindowsLogon\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\WindowsLogon\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\BlockedPopup\.current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\BlockedPopup\.default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Default]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\SecurityBand\.current]@=""[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\SecurityBand\.default]@=""
ringfinger Posted June 6, 2006 Author Posted June 6, 2006 Thanks so much... will possibly try rolling this code tomorrow to 25 clients. Will let you know. Any other options are also welcome.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now