|
What are "things to think about" and best practices to migrate a large number of users from using local profiles to roaming ones?
Answer Snippets (Read the full thread at serverfault):
Hives (NTUSER.DAT) as files into the new profiles, be sure that you modify the permission on the root.
|
|
Hi,
I have a project that is using several profiles. Each profile uses following plugins:
maven-compiler-plugin maven-resources-plugin maven-antrun-plugin maven-surefire-plugin maven-war-plugin The one markes in bold is however the only plugin where there...
Started by TheStijn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Just include the common plugins in your build section:
<build> the same plugin differently in different... .
</profiles> </project>
This way, you will only define the antrun plugin in the profiles block.
Definition of profiles...
|
|
Hi,
I have a debian server and want to use the nice screen extension "screen-profiles". I think this comes from Ubuntu.
Is there a way to get it on debian and how?
Thank you
Started by plucked on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
The screen-profiles package is now.
Then just://packages.debian.org/squeeze/screen-profiles
Just a heads up.
You can download the package from http://packages.ubuntu.com/jaunty/screen-profiles .
To be safe.
|
Ask your Facebook Friends
|
I'm looking for a way to create meta-profiles that just activate sub-profiles in Maven. Let's take a very concrete example. I have the following profiles:
"server-jboss" "server-tomcat" "database-hsql" "database-oracle" To build the project, you have ...
Started by Julien Nicoulaud on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Your first idea, using identical properties to activate different profiles, is the best.
Activating profiles from another profile is not possible (this has been discussed in this previous question ).
|
|
I created a new profile on firefox for testing reasons. I notice no addons except Skype is on it.
How do i set up addons to work across profiles?
I have about 10 and I'd rather not download them again for every profile.
Answer Snippets (Read the full thread at superuser):
Basically you need.
Would the FEBE extension be of any use?
It's primarily for backing up and restoring profiles that you can synchronise different profiles on the same computer as well.
|
|
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.
|
|
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 .
|
|
Hi there, I'm having a bit of trouble with disk usage on a Windows 2003 Server with AD using roaming profiles. Turns out the users Outlook related files (.ost, .pst and .tmp files) gets saved in their roaming profiles, thus using up a lot of space on ...
Started by robert on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at serverfault):
While I don't use .pst or Exchange in cached mode, I have successfully moved roaming profiles on the roaming profile folders and, if I remember correctly, the profiles aren't saved until the user logs OFF this after hours when the....
|
|
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.
|