|
I'm working on converting my users from local machine based profiles to network profiles stored on a centralized fileserver.
The majority of my users are "local", in that they work in the office 75% of the time. I think I will get some resistance from...
Started by Matt Simmons on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
-do NEVER EVER use roaming profiles for laptops
-If you need to backup the user's profile look "at logon" but....
NEVER EVER use roaming profiles if there is a chance the user will log on through a slow link (e.g.
|
|
What is the best way to enumerate all of the user profiles on a computer?
I know how to get the currently logged in user profile, and I know how to get the "all user" profile. But I'd like to get a list of each and every profile on the computer.
Started by Net Citizen on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
When do you count a roaming profile to be on the computer? Also.
With that, in the presence of roaming profiles.
|
|
I have an mvc app where I want to assign a user to a profile. I have two multiline select lists (i.e <select size="10"></select>). One for profiles the user is part of and one for the available profiles the user can become part of.
I am using...
Started by modernzombie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
[AcceptVerbs(HttpVerbs.Post)] public ActionResult SaveProfile(FormCollection collection)....
Then update the model and store the data.
Pass in the FormCollection to the action.
You could have a script to select everything in the list on the submit event .
|
Ask your Facebook Friends
|
For a client/server application I need to centrally store parts of the configuration information that usually goes into the users profile directory.
The client application would on first use write a file or registry entry with a GUID into the current ...
Started by Sebastian on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Note that only the last four digits are incremented as new accounts S-1-5-21-191058668-193157475-1542849698-1000 User 1 S-1-5-21-191058668-193157475-1542849698-1001 User 2 S-1-5-21-191058668....
The SIDs for four local user accounts.
|
|
I have an issue that is driving me a bit nuts: Using a UserProfileManager as an non-authorized user.
The problem: The user does not have "Manage User Profiles" rights, but I still want to use the UserProfileManager. The idea of using SPSecurity.RunWithElevatedPrivileges...
Started by Michael Stum on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I notice use an application pool identity that....
Grant that user Manage user profiles permission.
Admin Navigate to the Shared Service Provider Under User Profiles and My Sites navigate sites App Domain is running under.
|
|
Django lets you create a model foreign-keyed to User and define it in settings as the official "profile" model holding additional data for user accounts. django-profiles lets you easily display/create/edit that profile data. But the user's primary email...
Started by shacker on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Another option (bad) would be to hack django-profiles app and change we ended up using:
# urls.py # First match /profiles....
The appropriate profile belonging to that user by matching some other parameter you could pass if there is one.
|
|
I have a few users in a very old workgroup that log directly into their local machines (Windows XP Pro). This week they're finally moving to active directory and will need to log into domain accounts instead. However, some of these users have been around...
Started by Joel Coel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Advanced in User Profiles, click the Settings button Select the local user's profile, click on Copy of the following:
Join the domain Log in as the new domain user, and log out Log back in as an account with admin ....
|
|
I've imported a bunch of users into my Active Directory with some custom fields. Then I did a profile import from Active Directory to Sharepoint with all the custom fields and regular fields. After this, I needed each user to be in a site collection with...
Started by frax on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Is the business driver? If user accounts are stored in a location other than an Active Directory.
|
|
Recently in our IT department we've noticed each others user accounts under documents and settings. Which is strange because we've never logged into each others machines. There were a few times I'd run psexec in order to apply BIOS/system settings, but...
Started by SteveButler on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
This can be through a service configured as a given user, COM+ applications configured as a given user, impersonation, user....
If there's any form of authentication of a user on a given machine, a profile may result.
|
|
Is it possible to implement an equivalent of sudo for Django profiles ? I'm using the basic authentication system django.contrib.auth .
Usecase : Sometimes, users report bugs which are only reproductible in their profile, so, each time, I change their...
Started by Dave Nioule on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://github.com/mjbrownie/django-debug-toolbar
it also displays some basic user group permission.
The fork is here.
It works well for flipping logged in users around .
A user panel in the debug toolbar.
|