How can I preserve spaces in user input for bat scripts?

2.9k Views Asked by At

I have a bat script to dump a list of user names and their display name from Active Directory. It works great until a group we need to dump names from a group that has a space.

@echo off
Set /p GROUP="Group Name: "

echo This window will close when finished!
echo Larger groups may take awhile!

 dsquery group -name %Group% | DSGET group -members | dsget user -samid -display > %GROUP%.txt

Is there a way to preserve spaces with user input? This is a remote server at work, so I don't have privileges to install applications or anything, just create basic scripts.

1

There are 1 best solutions below

1
On BEST ANSWER

yup, just a matter of enclosing the var string in "", try this:

dsquery group -name "%Group%" | DSGET group -members | dsget user -samid -display > %GROUP%.txt