Well..... short answer is no. You could use a VBScript with some complex code like this:
http://www.edugeek.net/for
(Pqassword function that calls IE half way down). or mask it a little by changing screen colours, e.g. with a bit of fiddling you can make a small popup for entering using just batch:
@echo off
Echo Please enter your password in the popup window and then press enter
set tempbat="%temp%\p.cmd"
REM Create temporary batch file to make popup window for entering password 'masked'
echo mode 20,1 >%tempbat%
echo color 01 >>%tempbat%
echo Title Enter Password >>%tempbat%
echo setlocal enabledelayedexpansion >>%tempbat%
echo set /p Pass= >>%tempbat%
echo echo !pass!^>"%temp%\pass.txt" >>%tempbat%
echo exit >>%tempbat%
echo exit >>%tempbat%
start /wait "" %tempbat%
set /p Password=<"%temp%\pass.txt"
echo The password is %password%
Main Topics
Browse All Topics





by: t0t0Posted on 2009-09-07 at 13:18:38ID: 25277070
Try this:
Select allOpen in new window