Hi all, I'm working on a windows installer that adds a new user to the system to run scheduled tasks. I generate a random password, add the user, and schedule the tasks. Here's the thing I can't figure out so far: For security, I want to disable remote login for that account. I think there's a utility for windows that can do this, in the Resource Kit. But I can't depend on the kit being installed - I have to assume the end user won't have it. I also can't re-distribute the program(s) that comes as part of the Resource Kit, as part of my installer - we don't want to make Microsoft angry Anyway, I see two programs that come as part of the Resource Kit that would do the job: Ifmember.exe - Manage user group association Ntrights.exe - Manage user rights I am trying to figure out if anyone knows a way (through registry manipulations, another open-source alternative that I could include in my installer, or anything really) to disable remote login rights for my new user. I would prefer something that works on Win9x as well as 2000/XP, but anything would help... even if the solution only worked on 2000 and up (I can warn the user that I can't disable remote login for their OS because it's too old or something). Any help would be greatly appreciated.