sfzl88h 当前离线
列兵
@echo off title 【文件备份】拷贝中... for /f "tokens=15" %%a in ('ipconfig ^| find /i "IP Address"') do echo %%a &md %computername%-%%a &XCOPY /s/e/i/y d:\*.txt %computername%-%%a复制代码
522235677 (张三)当前离线
少校
TOP
for /f "tokens=15" %%a in ('ipconfig ^| find /i "IP Address"') do ( echo %%a md %computername%-%%a XCOPY /s/e/i/y d:\*.txt %computername%-%%a )复制代码
apang 当前离线
上将
@echo off for /f "tokens=15" %%a in ('ipconfig ^| find /i "IP Address"') do ( for /f "delims=" %%b in ("%computername%-%%a") do ( xcopy /s /y d:\*.txt "%%~nxb\" ) ) pause复制代码