You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create batch file (*.bat)
Change path to yours restic-browser.exe
@echo off
set RESTIC_REPOSITORY=rest:http://example.repository/repo
set RESTIC_PASSWORD=PasswordToRespoitory
start "" d:\Restic-Browser.exe (Path to Restic-Browser.exe)
This batch file will start Restic Browser and connect to selected restic repository.
The text was updated successfully, but these errors were encountered:
@echo off
set RESTIC_REPOSITORY=b2:<YourRepository>
set B2_ACCOUNT_ID=<YourAccountID>
set B2_ACCOUNT_KEY=<YourAccountKey>
set RESTIC_PASSWORD=<YourPassword>
start "" .\Restic-Browser.exe
No quotes on the account ID, account key, or password (don't know if that's a problem if there's a space in your password). And obviously change the start path if your .bat isn't in the same folder as the exe.
emuell
changed the title
[Guide] [HOWTO] [Windows] start Restic-browser with selected repository
HOWTO: Start Restic-browser with selected repository on Windows
Jan 18, 2025
Create batch file (*.bat)
Change path to yours restic-browser.exe
This batch file will start Restic Browser and connect to selected restic repository.
The text was updated successfully, but these errors were encountered: