Logon Script in WorkGroup.

  • Thread starter Thread starter Rath
  • Start date Start date
R

Rath

I want to deploy a software in a big network. The network is a
Workgroup. How can I use logon script in a Workgroup?
 
Rath said:
I want to deploy a software in a big network. The network is a
Workgroup. How can I use logon script in a Workgroup?

--
Posted using the http://www.windowsforumz.com interface, at author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.windowsforumz.com/General-Discussion-Logon-Script-WorkGroup-ftopict266235.html
Visit Topic URL to contact author (reg. req'd). Report abuse:
http://www.windowsforumz.com/eform.php?p=833947

You can do this:
- Create a share called "Netlogon" on your server.
- Place a file called "netlogon.bat" into this share.
- Make its two first lines like so:
Line1: @echo off
Line2: xcopy /d /y \\YourServer\netlogon\netlogon.bat
"%AllUsersProfile%\Start Menu\Programs\Startup" > nul
- Prime the pump on each PC by copying this file manually into
its destination.

You can now modify the script centrally; it will automatically be
copied to each workstation as people log on.

You should also ask yourself why you operate a big network
in a Workgroup environment. By not operating in a domain
environment, you're causing yourself a lot of extra work, and
you deprive your users of the advantages of centralised
account administrataion (centralised password control, roaming
etc. etc.)
 
Rath said:
I want to deploy a software in a big network. The network is a
Workgroup. How can I use logon script in a Workgroup?

thanks for the info.
It is a customer network. They are now shifting to workgroup to
domain.
 
Back
Top