Go Back   PCMech Forums > Windows Support > Windows Legacy Support (XP and earlier)

Need Some Help? Type Your Keywords Here:

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
Old 10-01-2007, 01:26 PM   #1
Audio/Video Expert
 
SonicVanguard's Avatar
 
Join Date: Jul 2003
Location: West Michigan
Posts: 1,625
Question on permissions

Hello all. I've got a rather difficult issue that I'm helping a colleague deal with. He's a recovering porn addict and we're trying to use a program called X3 Watch to help him stay accountable to what he views on-line. Our problem is it's too easy for him to turn the software off using Windows Task Manager. I know, I know - if he wanted to get over his addiction he wouldn't turn Task Manager off - but that's the nature of addiction - he can't control it.

I've spoken with him and his wife and he's agreed to allow her to have the administrative privileges on his computers. So we would set him up as a user account and the administrative account would be under her control. Now...I see two possible issues. One, how do we stop Task Manager from coming up with Ctrl-Alt-Del on his user account? Basically to contain his access to shutting the program down. Two, how do we control his ability to edit what programs startup with the System Configuration Utility? And I suppose three - is there any other way he could shut down a program that runs in resident at system startup and how do we stop him from doing so?

I'm no IT guru - but I can certainly follow directions. I know here at MSU we can limit users of university computers in this way, but how do I go about doing this? I'd ask one of the IT guys here, but I don't need others around here to know of my colleague's addiction.

TIA.
__________________
Dave.

Go where there is no path and leave a trail.
SonicVanguard is offline   Reply With Quote
Old 10-01-2007, 01:33 PM   #2
Come in Ray...
 
faulkner132's Avatar
 
Join Date: Sep 2004
Posts: 1,668
Using XP Home I'm not sure you can "fine tune" this much, however if you have XP Pro on the machine you can probably control all of these settings using the Local Machine Policy Editor (Start > Run > secpol.msc).

You will need to be an Admin to run it, but it allows you to basically configure every setting on the computer with respect to what users can do what.
faulkner132 is offline   Reply With Quote
Old 10-01-2007, 01:41 PM   #3
Audio/Video Expert
 
SonicVanguard's Avatar
 
Join Date: Jul 2003
Location: West Michigan
Posts: 1,625
I believe he does have WinXP Home on his laptop (I know he has Pro on his desktop system at work and at home).

Anything I can do with XP Home?
SonicVanguard is offline   Reply With Quote
Old 10-01-2007, 02:16 PM   #4
Member (4 bit)
 
Join Date: Sep 2007
Posts: 10
X3Watch is a free program that send messages to an email account. Since a server based system is not being used they will need to buy a program like Lock My Computer. http://www.softpedia.com/get/Securit...Computer.shtml

The Admin should be able to set everything up so that the husband has limited access to certain programs. Then I would suggest a porn blocker like Net Nanny. http://www.netnanny.com/features/por...tail/technical With the windows locker he would not be able to turn off netnanny. I guess it just depends on how serious he is.
syxguns is offline   Reply With Quote
Old 10-01-2007, 07:28 PM   #5
Audio/Video Expert
 
SonicVanguard's Avatar
 
Join Date: Jul 2003
Location: West Michigan
Posts: 1,625
I did find a program that will allow XP Home to have the same permissions set as XP Pro - it's from www.xphometools.com/ and is called Permissions Manager. I'm wondering if this will work - ie...not allow him to terminate a running program.

And we've thought about programs like NetNanny but this is all about accountability, not blocking sites. Granted, an addiction sometimes requires taking something away completely, but we'd rather do this is stages.
SonicVanguard is offline   Reply With Quote
Old 10-01-2007, 08:09 PM   #6
Premium Member
 
Statica's Avatar
 
Join Date: Jun 1999
Posts: 9,231
I would never recommend a 3rd party s/w that imposes such user limits, that is if you can sit through some registry editing yourself. The truth is that pretty much every security policy on XP Pro is settable on XP Home through a simple registry edit (more often than not the policy editors are quick, and useful, front ends to registry edits).
You can do stuff like:
Prevent access to task manager:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System
and create a DWORD: DisableTaskMgr = 1

Keep in mind that dropping a user down to a limited user will also remove the ability of the user to play around with msconfig and the registry editor. Also, a reminder to, of course, password protect the Administrator account.

Other stuff I thought might be helpful...

To remove drag & drop from the Start Menu (moving programs away from the Startup folder)
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
and create a DWORD: NoChangeStartMenu = 1

There are other things you can do that are in the gpeditor for XP Pro but can be done on Home:
To remove Add/Remove Programs programs
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Uninstall
and create a DWORD: NoAddRemovePrograms = 1

Prevent access to the command prompt
HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\System
and create a DWORD DisableCMD = 1
(1 disables script processing and 2 enables script processing)

To remove access to the registry tools
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System
and create a DWORD: DisableRegistryTools = 1

There are a ton of options you can use to play around with, a lot of registry values can be tweaked for the browser and network settings especially if the person is using IE (recommended in this case, since it's so tightly wound up with the OS .. Firefox doesn't quite play by XP's rules). If you need more registry values post back.

I can't stress enough about my lack of faith in most 3rd party registry locking & related tools to do the things that the OS does natively. I'd sooner shell out $ for XP Pro than I would for such tools.

Addendum: all of these are keys in the current_user realm. A quick way to do it is to change the user's account to Admin rights and log into it. Then use regedit to enter these values. Reboot & login to the wife's admin account and then drop down the other account to limited user. Login to the locked down user account and check effectiveness.

Last edited by Statica; 10-01-2007 at 08:14 PM. Reason: Addendum
Statica is offline   Reply With Quote
Old 10-01-2007, 10:19 PM   #7
Member (9 bit)
 
el_novato's Avatar
 
Join Date: Sep 2002
Location: G.P., TX
Posts: 472
You might want to check out this free utility. It does the changes that Statica listed with a simple checkbox. It has a small footprint and is easy to use. The licensed version ($10 for home license) allows you to load another user's profile without logging into that account among other features not available in the free version.

e.n.
el_novato is offline   Reply With Quote
Old 10-02-2007, 11:32 AM   #8
Audio/Video Expert
 
SonicVanguard's Avatar
 
Join Date: Jul 2003
Location: West Michigan
Posts: 1,625
Statica, el_novato - thanks a ton!
SonicVanguard is offline   Reply With Quote
Old 10-02-2007, 09:22 PM   #9
brewer, mostly...
 
kev7555's Avatar
 
Join Date: Jun 2004
Location: Laying on the floor, in the brewery
Posts: 1,315
Here, here. Thanks Statica. Those went saved in a file with my other diagnostic stuff.



Sonic---

That computer you and a few moderators guided me on for Pro Tools (back at the first of the year) is a real dream. Runs great. I'm glad I listened to you guys.

Thanks again,

-Kev
__________________
Symantec-free zone.

To stay malware free: AVG antivirus/antispyware, Malwarebytes anti malware, Commodo Pro free firewall, ccleaner, Windows updates. or....

just install Linux

Too many computers in this house to list. They are all my builds, some AMD some Intel...
kev7555 is offline   Reply With Quote
Old 10-02-2007, 09:42 PM   #10
Audio/Video Expert
 
SonicVanguard's Avatar
 
Join Date: Jul 2003
Location: West Michigan
Posts: 1,625
Quote:
Originally Posted by kev7555
Here, here. Thanks Statica. Those went saved in a file with my other diagnostic stuff.



Sonic---

That computer you and a few moderators guided me on for Pro Tools (back at the first of the year) is a real dream. Runs great. I'm glad I listened to you guys.

Thanks again,

-Kev
Glad it's working well for you.
SonicVanguard is offline   Reply With Quote
Old 01-15-2008, 07:44 PM   #11
Member (7 bit)
 
Join Date: Oct 2004
Posts: 99
In searching "help" for information to limit users ability to get on the internet I found this thread. Let me tell you what we want to do. In our clubhouse we have a computer running XP. It is connected to the internet. We want to have three users. One the "Administrator", one called "guest one", and one called "guest two". The administrator would be the only one who could add programs. Guest one could use all programs already installed on the computer and also get on the internet. Guest two could do all that guest one can do, expect get on the internet.
Both "el novato" and "statica" seens to have a way to do this. SonicVanguard did you try either way and if so which one? Also did it work? Anyone out there with another idea how to do this?
Thanks ahead of time for your help!!!
old dog 2 is offline   Reply With Quote
Old 01-24-2008, 08:48 PM   #12
Member (9 bit)
 
el_novato's Avatar
 
Join Date: Sep 2002
Location: G.P., TX
Posts: 472
I realize it's been 10 days since your post old dog 2, but in case you are still checking back:

This guide should give you what you are looking for. It involves editing the registry, so please make sure you back up the registry before modifying it. These tweaks apply only to the account that you do not want accessing the Internet.

HTH

e.n.
el_novato is offline   Reply With Quote
Old 01-24-2008, 11:00 PM   #13
Member (7 bit)
 
Join Date: Oct 2004
Posts: 99
Thanks will check it out.
old dog 2 is offline   Reply With Quote
Old 01-25-2008, 04:28 PM   #14
Member (7 bit)
 
Garyfl's Avatar
 
Join Date: Jun 2000
Location: Brandon, Fl.
Posts: 121
I hit the wrong button, sorry.
Garyfl is offline   Reply With Quote
Reply

Bookmarks

Still Need Help? Type Your Keywords Here:


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Stereo as computer sound question longrawker Home Theater, Audio, and Video 5 05-30-2005 03:28 PM
cd burning software question / "sticky" question chunkstyle Home Theater, Audio, and Video 2 03-29-2005 12:55 PM
Small question Gizmo Software Discussion & Support 3 09-03-2004 07:36 PM
Restoring permissions and fileshares question Ford Falcon Windows Legacy Support (XP and earlier) 3 03-31-2004 12:34 PM
Important network question Ymets2k Networking & Online Security 0 01-25-2003 03:49 PM


All times are GMT -5. The time now is 08:10 PM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.6.0