Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Click here to start participating now! Also, check out the New User Guide.
.bat passwords
Name: djas Date: September 19, 2004 at 13:14:20 Pacific OS: Windows XP/Longhorn GUI CPU/Ram: n/a
Comment:
does anyone know a secure password script of somesort to use with a batch file to stop people viewing the source being able to get the password thanx
Summary: I am wondering if it is possible to create a variable in the registry that holds a password "1qaz3edc" and then in the batch file make it match that password up to the one it requests. Sorry if it ma...
Summary: Originally posted in XP forum. But it was suggested that I post it here. Any help is very appreciated. Thanks. ... I thought it would be a simple thing...lol. We have a security audit next week and...
Summary: Try this: :: renamer.bat @echo off :main for %%f in (abc*.txt) do call :renamer %%f goto :eof :renamer set old=%1 ren %1 %old:~3,9% :: end This will remove the first 3 letters of the filename. login...