Skip to content

Instantly share code, notes, and snippets.

@janasco
Created August 3, 2023 09:46
Show Gist options
  • Save janasco/c6168d17ed6eb4b6eaf7fd46fb775f60 to your computer and use it in GitHub Desktop.
Save janasco/c6168d17ed6eb4b6eaf7fd46fb775f60 to your computer and use it in GitHub Desktop.
AnyDesk Reset
@echo off & setlocal enableextensions
title Reset AnyDesk
reg query HKEY_USERS\S-1-5-19 >NUL || (echo Please Run as administrator.& pause >NUL&exit)
chcp 437
call :stop_any
del /f "%ALLUSERSPROFILE%\AnyDesk\service.conf"
del /f "%APPDATA%\AnyDesk\service.conf"
copy /y "%APPDATA%\AnyDesk\user.conf" "%temp%\"
rd /s /q "%temp%\thumbnails" 2>NUL
xcopy /c /e /h /r /y /i /k "%APPDATA%\AnyDesk\thumbnails" "%temp%\thumbnails"
del /f /a /q "%ALLUSERSPROFILE%\AnyDesk\*"
del /f /a /q "%APPDATA%\AnyDesk\*"
call :start_any
:lic
type "%ALLUSERSPROFILE%\AnyDesk\system.conf" | find "ad.anynet.id=" || goto lic
call :stop_any
move /y "%temp%\user.conf" "%APPDATA%\AnyDesk\user.conf"
xcopy /c /e /h /r /y /i /k "%temp%\thumbnails" "%APPDATA%\AnyDesk\thumbnails"
rd /s /q "%temp%\thumbnails"
call :start_any
echo *********
echo Completed.
echo(
goto :eof
:start_any
sc start AnyDesk
sc start AnyDesk
if %errorlevel% neq 1056 goto start_any
set AnyDesk1=%SystemDrive%\Program Files (x86)\AnyDesk\AnyDesk.exe
set AnyDesk2=%SystemDrive%\Program Files\AnyDesk\AnyDesk.exe
if exist "%AnyDesk1%" start "" "%AnyDesk1%"
if exist "%AnyDesk2%" start "" "%AnyDesk2%"
exit /b
:stop_any
sc stop AnyDesk
sc stop AnyDesk
if %errorlevel% neq 1062 goto stop_any
taskkill /f /im "AnyDesk.exe"
exit /b
@Andresbr75
Copy link

Excelente muchas gracias!

@Hidosi
Copy link

Hidosi commented May 20, 2024

Good script, thank you very much!

@lpbedia2792
Copy link

Thank you so much

@Martini002
Copy link

Working, thank you

@AndoRjh
Copy link

AndoRjh commented Jun 13, 2024

thanks

@Rafo211
Copy link

Rafo211 commented Jun 17, 2024

Working. Thank you very much

@morphx666
Copy link

Yes, it does work, but I lost all my saved passwords...

@Hexonata
Copy link

Thank you very much

@crocangIt
Copy link

If you need to delete the folder containing the reset script and the script itself, stop AnyDesk first, then start it normally.

@alenatal1971
Copy link

alenatal1971 commented Sep 20, 2024

Espetacular, Parabéns pelo trabalho.

@KengSeong99
Copy link

Good script, thank you very much!

@Sicilianul
Copy link

Works like a charm. Thanks!

@selltool
Copy link

selltool commented Oct 3, 2024

Thanks you

@hamidrezakohzadpour
Copy link

Working!. Tnx

@digitalonellc
Copy link

Use this to run as admin automatically.

@echo off

:: BatchGotAdmin
REM --> Check for permissions
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (

nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
)

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params= %*
echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%temp%\getadmin.vbs"

"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B

:gotAdmin
pushd "%CD%"
CD /D "%~dp0"

@echo off & setlocal enableextensions
title Reset AnyDesk
reg query HKEY_USERS\S-1-5-19 >NUL || (echo Please Run as administrator.& pause >NUL&exit)
chcp 437
call :stop_any
del /f "%ALLUSERSPROFILE%\AnyDesk\service.conf"
del /f "%APPDATA%\AnyDesk\service.conf"
copy /y "%APPDATA%\AnyDesk\user.conf" "%temp%"
rd /s /q "%temp%\thumbnails" 2>NUL
xcopy /c /e /h /r /y /i /k "%APPDATA%\AnyDesk\thumbnails" "%temp%\thumbnails"
del /f /a /q "%ALLUSERSPROFILE%\AnyDesk*"
del /f /a /q "%APPDATA%\AnyDesk*"
call :start_any
:lic
type "%ALLUSERSPROFILE%\AnyDesk\system.conf" | find "ad.anynet.id=" || goto lic
call :stop_any
move /y "%temp%\user.conf" "%APPDATA%\AnyDesk\user.conf"
xcopy /c /e /h /r /y /i /k "%temp%\thumbnails" "%APPDATA%\AnyDesk\thumbnails"
rd /s /q "%temp%\thumbnails"
call :start_any
echo *********
echo Completed.
echo(
goto :eof

:start_any
sc start AnyDesk
sc start AnyDesk
if %errorlevel% neq 1056 goto start_any
set AnyDesk1=%SystemDrive%\Program Files (x86)\AnyDesk\AnyDesk.exe
set AnyDesk2=%SystemDrive%\Program Files\AnyDesk\AnyDesk.exe
if exist "%AnyDesk1%" start "" "%AnyDesk1%"
if exist "%AnyDesk2%" start "" "%AnyDesk2%"
exit /b

:stop_any
sc stop AnyDesk
sc stop AnyDesk
if %errorlevel% neq 1062 goto stop_any
taskkill /f /im "AnyDesk.exe"
exit /b

@digitalonellc
Copy link

Solution to run as admin inside batch file is the solution posted here:

https://stackoverflow.com/questions/1894967/how-to-request-administrator-access-inside-a-batch-file

@rehan123451
Copy link

Thank u man

@DcDos
Copy link

DcDos commented Nov 5, 2024

Thanks!

@nate1gp
Copy link

nate1gp commented Jan 10, 2025

thank you so much worked like a charm. thank you a million times over as i cant afford to pay for any desk my currency is total crap

@rosfort65
Copy link

My hero of the day !

@kumastergarcias
Copy link

kumastergarcias commented Mar 5, 2025

greetings and thank you very much
Does it still work for 2025?

How save the file: AnyDesk-Reset.cmd or AnyDesk-Reset.bat?

thank you

@kumastergarcias
Copy link

My hero of the day !

hi!!! How save the file: AnyDesk-Reset.cmd or AnyDesk-Reset.bat?

@Sicilianul
Copy link

My hero of the day !

hi!!! How save the file: AnyDesk-Reset.cmd or AnyDesk-Reset.bat?

Save as .bat file and run as administrator

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment