I have a need to address some policy settings on a number of machines that are not on a domain. Specifically, we are dealing with a technology conference lab, built with loaner machines from various vendors, and I would like to lock down certain UI things like desktop background to maintain some consistency. I am creating my own user accounts, and attendees are NOT local admins (vendors ship us machines with admin accounts with no password. Yikes!) Anyway, this is usually a Group Policy thing, so as expected the Policy part of HKCU is off limits to a standard user. But since I also don't have a Group Policy infrastructure, I have a quandary. My thinking is to use PowerShell to modify the settings in question for the Default User prior to creating my users, so they inherit those settings. However, I suspect this is one of the things that doesn't work when the admin user has no password. I also thought about just changing the permissions on the default user, but that leaves parts of Policy exposed, which is not ideal. Both feel like a kludge, but I can't think of a "right" way to deal with this in a Workgroup setting. I know this is a subjective question, but hopefully it doesn't get down voted, doesn't get closed, and someone has some insight, either an actual good way to do this, or at least a suggestion that the default user approach isn't too bad an idea. ;)
Asked
Active
Viewed 61 times
1
-
I did this sort of thing a few years ago. There was a lot of setting the default user profile with the wallpaper we wanted and importing registry keys and importing local policy templates and the like (using Altiris Deployment Solution and Deep Freeze). @joeqwerty's answer is better. – Katherine Villyard Oct 08 '15 at 21:55
1 Answers
2
Look into using Multiple Local Group Policy. You can configure local Group Policy for standard users that will apply to all standard users that log on. No need to muck with the Registry, Powershell or the Default User profile.

joeqwerty
- 109,901
- 6
- 81
- 172
-
Joe, I'll need to look at that, yes. If I can "Import" a local GPO using PowerShell I will be well on my way. Next thing I need is to see if I can get the GP Snap-In to run on Windows Home, since that is my current test environment. Hopefully I can also have a Windows 7 Pro VM built by Monday to do "real" testing.Thanks for the direction! – Gordon Oct 08 '15 at 21:35