Tagged Questions
The roaming-profile tag has no wiki summary.
6
votes
2answers
1k views
How to save user.config to AppData\Roaming folder instead of AppData\Local?
Introductory Example
This code
Properties.Settings.Default.MyUserSettingBlah = "some new value";
Properties.Settings.Default.Save();
saves the user.config file to
...
5
votes
2answers
172 views
Windows: How to canonicalize a file to the special folder?
i want to to persist some filenames for the user (e.g. recent files).
Let's use six example files:
c:\Documents & Settings\Ian\My Documents\Budget.xls
c:\Documents & Settings\Ian\My ...
4
votes
4answers
3k views
Is there any way to determine if the iphone is roaming?
I am working on an iPhone application and would really like to determine if the device is roaming so that I can intelligently avoid costing my users expensive connections if out of their home network. ...
2
votes
2answers
2k views
What is the difference: LoadUserProfile -vs- RegOpenCurrentUser
These two APIs are very similar but it is unclear what the differences are and when each should be used (Except that LoadUserProfile is specified for use with CreateProcessAsUser which I am not using. ...
1
vote
1answer
37 views
Can I configure a roaming user profile on a Windows Xp Pro SP3 system?
For testing purposes I need to see how my code behaves when a Windows user account is set up as "roaming". Can I somehow configure my Windows XP SP3 Professional to do that (if not, what about Vista ...
1
vote
1answer
118 views
Can p2 be used to manage customisable, roaming profiles for Eclipse RCP applications?
I have an Eclipse RCP application that I'd like to make available to end users using the p2 provisioning platform.
The requirements for the provisioning of the application are as follows:
Users ...
1
vote
0answers
649 views
DirectoryNotFoundException when calling Directory.GetDirectories on Environment.SpecialFolder.Favorites due to Domain Folder Redirection
I have some C# code that tries to get the Favorites for the currently logged in user. The code is part of a Taskbar Toolbar that gets loaded into the Windows Explorer process. I have a user who is ...
0
votes
0answers
8 views
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 ...
0
votes
1answer
46 views
Restore roaming profiles on Server 2008
Awhile back our Windows server 2008 Domain Controller crashed. It was restored by an outside IT company, but they did not restore everything they should have like roaming profiles.
Clients still ...
0
votes
2answers
68 views
Where should I store machine-wide application settings for non-roaming users?
I have a WPF application that must run for all users of a machine with the same settings. The settings must be read/write. I have previously been storing user configuration settings in ...
0
votes
0answers
97 views
Silverlight - IsolatedStorage on a roaming profile
Good day,
I've searched the web for this particular problem but am not getting anywhere. The development team at my organization created a SL app which writes data to IsolatedStorage. A couple of our ...
0
votes
1answer
603 views
How can I create a INI-file in the {commonappdata} which can be written to by any uses when using Innosetup
If I want to create files in the {commonappdata} folder, I need to add the Permissions:users-modify parameter on a [Files] Source:... line.
This works great ( I finally figured out how to make sure ...
0
votes
1answer
884 views
.NET Save Configuration Settings to PerUserRoaming Location
I have a VS2010 solution with a Settings.settings file. The user settings are saved to the Local Settings folder and this is a problem as these settings do not roam.
Currently the settings file is ...
0
votes
1answer
356 views
Best Practices for Roaming Profile Support Testing
We need to ensure that a Windows app that we make (which includes Office plugins) works right when installed in a Roaming Profile environment. Can anyone supply procedures, or a pointer to procedures, ...
0
votes
1answer
707 views
Application/User Settings with Roaming Profiles
Hi Guys any help would be much appreciated.
We have an application that’s installed at several locations but we are having an issue at one particular site. In short the application settings (My.) ...
0
votes
2answers
2k views
C#: Load roaming profile and execute program as user
In an application I need to execute other programs with another user's credentials. Currently I use System.Diagnostics.Process.Start to execute the program:
public static Process Start(
string ...