Hello. First post here. Can't seem to solve this one. Looking at Windows 11, given Windows 10's demise is on the horizon.
For familiarity/recognition, enhanced user experience and a smaller learning curve for people I'm updating PCs for I would like to use the sounds from Windows 7 for several of the Windows sound events.
I've been doing this on Windows 10 for years and it works fine, but on Windows 11 it just ignores the custom sounds and plays the default ones.
I've tried this through the sounds GUI and also editing the registry directly. I've tried with the sounds in %userprofile%\Media (for no particular reason just to place them somewhere outside the windows folder), and in %windir%\Media. Nothing seems to work.
I've been through many websites about this, many of which are just plain junk, and seen several tutorials, none of which work.
The sounds are device connect, fail and disconnect, Windows startup sound, Windows notify and exclamation.
Here's an example of the registry tweaks;
(This is for %userporofile% but %windir% yields the same outcomes).
I've tried with the user name (eg. C:\Users\test\), rather than a variable, and with REG_SZ instead of REG_EXPAND_SZ.
Why can't I get this to work?
WIndows 11 26100.3323 24H2 on I5-14600KF/MSI Z790 Tomahawk mobo.
thank you.
For familiarity/recognition, enhanced user experience and a smaller learning curve for people I'm updating PCs for I would like to use the sounds from Windows 7 for several of the Windows sound events.
I've been doing this on Windows 10 for years and it works fine, but on Windows 11 it just ignores the custom sounds and plays the default ones.
I've tried this through the sounds GUI and also editing the registry directly. I've tried with the sounds in %userprofile%\Media (for no particular reason just to place them somewhere outside the windows folder), and in %windir%\Media. Nothing seems to work.
I've been through many websites about this, many of which are just plain junk, and seen several tutorials, none of which work.
The sounds are device connect, fail and disconnect, Windows startup sound, Windows notify and exclamation.
Here's an example of the registry tweaks;
(This is for %userporofile% but %windir% yields the same outcomes).
Code:
REG ADD "HKCU\AppEvents\Schemes\Apps\.Default\DeviceFail\.Current" /ve /d "%USERPROFILE%\Media\Windows Hardware Fail.wav" /t REG_EXPAND_SZ /f
REG ADD "HKCU\AppEvents\Schemes\Apps\.Default\DeviceFail\.Modified" /ve /d "%USERPROFILE%\Media\Windows Hardware Fail.wav" /t REG_EXPAND_SZ /f
REG ADD "HKCU\AppEvents\Schemes\Apps\.Default\DeviceConnect\.Current" /ve /d "%USERPROFILE%\Media\Windows Hardware Insert.wav" /t REG_EXPAND_SZ /f
REG ADD "HKCU\AppEvents\Schemes\Apps\.Default\DeviceConnect\.Modified" /ve /d "%USERPROFILE%\Media\Windows Hardware Insert.wav" /t REG_EXPAND_SZ /f
REG ADD "HKCU\AppEvents\Schemes\Apps\.Default\DeviceDisconnect\.Current" /ve /d "%USERPROFILE%\Media\Windows Hardware Remove.wav" /t REG_EXPAND_SZ /f
REG ADD "HKCU\AppEvents\Schemes\Apps\.Default\DeviceDisconnect\.Modified" /ve /d "%USERPROFILE%\Media\Windows Hardware Remove.wav" /t REG_EXPAND_SZ /f
REG ADD "HKCU\AppEvents\Schemes\Apps\.Default\Notification.Default\.Current" /ve /d "%USERPROFILE%\Media\Windows Notify.wav" /t REG_EXPAND_SZ /f
REG ADD "HKCU\AppEvents\Schemes\Apps\.Default\Notification.Default\.Modified" /ve /d "%USERPROFILE%\Media\Windows Notify.wav" /t REG_EXPAND_SZ /f
I've tried with the user name (eg. C:\Users\test\), rather than a variable, and with REG_SZ instead of REG_EXPAND_SZ.
Why can't I get this to work?
WIndows 11 26100.3323 24H2 on I5-14600KF/MSI Z790 Tomahawk mobo.
thank you.