Discussion forum for all Windows batch related topics.
Moderator: DosItHelp
-
Beezenees
- Posts: 1
- Joined: 09 Dec 2016 13:32
#1
Post
by Beezenees » 09 Dec 2016 13:36
Code: Select all
@echo off
title NetworkPassword
color 0c
echo Hva er internett navnet?(husk store å små bokstaver)
set /P INPUT=
netsh wlan show profile name=%INPUT% key=clear | findstr Key
pause
Here i want to let the People Write in whats %INPUT% will be.
sorry for my English
Last edited by
Squashman on 09 Dec 2016 14:11, edited 1 time in total.
Reason: Mod Edit: Added code tags.
-
Squashman
- Expert
- Posts: 4486
- Joined: 23 Dec 2011 13:59
#2
Post
by Squashman » 09 Dec 2016 14:23
Your code looks fine for getting user input. What seems to be the problem?