Doubt in Batch File
Windows API
1
Posts
1
Posters
0
Views
1
Watching
-
Hi All, I have used batch file for set username password as environment variable. @echo off set /p user_name=Enter Username: set /p passwd=Enter Password: set DBUserName=%user_name% set DBPassword=%passwd% ::@echo on Now i need to do password as a encryption(masking) format(for ex:******) while user entering the password. Is it possible?if yes plz share ur idea. Thanks,
Mohan