I have a deployment script (.bat), part of which requires calling other programs and sending a password on the command line. I log the output of the deployment script to a file. The problem is that the password gets logged as well. I need a way of sanitizing this log file.
One way to do this is to not echo the line which contains the password, but I would prefer to just replace the password with another string.
This is done on a server (Windows 2008), so I can't just install cygwin or the like. I thought the Windows 'find' command may help, but the best it can do is omit the whole line with the '/v' option.
UPD: Did some research, and I think PowerShell is the way to go. The password is in the environment variable, so need need to figure out how to get read it and replace.
