Advertisement
Guest User

Untitled

a guest
Dec 15th, 2013
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. @echo off
  2. :::::::::パターン1:::::::::
  3. SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
  4. for /F "tokens=3" %%i in ('vol c: ^| findstr /C:シリアル番号') do (
  5. set work=%%i
  6. set work=!work:-=!
  7. echo %work%
  8. )
  9. ENDLOCAL
  10.  
  11. :::::::::パターン2:::::::::
  12. for /F "tokens=3" %%i in ('vol c: ^| findstr /C:シリアル番号') do call :test %%i
  13. goto :EOF
  14.  
  15. :test
  16. set work=%1
  17. set work=%work:-=%
  18. echo %work%
  19. goto :EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement