
Hi Marco-4658,
I understand you're looking to manage the "Profiles / Profile preferences" settings in Microsoft Edge via the Registry. Here are the steps to disable these settings and delete user-created URLs: Disabling Profile Preferences via Registry Open Registry Editor:
- Press
Win + R
, typeregedit
, and press Enter. Navigate to the following path: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge Create or modify the following DWORD values: - Account-based profile switching: "AccountBasedProfileSwitchingEnabled"=dword:00000000
- Curated sites automatically switch profiles: "AutomaticProfileSwitching"=dword:00000000
- Intranet-based profile switching: "IntranetProfileSwitchingEnabled"=dword:00000000
- IE Mode based profile automatic site switch: "IEModeProfileSwitchingEnabled"=dword:00000000 Deleting User-Created URLs To delete URLs created or modified by users, you can use a script to clear browser history or specific registry keys. Here’s a general approach: Open Registry Editor:
- Press
Win + R
, typeregedit
, and press Enter. Navigate to the following path: HKEY_CURRENT_USER\Software\Microsoft\Edge\TypedURLs Delete the entries: - Right-click on each URL entry and select
Delete
. Alternatively, you can use a script to automate this process:
PowerShell script to delete user-created URLs in Edge
$registryPath = "HKCU:\Software\Microsoft\Edge\TypedURLs" Remove-Item -Path $registryPath -Recurse Run this script as an administrator to ensure it has the necessary permissions.
I hope these tips help resolve the issue. If you need further assistance, I'm here to help.
Best regards,
Jonathan
----------*
Your feedback is very important to us! If this response resolved your query, please click 'YES'. This helps us continuously improve the quality and relevance of our solutions.