Introduction: Why change system sounds on Xiaomi laptop
Xiaomi Notebook laptops 8 Pro running Windows 11 They use standard Microsoft sound circuits that many users find boring or inexpressive, and custom tunes allow you to personalize your device, from notifications of new emails to on/off sounds. This is especially true for those who use a laptop in Tablet Mode mode or connect it to external monitors through a computer. HDMI/USB-C β In such cases, sound prompts help to navigate the system without visual control.
Unlike Xiaomi smartphones, where ringtones are changed through Settings β Sound, on laptops, the process requires manual intervention in system files, and this is due to Windows 11's security policy, which limits the change of system sounds through the GUI. However, workarounds exist β and weβll look at them all, from the simplest to the most advanced, including working with.wav files and registry editor.
It is important to understand that Xiaomi Notebook 8 Pro (models) NB8PDE-01 and NB8PDE-02) They use the Realtek audio chip. ALC256, It supports high-quality playback, but has limits on the duration of system sounds (maximum 10 seconds).It is also worth considering that when you upgrade Windows, all custom sounds can be reset - so we will show you how to back up your computer.
Preparation: which files are suitable for system sounds
Not every audio file can be used as a system sound. Windows 11 imposes strict format requirements:
- π΅ Format:.wav only (PCM, file-free.mp3,.m4a or.flac won't work.
- π Duration: optimal β 1-3 seconds (maximum) 10 seconds, otherwise the sound will cut off).
- π Volume: Normalize the file to -16 LUFS (Use Audacity or OCenaudio to avoid distortion.
- π File name: Latin without spaces (e.g. notification.wav). Cyrillic or characters cause crashes.
Where to get the appropriate files:
- Create yourself: record voice notification through Windows Audio Recording (Win) + Alt + R) or generate a melody in FL Studio.
- Download ready-made: sites like NotificationSounds or FreeSound (look for files with system sound tag).
- Convert: Use Online-Convert or CloudConvert to convert.mp3 Bitrate: 1411 kbps Sample Rate: 44100 Hz Channels: Stereo
β οΈ Note: Files with a bitrate below 705 kbps or mono-phonic sound can be played with noise on the Xiaomi Notebook 8 Pro speakers. Before installing, test the file through the standard Windows Media Player player.
Method 1: Replace sounds through Control Panel (without administrator rights)
This is the simplest method that does not require changing system files, and is suitable for replacing standard notifications (e.g. Windows Logon Sound or New Mail Notification).
Instructions:
- Copy the prepared.wav file into a folder C:\Windows\Media (If you donβt have a folder, create it manually).
- Open the control panel. β Equipment and sound β Sound (or type in mmsys.cpl).
- Go to the Sound tab. β In the drop-down menu, select No Sound (this is temporary).
- In the Program Events list, select an event (e.g. Notice) β press the review β Please indicate the path to your file.
- Save the scheme under a new name (e.g. Xiaomi Custom) and apply it.
Limitations of the method:
- π« Windows Startup and Shutdown sounds cannot be replaced β they are managed through the registry.
- π After major Windows updates, the scheme may reset.
Copy.wav file to C:\Windows\Media|
Check the recording rights in the Media folder|
Open the Control Panel via mmsys.cpl|
Create a backup of the current sound scheme-->
Method 2: Manually editing the registry for start/off sounds
To replace Windows Startup and Shutdown sounds, youβll need to edit the registry, a method that requires administrator rights and caution, as errors can cause system failures.
Step-by-step:
- Create a Registry Backup: Open Registry β File. β Exports β Save the file with the.reg extension.
- Cross the path: HKEY_CURRENT_USER\AppEvents\EventLabels\.Default This is where the parameters for all system events are stored.
- For the start sound, look for the Windows Logon section, and for SystemExit to turn off.
- In the right panel, change the ExcludeFromCPL setting from 1 to 0 (this will make the sound available for change in the Control Panel).
- Now open the control panel. β Sound and replace sounds as in Method 1.
Critical detail: once the registry is edited, the start/stop sounds will only be available for change if the system has Fast Startup enabled. β Power supply β Actions of power buttons.
β οΈ Note: If after changes, the Xiaomi Notebook 8 Pro starts to freeze when booting, return the original values in the registry or roll back through the restore point. This happens if a non-existent path to the sound file is indicated.
| Event | Key to the registry | Max. Duration of sound |
|---|---|---|
| Windows Launch | WindowsLogon | 5 seconds |
| Shutdown | SystemExit | 3 seconds |
| Screen locking | SystemLock | 2 seconds |
| Notification | Notification.Default | 10 seconds. |
Method 3: Use of third-party utilities (WinAero Tweaker, Winaero)
For users who don't want to manually edit the registry, there are special programs, one of the most reliable is WinAero Tweaker (a free version available on the official website), which allows you to change the system sounds in a few clicks, including those hidden in the standard Control Panel.
How to use:
- Download and install WinAero Tweaker (select the Windows 11 version).
- Start the program on behalf of the administrator.
- Go to the System Sounds section.
- In the event list, select the desired one (for example, Device Connect for the connection sound). USB).
- Click Browse and specify the path to your.wav file.
- Apply the changes and restart the laptop.
Advantages of the method:
- π§ Intuitive interface without manual registry editing.
- π Automatic backup of current sounds.
- ποΈ Support for hidden events (such as Battery Low or Network Connect).
π‘
Before using WinAero Tweaker, disable the antivirus (such as Xiaomi Security or Windows Defender) as it can block changes to system files.
Method 4: Set up sounds for specific applications (Discord, Telegram, Chrome)
Some programs (such as Discord, Telegram, or browsers) use their own audio notifications that are independent of Windows system settings.
For Discord:
- Open User Settings β Notifications β Notification sounds.
- Select No to turn off standard sounds.
- Install the BetterDiscord extension (unofficial client) and upload custom sounds through the Soundboard plugin.
For Telegram:
- π± In the desktop version (Telegram Desktop), notification sounds are changed through Settings. β Notifications β Sound. You can upload your file to.ogg or.mp3 (Limitation to 300 KB).
- π To completely turn off the sounds, use the parameter --disable-gpu-sandbox at launch (through a label).
For Google Chrome:
The browser uses Windows system sounds, but they can be reassigned via the following flags:
- Enter in the address bar chrome://flags/#enable-tab-audio-muting.
- Activate the Tab audio muting option UI control.
- Install Custom Notifications Sound extension from Chrome Web Store.
How to bring back standard sounds in Discord
Method 5: Automation with PowerShell (for advanced users)
If you need to replace the sounds on multiple Xiaomi laptops (e.g., in the office), it is more convenient to use the PowerShell script. This method requires knowledge of the basics of the command line, but allows you to quickly apply the settings to many events.
Example of a script to replace the notification sound:
$soundPath = "C:\Windows\Media\custom_notification.wav"
$eventName = "Notification.Default"
Import a module for working with sounds
Import-Module AppEvents
Changing the sound for the event
Set-AppEventSound -EventName $eventName -SoundPath $soundPath -ForceHow to use:
- Save the code to the file change_sounds.ps1.
- Start PowerShell on behalf of the administrator.
- The command is: Set-ExecutionPolicy RemoteSigned -Scope CurrentUser (allows scripting to be run).
- Go to the folder with the script and launch it:.\change_sounds.ps1
To replace sounds massively, create a.csv file with a list of events and paths to files, then modify the script to read the data from the table. IT-administrators managing the fleet of devices Xiaomi Notebook 8 Pro.
β οΈ Note: PowerShell scripts may be blocked by corporate network security policies. If an Execution Policy error occurs during startup, contact your system administrator or use an alternative method (e.g. WinAero Tweaker).
π‘
PowerShell scripts allow you not only to change sounds, but also to export current settings to a file for backup. This is useful before upgrading Windows or reinstalling the system.
Backup and recovery of sound circuits
After replacing the sounds, it is recommended to create a backup copy to quickly restore the settings in the event of a failure.
Method 1: Export through the Registry
- Open regedit and go to: HKEY_CURRENT_USER\AppEvents
- Right-click on the AppEvents section β Exports β Save the file with the.reg extension.
- To recover, double-click on the file and confirm the changes.
Method 2: Copying the Media folder
Copy the entire folder. C:\Windows\Media to an external storage device, when you're recovering:
- Run the Command Prompt on behalf of the administrator.
- Run the command to take ownership of the folder: takeown /f C:\Windows\Media /r /d y icacls C:\Windows\Media /grant administrators:F /t
- Replace your media files with your backups.
Method 3: Use of utilities
Software like WinAero Tweaker or SoundScheme has built-in backup features, such as WinAero Tweaker:
- Go to System Sounds.
- Press Backup Current Scheme.
- Save the file with the.soundscheme extension.
| Method | Advantages | Deficiencies |
|---|---|---|
| Export of the registry | Save all settings, including hidden events | Requires manual recovery |
| Copying the Media folder | Simplicity, you do not need to understand the registry | Does not keep events linked to files |
| Utilities (WinAero) | Automation, support for circuits | Dependence on third-party software |