add os tabs, fix numbering
This commit is contained in:
parent
60589fb1cb
commit
f24a0b2713
1 changed files with 43 additions and 31 deletions
|
@ -90,14 +90,25 @@ The workaround for this limitation is as follows:
|
||||||
|
|
||||||
1. Now open the terminal app (Applications/Utilities/Terminal.app) and paste the following command and enter your root password.
|
1. Now open the terminal app (Applications/Utilities/Terminal.app) and paste the following command and enter your root password.
|
||||||
|
|
||||||
**macOS High Sierra (10.13) and newer**
|
<Tabs
|
||||||
|
defaultValue="HS"
|
||||||
|
values={[
|
||||||
|
{label: 'macOS High Sierra (10.13) and newer', value: 'high_sierra'},
|
||||||
|
{label: 'macOS Sierra (10.12) and older', value: 'sierra'},
|
||||||
|
]}>
|
||||||
|
<TabItem value="high_sierra">
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo defaults read /private/var/root/Library/Preferences/com.apple.bluetoothd.plist
|
sudo defaults read /private/var/root/Library/Preferences/com.apple.bluetoothd.plist
|
||||||
```
|
```
|
||||||
**macOS Sierra (10.12) and older**
|
</TabItem>
|
||||||
|
<TabItem value="sierra">
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo defaults read /private/var/root/Library/Preferences/blued.plist
|
sudo defaults read /private/var/root/Library/Preferences/blued.plist
|
||||||
```
|
```
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>;
|
||||||
|
|
||||||
This will print the contents of the bluetooth plist file containing the pairing keys for your bluetooth devices.
|
This will print the contents of the bluetooth plist file containing the pairing keys for your bluetooth devices.
|
||||||
|
|
||||||
|
@ -119,6 +130,7 @@ sudo defaults read /private/var/root/Library/Preferences/blued.plist
|
||||||
```
|
```
|
||||||
|
|
||||||
Regedit will launch. Be careful in here as certain registry edits can cause your system to become unstable or unbootable! Edit only the entry shown in this guide.
|
Regedit will launch. Be careful in here as certain registry edits can cause your system to become unstable or unbootable! Edit only the entry shown in this guide.
|
||||||
|
|
||||||
1. Navigate in the registry to this key
|
1. Navigate in the registry to this key
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue