A user account is an access authorization to a restricted IT system. It consists mostly of a system wide unique user name an a password which are needed for authentication. IT systems use the user account to identify the individual user and grant him permissions which are associated with the user account.
Questions tagged [user-accounts]
497 questions
3
votes
1 answer
What is causing the Collateral damage when deleting old profiles?
#Get user names that have logged onto workstation
$Users = gwmi win32_networkloginprofile | where {$_.name -match "EXP\\"} | where {$_.name -notmatch "srvtasksched"}
$Users | foreach{
$Name = $_.Name
$LastLogon = $_.LastLogon
…

MDMoore313
- 5,581
- 6
- 36
- 75
3
votes
2 answers
Increase the number of concurrent users on Windows Server 2008
I have a Windows Server 2008 R2 running and I am able to connect to it using 2 different users via Remote Desktop Connection. Since a colleague and me are working on the server almost all the time and another colleague also wants to connect there is…

Michael S.
- 141
- 1
- 2
- 5
3
votes
1 answer
Puppet: Enumerating all users within a group
Is there any way to enumerate an array of all users within a group within Puppet, either as a fact or something so I can do something like this?
$users = enumusers('wheel')
each($users) |$user| {
dostuff{"stuff:$user":
user=>$user
…

Kyo
- 33
- 3
3
votes
2 answers
Give user-creation privileges to a user
In MySQL, how do you allow another user to create other users? In turn, those users should only be able to view some tables.

Steve Bennett
- 5,750
- 12
- 47
- 59
3
votes
1 answer
ProFTPd MySQL query %u resolves to proftpd, not username
I am trying to use ProFTPd's MySQL configuration to set up FTP login to my server. I have a SQLNamedQuery that is used to get the user info from the database (see Setting up ProFTPd with default home directory based on username), and as part of the…

Ashley Strout
- 218
- 2
- 13
3
votes
2 answers
How to configure Users permissions in Windows Server 2008 R2 by command line?
I have to create about 800 users in our Windows S 2008 R2 and I'd like to make a few settings with them.
Create user: net user Joe 1mb4pASs /add /fullname:"John Smith" /passwordchg:no /comment:"no comment"
Set never expired password: wmic…
Répás
3
votes
3 answers
Active Directory examples of hierarchy
i am in the process of restructuring the hierarchical structure of the local active directory server of the institution i am working for. I was wondering if anyone knew of any place i could find best practices for this task. For example if it is…

user137533
- 83
- 1
- 5
3
votes
2 answers
Connect to network share using local account - without a computer name
The short form of the question:
I have a shared folder on a computer with a fixed static IP address, a known share name, and a local user account which has read access to the share.
Normally, I would connect to the share using \\10.0.1.1\ShareName…

nicholas
- 133
- 1
- 1
- 3
3
votes
1 answer
Active directory user alias
Do you know if exists something like "alias" for domain users? On my domain I have a short username (ex. n.surname) and i would like users could login with extended name (es. name.surname) to the same profile. Is it possibile?
Thanks

Tobia
- 1,272
- 9
- 41
- 81
3
votes
1 answer
Why am I getting a warning that windows is logging on with a temporary profile to run a task scheduler task?
I am having a strange problem with the Windows Server 2008 Task Scheduler. I have to run a small command-line application every few minutes. This application just executes a quick web service call on the localhost and adds an entry to a log file; so…

Dan C
- 511
- 1
- 5
- 7
3
votes
1 answer
Impersonation Service Account
I am bringing up AppXtender Workflow Manager. One of the instructions is to create an Impersonation Service Account. I have never heard of such. What is it and how do I create an impersonation service account on Windows Server?

hanleyhansen
- 257
- 2
- 4
- 11
3
votes
1 answer
Excluding folders from a roaming profile, client-side
I am using a laptop connected to our company's domain network, and after logging in this morning it told me that I have exceeded my roaming profile space. After looking into the issue I realized that most of this space was taken up by the .android…

Artyom
- 133
- 1
- 4
3
votes
1 answer
Change what fields are copied when copying an account in Active Directory?
I've noticed that all of the address with the exception of the street address is copied when copying an Active Directory user account. Is there a way to change this? We're currently running a 2003 AD on 2008 DCs and will eventually upgrade the…

Shawn
- 329
- 2
- 16
3
votes
2 answers
Setting up a limited user account on Windows Server
I'd like to create a user account on a Windows Server which can read whatever bits of C:\ it needs to be able to execute programs, but have no read access to D:\ except for D:\Special.
It seems that the only sane way of achieving the former is to…

RomanSt
- 1,207
- 1
- 15
- 32
3
votes
3 answers
VPN to a customer's site locking out my local AD account
We have an account lockout policy on our domain which was put in place purely to stop brute force attacks. It locks out an account for 10 minutes after 50 bad logon attempts within a 10 minute period.
Just recently I've noticed that my domain…

Bryan
- 7,628
- 15
- 69
- 94