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

ImportPrinters.bat - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e44eacce997d3a735292122557fa81e6b5507749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@echo off
SET DIR=%~dp0
SET INPUT_DIR=%AppData%\PrusaSlicer\printer
SET OUTPUT_DIR=%~dp0PrusaSlicer\printer

SET files[0]=EPAX X1.ini
SET files[1]=Phrozen Sonic Mini.ini
SET files[2]=Zortrax Inkspire.ini
SET files[3]=Nova3D Elfin.ini

echo PrusaSlicer Printers Instalation
echo This will replace printers, all changes will be discarded
echo %INPUT_DIR%
echo %OUTPUT_DIR%

for /F "tokens=2 delims==" %%s in ('set files[') do xcopy /y "%INPUT_DIR%\%%s" "%OUTPUT_DIR%"

REM xcopy /i /e /y %INPUT_DIR% %OUTPUT_DIR%
pause