-----Original Message-----
Hi
set /p can be used:
@echo off
set /p FOLDER=Enter the folder path:
echo %FOLDER%
pause
If you want a windows dialog box from your batch file, you can use freeware
utilities for this:
Batch Utilities & Tools
http://home.mnet-online.de/horst.muc/main.htm
- and -
Batch Query
http://wettberg.home.texas.net/freeware.htm
Batch Query - The program provides a way to produce Windows dialogs to ask
questions or provide information during logon script or batch file processing.
The included "example.bat" shows each type of dialog produced.
--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide:
http://www.microsoft.com/technet/scriptcenter
.
That worked GREAT!!!!! Thanks.