mirror of
https://github.com/uroni/urbackup_frontend_wx.git
synced 2025-10-26 11:19:28 +00:00
14 lines
349 B
Batchfile
14 lines
349 B
Batchfile
@echo off
|
|
|
|
net session >nul 2>&1
|
|
if NOT %errorLevel% == 0 (
|
|
echo Failure: Current permissions inadequate. Please run as administrator.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
set scrubDisks="%1"
|
|
if [%1]==[] set scrubDisks="SelectViaGUI"
|
|
|
|
"%~dp0\UrBackupClientBackend.exe" --cmdline --no-server --plugin fsimageplugin.dll --disk_scrub "%scrubDisks%"
|
|
pause |