Contribute
Register

[Solved] Hiding Windows Partitions

Status
Not open for further replies.
Joined
Feb 2, 2015
Messages
16
Motherboard
Gigabyte z270x ultra gaming
CPU
Intel Core i7 7700k
Graphics
Nvidia GeForce GTX 1070 8gb
Hey guys,

I managed to hide Mac Preboot and Recovery by typing exactly these names into the hide section of Clover GUI. But how do I hide all those unwanted Windows Partitions? I only need "Boot Windows from Efi"

Why do I have to Mac boot options? Boot MacOSX install from MacOSX and Boot MacOSX from MacOSX? What is this install partition?
 

Attachments

  • screenshot0.png
    screenshot0.png
    24.2 KB · Views: 96
Hey guys,

I managed to hide Mac Preboot and Recovery by typing exactly these names into the hide section of Clover GUI. But how do I hide all those unwanted Windows Partitions? I only need "Boot Windows from Efi"

Why do I have to Mac boot options? Boot MacOSX install from MacOSX and Boot MacOSX from MacOSX? What is this install partition?
Enter in terminal:
Code:
bdmesg | awk '/ScanVolumes/,/InitTheme/'
Example line from output:
1:151 0:000 - [03]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(1,GPT,3ECFA8D5-8C7F-485E-A90E-A917F1FA7DA5,0x800,0x64000)
Matchable part:
PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(1,GPT,3ECFA8D5-8C7F-485E-A90E-A917F1FA7DA5,0x800,0x64000)
Example to enter into GUI:
PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(1,GPT,3ECFA8D5-8C7F-485E-A90E-A917F1FA7DA5,0x800,0x64000)
Or partial match:
HD(1,GPT,3ECFA8D5-8C7F-485E-A90E-A917F1FA7DA5,0x800,0x64000)
Or just the UUID:
3ECFA8D5-8C7F-485E-A90E-A917F1FA7DA5

The matching is done by comparing the strings. Suggest you disable legacy scanning of volumes first as this may eliminate some of the entries you are trying to hide.
 
But how do I hide all those unwanted Windows Partitions? I only need "Boot Windows from Efi"
Set Scan / Legacy to false in your config.plist
Code:
<key>Scan</key>
<dict>
  <key>Legacy</key>
  <false/>
</dict>
 
Status
Not open for further replies.
Back
Top