You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
REM 2 | The user pressed CTRL+C to terminate xcopy.
8
-
REM 4 | Initialization error occurred. There is not enough memory or disk space, or you entered an invalid drive name or invalid syntax on the command line.
9
-
REM 5 | Disk write error occurred.
3
+
rem Exit codes for xcopy
4
+
rem code | Description
5
+
rem 0 | Files were copied without error.
6
+
rem 1 | No files were found to copy.
7
+
rem 2 | The user pressed CTRL+C to terminate xcopy.
8
+
rem 4 | Initialization error occurred. There is not enough memory or disk space, or you entered an invalid drive name or invalid syntax on the command line.
9
+
rem 5 | Disk write error occurred.
10
10
11
-
SETSOURCE=%2
12
-
SETSRC_PARSE=%SOURCE:/=\%
13
-
SETTARGET=%4
14
-
SETTARGET=%TARGET:\=%
11
+
setSOURCE=%2
12
+
setSRC_PARSE=%SOURCE:/=\%
13
+
setTARGET=%4
14
+
setTARGET=%TARGET:\=%
15
15
16
16
call :parse%TARGET%
17
17
echo%TARGET% not found. Please ensure the device is correctly connected.
@@ -21,19 +21,29 @@ exit 7
21
21
setlist=%1
22
22
setlist=%list:"=%
23
23
24
-
for /f "tokens=1* delims=,"%%ain ("%list%") DO (
24
+
for /f "tokens=1* delims=,"%%ain ("%list%") do (
25
25
ifnot"%%a"==""call :sub%%a
26
+
ifnot"%%a"==""call :nod%%a
26
27
ifnot"%%b"==""call :parse"%%b"
27
28
)
28
29
goto :eof
29
30
31
+
rem Try with the short name NOD_XXX
32
+
:nod
33
+
setlocalenabledelayedexpansion
34
+
echo.%~1|findstr /C:"NODE_">nul2>&1
35
+
ifnoterrorlevel1 (
36
+
setname=%~1
37
+
call :sub!name:E_=_!
38
+
)
39
+
goto :eof
30
40
31
41
:sub
32
42
setlocalenabledelayedexpansion
33
43
for /F "skip=1 tokens=*"%%ain ('WMIC LOGICALDISK where"volumename like '%~1'" get deviceid 2^>NUL') doifnotdefined id setid=%%a
34
-
callSet"deviceid=%%id: =%%"
44
+
callset"deviceid=%%id: =%%"
35
45
ifnot"%deviceid%"=="" (
36
46
XCOPY%SRC_PARSE%%deviceid% /Y /Q
37
-
if!errorlevel!==0 (echo Upload complete on %1^(%deviceid%^))
47
+
if!errorlevel!==0 (echo Upload complete on %1^(%deviceid%^))
0 commit comments