[Resolved] What are the settings for enabling Mobile Device discovery options?

I remember that there was this setting in the NTLite yes, I remembered after I disabled these settings a long time ago, I ended up needing it now. And I don't remember where I disabled it. But for now I'll do it through the registry as I said.
 
Last edited:
It's not enabled if you removed Phone Link.
Code:
                <c>microsoftwindows.crossdevice 'Cross Device Experience Host'</c>
 
You also disabled the Phone Service.
Code:
                                <Tweak name="PhoneSvc\PhoneSvc">4</Tweak>
 
You can try this too.
Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent]
"DisableWindowsConsumerFeatures"=dword:00000000
"DisableCloudOptimizedContent"=dword:00000001
"DisableConsumerAccountStateContent"=dword:00000001
"DisableThirdPartySuggestions"=dword:00000001
"DisableSoftLanding"=dword:00000001
Save it as a .reg file and apply, make a registry backup just in case
 
You can try this too.
Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent]
"DisableWindowsConsumerFeatures"=dword:00000000
"DisableCloudOptimizedContent"=dword:00000001
"DisableConsumerAccountStateContent"=dword:00000001
"DisableThirdPartySuggestions"=dword:00000001
"DisableSoftLanding"=dword:00000001
Save it as a .reg file and apply, make a registry backup just in case
I'll try your solution, which apparently only targets the "Link to Phone" app itself.

What you mentioned in the post worked for me, but it ended up having undesirable side effects, which was removing the settings made in NTLite. I'll even review the registry keys you provided and compare them with the ones I found in the post above, and leave the one that worked best as the registry already configured in NTLite.
 
I finally discovered what was causing the blockages.
Below are the keys that were causing these blockages, with no adverse side effects so far.

Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent]
"DisableWindowsConsumerFeatures"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Mobility]
"CrossDeviceEnabled"=dword:00000001
"PhoneLinkEnabled"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"NoConnectedUser"=dword:00000000
 
Last edited:
Back
Top