Tagged Questions
2
votes
2answers
56 views
Create Local User with Custom User Folder in Powershell
I am trying to create a new Win 2008 server local user and assign the user a different profile path. I don't want Windows to generate all the files under C:\Users\newUser, instead, I'd like to have ...
0
votes
0answers
129 views
Windows 2008 home folder security
I'm currently trying to set up Windows 2008 R2 on my home network with all the home folders stored on a separate NAS device.
I've created a DFS on the server, which points to a parent folder ...
0
votes
2answers
4k views
user account “effective permissions” with powershell
I need to compare AD users permissions (one user can "unset" an attribute and another cannot, both can change it). How can I dump/compare user account "effective permissions" which I find when I go to ...
0
votes
1answer
274 views
Listing Windows Server 2008 Enterprise local User Accounts without logging in
I have a Windows Server 2008 Enterprise installation on a server and I cannot remember the local user-accounts or passwords, so I'm unable to log in to the server. (This server was not been used for a ...
6
votes
1answer
3k views
create local user account
i have this code to create a local windows user
public static bool CreateLocalWindowsAccount(string username, string password, string displayName, string description, bool canChangePwd, bool ...