Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Logging in and batch files

  • 21-08-2006 2:42pm
    #1
    Registered Users, Registered Users 2 Posts: 451 ✭✭


    I've got a NAS on my small home network now, and I want to start trying to get each windows client set up the same way.

    I'm considering having a batch file on NAS that when a user logs in the batch file would execute.

    I'm wondering in where windows setup can I do this, and how much power has a batch file.

    Examples...
    Check what services are running, and change their attributes.
    Check registry settings are the same across each PC.
    Allow programs to update themselves.
    Maintenance programs like disk cleanup, spyware can be executed in the background.
    etc etc

    Thanks,
    LK.

    P.S. I'm assuming all are windows XP professional installations.


Comments

  • Registered Users, Registered Users 2 Posts: 6,949 ✭✭✭SouperComputer


    SAMBA with as a setup as a domain controller would be best with logon scripts.

    What are you using as a NAS?


  • Registered Users, Registered Users 2 Posts: 451 ✭✭LeperKing


    SAMBA with as a setup as a domain controller would be best with logon scripts.

    What are you using as a NAS?

    Its samba, but no domain controller and I don't have access to the smb.conf.
    The NAS is Asus WL-700gE.

    LK


  • Registered Users, Registered Users 2 Posts: 68,317 ✭✭✭✭seamus


    Are the client OSes XP Home or XP Pro? You could specify the scripts as logon scripts individually on each machine through group policy (although you don't have to sit at each machine to do it).


  • Registered Users, Registered Users 2 Posts: 451 ✭✭LeperKing


    seamus wrote:
    Are the client OSes XP Home or XP Pro? You could specify the scripts as logon scripts individually on each machine through group policy (although you don't have to sit at each machine to do it).

    XP Pro. I don't mind setting the login script for each client. I'm curious can everything be altered through a batch file.

    LK


  • Registered Users, Registered Users 2 Posts: 68,317 ✭✭✭✭seamus


    LeperKing wrote:
    XP Pro. I don't mind setting the login script for each client. I'm curious can everything be altered through a batch file.

    LK
    Depends on what you mean by "everything".

    If you're looking to do this to get yourself some good experience, then have a look at the Windows Scripting Host. For all intents and purposes, it's shell scripting for Windows, using VBScript. It's actually quite simple, and there are thousands of MB of resources online for it.
    It's far far superior to batch files and you can pretty much do anything to a Windows machine with it.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 451 ✭✭LeperKing


    I'll look into windows scripting. Does the user account have to have administrator privileges for it's logon script to function correctly?

    LK


  • Registered Users, Registered Users 2 Posts: 68,317 ✭✭✭✭seamus


    LeperKing wrote:
    I'll look into windows scripting. Does the user account have to have administrator privileges for it's logon script to function correctly?

    LK
    Logon scripts act with the priviledges of the user who's logged in. Startup scripts run with the priviledges of the SYSTEM user, i.e. the highest possible priviledge. So the script will only fail to function correctly if you ask it to do something it can't.


  • Moderators, Recreation & Hobbies Moderators, Science, Health & Environment Moderators, Technology & Internet Moderators Posts: 92,385 Mod ✭✭✭✭Capt'n Midnight


    for most versions of windows add a one line batch file to the startup group

    if exist \\server\netlogon\logon.bat \\server\netlogon\logon.bat

    the if exist speeds it up when you can't see \\server but you may have to drop it if using windows 3.x


  • Registered Users, Registered Users 2 Posts: 451 ✭✭LeperKing


    for most versions of windows add a one line batch file to the startup group

    When you say 'startup group' what do you mean?

    Also it seems it you can use VBScript or JScript. Is there really no difference?

    I might go through the JScript route as I'm more familar with Java.

    LK


  • Registered Users, Registered Users 2 Posts: 68,317 ✭✭✭✭seamus


    LeperKing wrote:
    When you say 'startup group' what do you mean?
    I think he means in the list of startup scripts - you can specify multiple scripts to run at logon/startup.
    Also it seems it you can use VBScript or JScript. Is there really no difference?
    Not really. You probably know this already, but JScript is only similar to Java in syntactical terms, otherwise it's completely different. JScript is MS's implementation of Javascript.


  • Advertisement
Advertisement