Welcome to mirror list, hosted at ThFree Co, Russian Federation.

remove_giveio.bat « windows « avrdude « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 024427db820fc75c512235d273790e38f8e1a84e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@set DIRVERNAME=giveio

@loaddrv stop %DIRVERNAME%
@if errorlevel 2 goto error

@loaddrv remove %DIRVERNAME%
@if errorlevel 1 goto error

@goto exit

:error
@echo ERROR: Deinstallation of %DIRVERNAME% failed

:exit