23 lines
831 B
Batchfile
23 lines
831 B
Batchfile
rem =================================================================================
|
|
rem CUST - FwUpdateSw copy all needeed DLLs to user download directory for import
|
|
rem of this release to the Laatzen DB.
|
|
rem =================================================================================
|
|
rem Author: Thomas Wiedebusch
|
|
rem File: CopyFwUpdateSwToDownload_ALL_DLLs.bat
|
|
rem Date: 2023-Nov-10
|
|
|
|
set REL_SRC_PATH=bin\Release
|
|
set ABS_DEST_PATH=c:\Users\%USERNAME%\Downloads\ServiceFwUpdateSw
|
|
|
|
mkdir "%ABS_DEST_PATH%"
|
|
mkdir "%ABS_DEST_PATH%\de"
|
|
|
|
copy "%REL_SRC_PATH%\de\*" "%ABS_DEST_PATH%\de\"
|
|
|
|
copy "%REL_SRC_PATH%\*.dll" "%ABS_DEST_PATH%\"
|
|
|
|
copy "%REL_SRC_PATH%\configuration.json" "%ABS_DEST_PATH%\"
|
|
copy "%REL_SRC_PATH%\MeterFilesEraseRestore.json" "%ABS_DEST_PATH%\"
|
|
copy "%REL_SRC_PATH%\NlogConfig.xml" "%ABS_DEST_PATH%\"
|
|
|
|
pause |