Search found 3 matches

by Ollyc
11 Nov 2018 13:33
Forum: DOS Batch Forum
Topic: Batch file password login - different everyday
Replies: 3
Views: 4503

Re: Batch file password login - different everyday

@echo off set /P c=%date% if /I "%c%" EQU "10/11/2018" goto :10/11/2018 :choice if /I "%c%" EQU "11/11/2018" goto :11/11/2018(different password) if /I "%c%" EQU "10/11/2018" goto :10/11/2018( different password) iv come up with an idea above . when cmd prompt displays the date is it possible that i...
by Ollyc
11 Nov 2018 11:25
Forum: DOS Batch Forum
Topic: Batch file password login - different everyday
Replies: 3
Views: 4503

Re: Batch file password login - different everyday

Hello Shadow theif

Is it possible you could point me to the right place , im pretty knew to coding batch files

Thank you
by Ollyc
10 Nov 2018 10:52
Forum: DOS Batch Forum
Topic: Batch file password login - different everyday
Replies: 3
Views: 4503

Batch file password login - different everyday

Hello , Im seeing if its possible to have a cmd batch file where the password is different everyday. I have to run another batch file which will tell me the password to enter on my other batch file. Im guessing it would have to work on date order so each date has its own password. Can anyone give an...