I have a simple batch file:
@echo off
set username=user
set password=pass
::do some things with the username and password
the user could just call the batch file from cmd, and type set
after my batch file has run it's course and see the username and password.
Is there any way to fix this?
(excluding bat to exe converters)