Here you will find some personal notes about some problems i encountered and the steps i followed to solve them.
Some of your drives does not appear in Windows Explorer but are visible normally on macOS ?
-
Open Explorer
-
Right click on
This PC, thenManage -
On the left column, click
Disk management -
Select the problematic drive, right click, then
Change drive letter and pathsIf your drive does not appear in Disk Management, then these steps will not help you at all
-
Click add, then select a letter and you're good to go !
Don't panic, just try this :
-
Open Run or cmd
-
Type
diskpartthen hit enter -
In diskpart shell :
- type
list volume - then
select volume X(whereXis the number corresponding with your problematic drive) - then
attributes volume clear hidden - then
exit
- type
-
Reboot your computer and voilà, you should be OK now !
Audio crackles, stop and/or desynchronizes on macOS, even with AppleALC.kext and layout-id=16.
This fix worked for me :
- Open
Audio MIDI Setup.applocated under/Applications/Utilities - Select your sound output on the left panel
- Under
Format (Bitrate), try all values starting from the biggest value (the lower one in the list)
My preset : 2-channel 32-bit 96.0kHz floating point number
Fix: Enable ErP in BIOS
When switching from Windows to macOS and vice versa, my Apple Magic Keyboard needs to be paired each time.
The followings steps solves the issue :
-
Boot in Windows
-
Pair your device
-
Restart and boot in macOS
-
Pair your device
-
In a terminal, type :
sudo defaults read /private/var/root/Library/Preferences/com.apple.Bluetoothd.plist LinkKeys -
The output looks like this :
{ "11-22-33-44-55-66" = { "aa-bb-cc-dd-ee-ff" = <01122334 45566778 89900112 23344556>; }; }Find your link key and copy it. If you're unsure which link key is which, you can find the MAC address of your device by option-clicking the Bluetooth applet in your menu bar and expanding the connected device you want to share. Here
11-22-33-44-55-66would be your bluetooth chip MAC address,aa-bb-cc-dd-ee-ffwould be your device MAC adress, and01122334 45566778 89900112 23344556the link key you should copy. -
Then convert your key's endianness (little endian to big endian). It's pretty simple, using the key above :
Little endian : 01122334 45566778 89900112 23344556 == 01|12|23|34|45|56|67|78|89|90|01|12|23|34|45|56 A B C D E F G H I J K L M N O P Big endian : 56453423 12019089 78675645 34231201 == 56|45|34|23|12|01|90|89|78|67|56|45|34|23|12|01 P O N M L K J I H G F E D C B ASo your final key would be
56453423 12019089 78675645 34231201 -
Save your converted key and your device MAC adress somewhere you can retrieve it in Windows.
-
Boot in Windows with the device TURNED OFF
-
Open
regeditand browse to the bluetooth keys :HKLM\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters\KeysIf you do not see anything on the regedit panel when you select the
Keysdirectory, right click on it, then selectPermissions, and take the ownership by adding your user account in the list. Then reload regedit. -
Replace the existing key matching the device's MAC address with the key that you converted in the earlier step
-
Power off your computer.
-
Power on your computer with the device turned on.
Note: If you're using an Apple device such as a Keyboard or Trackpad, do not plug the device into your computer for charging. Doing so will cause the link keys to change requiring you to repeat this process again.