|
Is there an API in the ASP.NET membership, implementation to get all user profiles at once. If not, is there another good way to get all the names (first + last) of all the users. I'm trying to avoid the many SQL requests generated by getting the user...
Started by Ron Harlev on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Update:
A challenge with the....
You'll need to cast your provider to the concrete type, which is brittle if you ever want to change it .
I'd still recommend just adding first and last names to the MembershipUser though .
ProfileProvider.GetAllProfiles().
|
|
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 am trying to use SHGetFolderPath() to determine the path of the user profiles folder. The documentation states that CSIDL_PROFILES defines this folder:
CSIDL_PROFILES (0x003e) Version 6.0. The file system directory containing user profile folders. A...
Started by jmatthias on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But in view.
You can obviously do it yourself:
#define CSIDL_PROFILES 0x003E
...
To help you.
|
Ask your Facebook Friends
|
Is there an easy way to figure out, preferably from the command line, what profiles are available for a particular project. I've got a big, multi-module project I'm trying to figure out.
Started by sblundy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What I was looking for is help:all-profiles.
Can I tell which profiles are in effect during a build?
Another way to do it is to use grep or XPath me on the correct path.
|
|
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 .
|
|
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):
You for this solution to work you much enable roaming profiles; that's why they're called roaming profiles.
They are part of the windows profile system, roaming profiles should have the same SID on every system.
|
|
We've got an Xserve with Snow Leopard Server running our domain, with mostly Mac clients configured with "roaming" Home Sync directories. There are several Windows workstations that also use roaming profiles that sync to the Mac server, but they behave...
Started by colemanm on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
I suspect, however the "right solution" since it maintains the native Windows "roaming profiles" functionality but limits the amount of data subject to ....
There are third-party profile management applications (like Flex Profiles ).
|
|
Is user profiles an appropriate place to store things like number of items per page in a custom grid user selected? (I you can store it in the view, but it won't be per user this way).
My first though was to store these settings in user profiles, but ...
Started by axk on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Cookie?
Sure they have limitations....
Disadvantage: You require Custom code to read/write to that list .
Maybe a Global List, that is only accessible for the SHAREPOINT\SYSTEM User and that you can then Query in a SPSecurity.RunWithElevatedPrivileges Function .
|
|
My company is evaluating a plan to migrate from Windows to Linux. Can you suggest something in Linux analogous to roaming user profiles and domain users in an Active Directory environment?
Started by Nulldevice on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Just make.
Roaming profiles exist-directories), having home-directories - and thus user profiles - on the network is easy.
No problem: there's your domain users.
A Linux KDC or your old domain controllers.
|
|
Is it possible to have a different set of dependencies in a maven pom.xml file for different profiles?
e.g.
mvn -P debug mvn -P release
I'd like to pick up a different dependency jar file in one profile that has the same class names and different implementations...
Started by izb on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Should be tokenized in your profiles as properties and you can move your dependencies.
|