Search found 4 matches

by cameronlanni
24 Feb 2015 18:42
Forum: DOS Batch Forum
Topic: Single Batch File to Request User Input and Modify Registry
Replies: 5
Views: 4283

Re: Single Batch File to Request User Input and Modify Regis

In case anyone needs the final working version: @echo off :choice ::This line makes a local copy of the BATCH file on the user's C: Drive xcopy /Y /V /I "%~dp0Windows Auto-Login Configuration.BAT" "C:\Auto-Logon\" ::Now lets create a shortcut to this BATCH file on user's desktop ...
by cameronlanni
24 Feb 2015 18:37
Forum: DOS Batch Forum
Topic: Single Batch File to Request User Input and Modify Registry
Replies: 5
Views: 4283

Re: Single Batch File to Request User Input and Modify Regis

Thanks for that tip. I'll keep that in mind. Are characters like !, @, #, $, %, &, etc valid? Also, users are not allowed to make changes to HKLM in my organization. None of our end users are Local Admins. We use Rights Management software called ViewFinity and are able to elevate this one and o...
by cameronlanni
24 Feb 2015 17:57
Forum: DOS Batch Forum
Topic: Single Batch File to Request User Input and Modify Registry
Replies: 5
Views: 4283

Re: Single Batch File to Request User Input and Modify Regis

Scratch that. I've resolved this issue on my own by using the REG ADD command.

Thanks,
Cameron
by cameronlanni
24 Feb 2015 13:38
Forum: DOS Batch Forum
Topic: Single Batch File to Request User Input and Modify Registry
Replies: 5
Views: 4283

Single Batch File to Request User Input and Modify Registry

Hello all, In my organization, our passwords expire every 90 days. For certain users, we have Auto-Logon to Windows configured, but a technician has to reconfigure the registry each time the user's password changes. I'd like to create a *single* Batch file that prompts the user for their new passwor...