<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Accessing bookmarks on new computer]]></title><description><![CDATA[<p dir="auto">Hi everyone. I've used Opera as my main browser for years. I've a PC with Windows 7 but am about to buy a new PC with Windows 10, and want to  have my bookmarks available when I use a new PC. I've exported my bookmarks to an HTML file, and do I have to manually place them in Opera or is there an easier way?</p>
]]></description><link>https://forums.opera.com/topic/26366/accessing-bookmarks-on-new-computer</link><generator>RSS for Node</generator><lastBuildDate>Sat, 07 Mar 2026 06:37:18 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/26366.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 27 Apr 2018 23:56:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Accessing bookmarks on new computer on Sat, 28 Apr 2018 06:25:34 GMT]]></title><description><![CDATA[<p dir="auto">Xcopy should work too *lol</p>
<p dir="auto">Here is sum scripts i wrote with the xcopy command to Backup your <strong>Opera Default Local And Roaming Data</strong>..</p>
<p dir="auto">Note - This will allows single File Names and or spaces for longer names !.. You can even use Wildcard (<em>.</em>)<br />
Copy and paste it to notepad. Save as - <strong>Opera Local and Roaming Backup.bat</strong></p>
<p dir="auto">Seperate commands on notepads if ya only wanna backup one @ a time..</p>
<p dir="auto">Example - For Backing up Local &amp; Roaming Directory @ the same time..</p>
<p dir="auto">@echo off<br />
xcopy "%USERPROFILE%\AppData\Local\Opera Software\Opera Stable" "C:\TEMP\Opera Local Backup* /E /I /R /K /Y<br />
xcopy "%USERPROFILE%\AppData\Roaming\Opera Software\Opera Stable" "C:\TEMP\Opera Roaming Backup" /E /I /R /K /Y</p>
<p dir="auto">Example - For Restore</p>
<p dir="auto">@echo off<br />
xcopy "C:\TEMP\Opera Local Backup" "%USERPROFILE%\AppData\Local\Opera Software\Opera Stable" /E /I /R /K /Y<br />
xcopy "C:\TEMP\Opera Roaming Backup" "%USERPROFILE%\AppData\Roaming\Opera Software\Opera Stable" /E /I /R /K /Y</p>
<p dir="auto">And or like this<br />
Example - For Backup</p>
<p dir="auto">@echo off<br />
xcopy "C:\Users\user name\AppData\Local\Opera Software\Opera Stable" "C:\TEMP\Opera_Local_Backup" /E /I /R /K /Y<br />
xcopy "C:\Users\user name\AppData\Roamig\Opera Software\Opera Stable" "C:\TEMP\Opera Roaming Backup" /E /I /R /K /Y</p>
<p dir="auto">Example - For Restore</p>
<p dir="auto">@echo off<br />
xcopy "C:\TEMP\Opera Local Backup" "C:\Users\user name\AppData\Local\Opera Software\Opera Stable" /E /I /R /K /Y<br />
xcopy "C:\TEMP\Opera Roaming Backup" "C:\Users\user name\AppData\Roamig\Opera Software\Opera Stable" /E /I /R /K /Y</p>
<p dir="auto">For Backing up your Opera Portable.. Lets say just your Profile Data..<br />
Copy and paste it to notepad. Save as - <em>Opera Portable Profle Backup.bat</em></p>
<p dir="auto">Example - For Backup</p>
<p dir="auto">@echo off<br />
xcopy "C:\zz (x86)\Apps\Browsers\Opera\profile" "C:\TEMP\Opera Portable Profile Backup\profile" /E /I /R /K /Y</p>
<p dir="auto">Example - For Restore<br />
@echo off<br />
xcopy "C:\TEMP\Opera Portable Profile Backup\profile" "C:\zz (x86)\Apps\Browsers\Opera\profile" /E /I /R /K /Y</p>
<p dir="auto">Try This One..<br />
Example - For Backup</p>
<p dir="auto">@echo off<br />
:: variables<br />
set backupcmd=xcopy /E /I /R /K /Y<br />
%backupcmd% "C:\Temp\Test 1" "C:\Temp\Test 2"<br />
echo Backup Complete!<br />
@pause</p>
<p dir="auto">Example - For Restore</p>
<p dir="auto">@echo off<br />
:: variables<br />
set backupcmd=xcopy /E /I /R /K /Y<br />
%backupcmd% "C:\Temp\Test 2" "C:\Temp\Test 1"<br />
echo Backup Complete!<br />
@pause</p>
]]></description><link>https://forums.opera.com/post/145280</link><guid isPermaLink="true">https://forums.opera.com/post/145280</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Sat, 28 Apr 2018 06:25:34 GMT</pubDate></item><item><title><![CDATA[Reply to Accessing bookmarks on new computer on Sat, 28 Apr 2018 06:00:48 GMT]]></title><description><![CDATA[<p dir="auto">@jo15d if ya wanna backup more than just bookmarks.. this may depend on what version of Robocopy ya got on win 7 - works great on win 8.1 &amp; win 10..</p>
<p dir="auto">Here is sum scripts i wrote with the Robocopy command to Backup your Opera Default Local &amp; Roaming Data</p>
<p dir="auto">Note - This will copy the Original Creation Dates of Files &amp; Folders !<br />
allows single file names and or spaces for longer names!.. And Wildcards (<em>.</em>) !</p>
<p dir="auto">Copy and paste it to notepad. Save as - Opera Local &amp; Roaming Data Backup.bat</p>
<p dir="auto">Seperate commands on notepads if ya only wanna backup one @ a time..</p>
<p dir="auto">Example - For Backing up Local &amp; Roaming Directory @ the same time..</p>
<p dir="auto">robocopy /E /copy:DAT /dcopy:DAT "%USERPROFILE%\AppData\Local\Opera Software\Opera Stable" "C:\TEMP\Operan Local Backup"<br />
robocopy /E /copy:DAT /dcopy:DAT "%USERPROFILE%\AppData\Roaming\Opera Software\Opera Stable" "C:\TEMP\Opera Roaming Backup"</p>
<p dir="auto">Example For Restore..</p>
<p dir="auto">robocopy /E /copy:DAT /dcopy:DAT "C:\TEMP\Opera Local Backup" "%USERPROFILE%\AppData\Local\Opera Software\Opera Stable"<br />
robocopy /E /copy:DAT /dcopy:DAT "C:\TEMP\Opera Roaming Backup" "%USERPROFILE%\AppData\Roaming\Opera Software\Opera Stable"</p>
<p dir="auto">And or like this<br />
Example - For Backup</p>
<p dir="auto">robocopy /E /copy:DAT /dcopy:DAT "C:\Users\useer name\AppData\Local\Opera Software\Opera Stable" "C:\TEMP\Opera Local Backup"<br />
robocopy /E /copy:DAT /dcopy:DAT "C:\Users\useer name\AppData\Roamig\Opera Software\Opera Stable" "C:\TEMP\Opera Roaming Backup"</p>
<p dir="auto">Example - For Restore</p>
<p dir="auto">robocopy /E /copy:DAT /dcopy:DAT "C:\TEMP\Opera Local Backup" "C:\Users\useer name\AppData\Local\Opera Software\Opera Stable"<br />
robocopy /E /copy:DAT /dcopy:DAT "C:\TEMP\Opera Roaming Backup" "C:\Users\useer name\AppData\Roamig\Opera Software\Opera Stable"</p>
<p dir="auto">For Backing up your Opera Portable - Lets say just your Profile Data..<br />
Copy and paste it to notepad. Save as - Opera Portable Profile Restore.bat</p>
<p dir="auto">Example - For Portable Profile Backup..</p>
<p dir="auto">robocopy /E /copy:DAT /dcopy:DAT "C:\zz (x86)\Apps\Browsers\Opera\profile" "C:\TEMP\Opera Portable Profile Backup\profile"</p>
<p dir="auto">Example - For Portable Profile Restore..</p>
<p dir="auto">robocopy /E /copy:DAT /dcopy:DAT "C:\TEMP\Opera Portable Profile Backup\profile" "C:\zz (x86)\Apps\Browsers\Opera\profile"</p>
<p dir="auto">Here is a couple more..</p>
<p dir="auto">Example - For Backup..</p>
<p dir="auto">@echo off<br />
:: variables<br />
set backupcmd=robocopy /E /copy:DAT /dcopy:DAT<br />
%backupcmd% "C:\Temp\Test 1" "C:\Temp\Test 2"<br />
echo Backup Complete!<br />
@pause</p>
<p dir="auto">Example For Restore..</p>
<p dir="auto">@echo off<br />
:: variables<br />
set backupcmd=robocopy /E /copy:DAT /dcopy:DAT<br />
%backupcmd% "C:\Temp\Test 2" "C:\Temp\Test 1"<br />
echo Backup Complete!<br />
@pause</p>
]]></description><link>https://forums.opera.com/post/145279</link><guid isPermaLink="true">https://forums.opera.com/post/145279</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Sat, 28 Apr 2018 06:00:48 GMT</pubDate></item><item><title><![CDATA[Reply to Accessing bookmarks on new computer on Sat, 28 Apr 2018 01:01:10 GMT]]></title><description><![CDATA[<p dir="auto">Thanks for the help guys!<img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/263a.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--smiling_face" title=":smiling_face:" alt="☺" /></p>
]]></description><link>https://forums.opera.com/post/145271</link><guid isPermaLink="true">https://forums.opera.com/post/145271</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Sat, 28 Apr 2018 01:01:10 GMT</pubDate></item><item><title><![CDATA[Reply to Accessing bookmarks on new computer on Sat, 28 Apr 2018 00:18:25 GMT]]></title><description><![CDATA[<p dir="auto">"import bookmarks and settings" under basic settings should allow you to import from any folder or attached device.</p>
<p dir="auto">You could copy your entire profile also, if you wish, to a usb stick.   The location is listed  under about opera, paths, profile. But that is a manual process only.</p>
]]></description><link>https://forums.opera.com/post/145270</link><guid isPermaLink="true">https://forums.opera.com/post/145270</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Sat, 28 Apr 2018 00:18:25 GMT</pubDate></item><item><title><![CDATA[Reply to Accessing bookmarks on new computer on Sat, 28 Apr 2018 00:13:56 GMT]]></title><description><![CDATA[<p dir="auto">@jo15d , you can import the HTML file just fine. Go to the Menu/Bookmarks/Import bookmarks and settings</p>
]]></description><link>https://forums.opera.com/post/145269</link><guid isPermaLink="true">https://forums.opera.com/post/145269</guid><dc:creator><![CDATA[racerbob]]></dc:creator><pubDate>Sat, 28 Apr 2018 00:13:56 GMT</pubDate></item></channel></rss>