Guest User

Untitled

a guest
Jan 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. for /F "delims=" %%x in (key.txt) do
  2. (
  3. echo value read from file -- %%x **Shows correct value**
  4. set "SERIAL=%%x"
  5. echo number which got assigned -- %SERIAL% **Shows incorrect value**
  6. set "SERIAL=" ** Doesnt clear the set value**
  7. )
Add Comment
Please, Sign In to add comment