Search found 1 match

by sab
29 Nov 2011 00:44
Forum: DOS Batch Forum
Topic: Password should not be displayed in Windows 64 bit machine
Replies: 1
Views: 3476

Password should not be displayed in Windows 64 bit machine

Hi I was trying to use this below strip of code to mask the password. @echo off echo hP1X500P[PZBBBfh#b##fXf-V@`$fPf]f3/f1/5++u5>in.com echo Enter password: for /f "tokens=*" %%i in ('in.com') do set "password=%%i" del in.com echo. echo The Password is:"%password%" This...