I wrote a small program that I'm going to place on each workstation, so that the user is able to give the Helpdesk all nessesary information.

I thought it would be usefull - give it a shot.


SETCONSOLE("HIDE")

SELECT
CASE @INWIN = "1"
$Os = "Windows NT "
CASE @INWIN = "2"
$Os = "Windows 95 "
ENDSELECT

$Info = CHR(9) + CHR(9) + CHR(9) + CHR(9) + CHR(9) + CHR(9) + CHR(13) + CHR(10)
$Info = $Info + "User ID " + CHR(9) + "@userid" + CHR(13) + CHR(10)
$Info = $Info + "Fullname " + CHR(9) + "@fullname" + CHR(13) + CHR(10)
$Info = $Info + "Privilege " + CHR(9) + "@priv" + CHR(13) + CHR(10)
$Info = $Info + "IP-Address " + CHR(9) + "@ipaddress0" + CHR(13) + CHR(10)
$Info = $Info + "Domain " + CHR(9) + "@domain" + CHR(13) + CHR(10)
$Info = $Info + "Workstation " + CHR(9) + "@wksta" + CHR(13) + CHR(10)
$Info = $Info + "Login-Server " + CHR(9) + SUBSTR(@lserver,3,LEN("@lserver")) + CHR(13) + CHR(10)
$Info = $Info + "Passwordage " + CHR(9) + "@pwage / @maxpwage" + CHR(13) + CHR(10)
$Info = $Info + "Operating Syst." + CHR(9) + "$os @dos" + CHR(13) + CHR(10)


MESSAGEBOX($Info,"Important Information for the Helpdesk", 64)


Cheers,
Mario

_________________________
Cheers, Porq.