Adiciona Favoritos ao Microsoft Edge manualmente

8

Eu gostaria de adicionar marcadores ao Microsoft Edge, não importando do IE, mas simplesmente despejando os marcadores na pasta de marcadores Edge.

Isso foi possível nas compilações do Spartan e acho que foi possível quando o Edge foi lançado. Eu acho que o caminho costumava ser -

C:\Users\Duncan\AppData\Local\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Favorites

Eu tentei descarregar os marcadores nesta pasta e reiniciar meu sistema, mas eles não foram exibidos no Edge. Eu estou querendo saber se a pasta foi alterada desde a atualização do Windows 10 Fall como a sincronização de favoritos Edge foi introduzida nesta atualização mais recente do Windows 10.

Como adiciono manualmente marcadores ou pastas de marcadores aos favoritos no Edge?

    
por Duncan Gravill 18.11.2015 / 17:46

2 respostas

4

Eu estou querendo saber se a pasta mudou desde o Windows 10 Fall Update

Starting in in Windows 10 Insider Preview build 10565, your favorites in Microsoft Edge are now stored in an ESE database file instead of the previous Favorites folder.

This tutorial will show you how to change Microsoft Edge favorites to be stored in the new ESE database file or old Favorites folder location for your account in Windows 10.

Warning

This will reset and delete all your favorites in Microsoft Edge.

This is necessary to avoid corrupting your favorites when changing the storage location.

Note

The .bat files below will delete the two folders below to delete all your favorites in Microsoft Edge including favorites from the Favorites Bar for only your account.

(ESE database location)

%LocalAppData%\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\DataStore

(Favorites folder location)

%LocalAppData%\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Favorites

The .bat files below will also change the DWORD value in the registry key below.

HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main

FavoritesESEEnabled DWORD

0 = Favorites folder 1 = ESE database file

Microsoft_Edge_save_favorites_in_Favorites_folder.bat:

@echo off

:: Created by: Shawn Brink
:: http://www.tenforums.com
:: Tutorial: http://www.tenforums.com/tutorials/30451-microsoft-edge-favorites-change-location-windows-10-a.html


RD /S /Q "%LocalAppData%\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\DataStore"

RD /S /Q "%LocalAppData%\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Favorites"


REG ADD "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /V FavoritesESEEnabled /T REG_DWORD /D 0 /F

Microsoft_Edge_save_favorites_in_ESE_database.bat:

@echo off

:: Created by: Shawn Brink
:: http://www.tenforums.com
:: Tutorial: http://www.tenforums.com/tutorials/30451-microsoft-edge-favorites-change-location-windows-10-a.html


RD /S /Q "%LocalAppData%\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\DataStore"

RD /S /Q "%LocalAppData%\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Favorites"


REG ADD "HKCU\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /V FavoritesESEEnabled /T REG_DWORD /D 1 /F

Fonte Como alterar o local de armazenamento do Microsoft Edge Favoritos no Windows 10

Como adiciono manualmente marcadores ou pastas de favoritos aos favoritos no Edge?

De acordo com a fonte abaixo, é necessária uma etapa extra (excluindo o valor FavOrder do registro, consulte as etapas 6 e 7).

Presumivelmente, a exclusão de FavOrder faz com que o Edge verifique novamente os favoritos.

Como: colocar seus favoritos do navegador no Microsoft Edge quando a importação falha no Windows 10

You can make your browser favorites available to Microsoft Edge manually.

  1. Close Microsoft Edge.

  2. In the Windows 10 Cortana search bar type %userprofile%\favorites and hit enter. This opens Windows Explorer to the old location of your browser favorites.

  3. Select all files and folders and choose Copy.

  4. Now, in the Cortana search bar type %localappdata%\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Favorites and hit enter.

    This is the location where Microsoft Edge stores its favorite bookmarks.

  5. Paste the files and folders you selected to copy in the previous step.

  6. Open the Windows 10 registry editor (regedt32) and navigate to: HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\

  7. Locate FavOrder and delete it from the Windows registry.

  8. Open Microsoft Edge and view the manually imported favorites.

Fonte Como: Obter Seus favoritos do navegador no Microsoft Edge quando a importação falha no Windows 10

    
por 18.11.2015 / 18:54
3

Existe agora uma técnica alternativa para importar e adicionar manualmente favoritos ao Edge. O aplicativo EdgeManage pode interagir diretamente com o banco de dados ESE usado pelo Edge.

Então, isso significa que você pode importar seus favoritos de qualquer local (como de uma unidade flash USB) sem precisar "lavá-los" primeiro pelo Internet Explorer. Você também pode criar manualmente um favorito inserindo o nome e o URL diretamente.

Veja este artigo para obter mais informações sobre como realizar essas tarefas com o EdgeManage: link

PS: Eu sou o autor

    
por 20.05.2016 / 22:03