Start / Stop a Windows Service from a non-Administrator user account

Below I have put together everything I learned about Starting/Stopping a Windows Service from a non-Admin user account, if anyone needs to know. Primarily, there are two ways in which to Start / Stop a Windows Service. 1. Directly accessing the service through logon Windows user account. 2. Accessing the service through IIS using Network … Read more

Managing access to multiple linux system

FreeIPA is probably what you’re looking for. It’s to Linux what Active Directory is to Windows. (It can also talk to AD if you have a heterogeneous environment, but shouldn’t be used to manage Windows machines directly. Use AD for that.) Red Hat’s documentation (they call it Identity Management) is very thorough and easy to … Read more

What does the Windows 7 local group Power Users actually do?

You’re correct, the Power Users group does not do anything at all in Windows Vista and later. From http://technet.microsoft.com/en-us/library/cc771990.aspx: By default, members of this group have no more user rights or permissions than a standard user account. The Power Users group in previous versions of Windows was designed to give users specific administrator rights and … Read more

Adding an existing user to a group with puppet

If you declare users as virtual resources , you can then use ‘realize’ or the collection syntax ( User <| … |>). Here’s an example: @user { ‘foo’: groups => [‘somegroup’], membership => minimum, } Then realize that virtual user with then collection syntax: User <| title == foo |> And elsewhere you can add … Read more

Trying to add a new SQL Server user throws the error “is not a valid login or you do not have permission”

Before adding a user one must first create a login. Logins can only be created in the servers Security-folder (not in the databses Security). So the login can be created under <server>/Security -> Right-Click -> New -> Login…. A user with the same name and settings will automatically be added to the databases selected in … Read more