%USER% under Win95

Grant Leslie grantl@deerinet.nb.ca
Sat Mar 1 19:39:00 GMT 1997


David O'Shea wrote:
> 
> Would anyone know of a program, or be able to write one, which would
> set the %USER% environment variable under Windows 95?  Or could someone
> tell me how to modify environment variables (the global ones, not the
> current process' ones)?
> 

	First you'll need to find the file winset.exe on the Win95 CD and place
it somewhere in your path.... This program works like the DOS set
command however it places the variable in the Global Enviroment.
	Now the following script should work... I tested it some on my own
computer. The computer MUST be logged on the network before this will
work.

#!/bin/sh
# First set USERNAME to the current username
export USERNAME=$(net config | grep User | tr -s ' ' | tr A-Z a-z | cut
-f 3 -d ' ' )

# This line will place the var USERNAME in the Global Enviroment
winset USERNAME=$USERNAME

# Now setup the HOME directory
export HOME=/home/$USERNAME
winset HOME=$HOME

# Create the appropriate /etc/passwd file
echo $USERNAME::500:500::$HOME:/bin/sh > /etc/passwd
-
For help on using this list, send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".



More information about the Cygwin mailing list