Bluetooth Couldn't connect

Restintrip

New Member
Messages
16
Reaction score
0
Hi, i cooked an iso for a friend, on a windows 23h2, all is perfectly working, except for the bluetooth, he has a usb bluetooth, and wont work he got this error.
We looked for service and i disabled for an error some of them, enabling back doesnt work.
i post the xml here so i think can be more easy debug the error, maybe i disabled something important for bt? i leaved on all connection components about wifi and bt.


Xml is called BTISSUE.

Thnaks in adivce mate


1572479130973.png
 

Attachments

Many Bluetooth or USB devices don't bother to include setup apps, because they assume Windows Update will find a matching driver.

You have disabled driver updates:
Code:
                        <TweakGroup name="WindowsUpdate">
                                <Tweak name="Device Metadata\PreventDeviceMetadataFromNetwork">1</Tweak>
                                <Tweak name="DriverSearching\SearchOrderConfig">0</Tweak>
                        </TweakGroup>

Re-enable driver updates, or download the device's drivers. If you need to protect a specific device from automatic updates, there's a script which can block unique HW ID's from getting driver updates. This will not prevent you from manually installing a newer driver.

Blocking WU from specific Device Driver updates (PowerShell script)
 
<TweakGroup name="WindowsUpdate">
<Tweak name="Preferences\ModelDownloadAllowed">0</Tweak>
<Tweak name="MRT\DontOfferThroughWUAU">1</Tweak>
<Tweak name="7971f918-a847-4430-9279-4a52d1efe18d\RegisterWithAU">0</Tweak>
<Tweak name="Settings\HideMCTLink">1</Tweak>
<Tweak name="Settings\RestartNotificationsAllowed2">0</Tweak>
<Tweak name="DeliveryOptimization\DODownloadMode">99</Tweak>
<Tweak name="WindowsUpdate\DisableWUfBSafeguards">1</Tweak>
<Tweak name="AU\AUOptions">2</Tweak>
<Tweak name="WindowsUpdate\TargetReleaseVersionInfo">23H2</Tweak>
</TweakGroup>

In this way?And on ntlite it's ok if is set as you see in the next image?

1756521090123.png
 

Attachments

That should work.

But you don't have to rebuild an image to first test the changes on your friend's PC. Have your friend run these commands:
Code:
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata" /v PreventDeviceMetadataFromNetwork /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" /v SearchOrderConfig /t REG_DWORD /d 2 /f

Now run Windows Update, and look for driver updates.
 
ok, we enabled reg. voice, but nothing, also we found the usb bt dongle driver, installed and recognized as expected, but nothing to do, same error, maybe its an error from win11 23h2? should i try with 24h2? i attach the various screen.
 

Attachments

  • Immagine WhatsApp 2025-08-30 ore 10.59.07_a14094fb.jpg
    Immagine WhatsApp 2025-08-30 ore 10.59.07_a14094fb.jpg
    36.6 KB
  • Immagine WhatsApp 2025-08-30 ore 10.35.48_17b15765.jpg
    Immagine WhatsApp 2025-08-30 ore 10.35.48_17b15765.jpg
    45.4 KB
  • Immagine WhatsApp 2025-08-30 ore 10.35.48_0f1489a9.jpg
    Immagine WhatsApp 2025-08-30 ore 10.35.48_0f1489a9.jpg
    40 KB
  • Immagine WhatsApp 2025-08-30 ore 10.34.50_3935ce63.jpg
    Immagine WhatsApp 2025-08-30 ore 10.34.50_3935ce63.jpg
    25.8 KB
  • Immagine WhatsApp 2025-08-30 ore 10.34.24_53484786.jpg
    Immagine WhatsApp 2025-08-30 ore 10.34.24_53484786.jpg
    11 KB
  • Immagine WhatsApp 2025-08-30 ore 10.59.07_fb9bd834.jpg
    Immagine WhatsApp 2025-08-30 ore 10.59.07_fb9bd834.jpg
    39.3 KB
For Bluetooth, your preset removes 2 components necessary for it (devicesetupmanager and ncb)

You can try, if you have a license, you can use Host Refresh to "restore" these two components.
Or, recreate an ISO and enable Bluetooth compatibility in Components-Compatibility in NTlite or modify this line in your preset

Code:
            <Feature enabled="no">Bluetooth</Feature>
By
Code:
            <Feature enabled="yes">Bluetooth</Feature>
 
Back
Top