Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

new logon interface / script

Status
Not open for further replies.

FISKO

Technical User
Aug 30, 2005
113
GB
Hi all,
I know its possible to set an AUTO LOGON to logon a default user onto a network, and I can set this user via AD to have the restictions I require etc. However is it possible to have a script/input box that runs above the windows desktop and use this in conjuncton with a script to LOGON a user, ie to map his/her my document folder/ printers etc? and then also LOGOUT via this input box, disconecting the users my documents?
The reason I want this is to allow the pupils to quickly hot seat the Computers without the need to wait for the normal logon/logoff. Any ideas?
Thanks
 
is it possible to have a script/input box that runs above the windows desktop". What do you mean by "above"?

See if there is anything worthwhile here?

Scripting question
thread779-1134826

 
Thanks some useful stuf there, I am attempting to create a HTA which will take the inputed username and password and then use this to map a home drive folder.
The base template will look like this when the HTA is run.

<head>

<title>NETWORK LOGON</title>
<HTA:APPLICATION
APPLICATIONNAME="HTA Test"
SCROLL="NO"
SINGLEINSTANCE="yes"
CAPTION="NO"

BORDER = "thin"
BorderStyle = Complex

>
</head>

<body STYLE="font:14 pt arial; color:white;
filter:progid:DXImageTransform.Microsoft.Gradient
(GradientType=1, StartColorStr='#000000', EndColorStr='#0000FF')">


<script language="VBScript">
window.resizeTo 300,180
window.moveTo 700,550
Sub TestSub
Msgbox "Testing 1-2-3."
End Sub
</script>

BUNGAY MIDDLE NETWORK

<body>
<input type="button" value="LOGON" name="run_button" onClick="TestSub"><p>





 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top