Library Preferences Product Version Mac Os X

Presenting Apple Music on Mac. The new Apple Music app is the ultimate music streaming experience on Mac. 1 Explore a library of 60 million songs, discover new artists and tracks, find the perfect playlist, download and listen offline, or enjoy all the music you’ve collected over the years. And find it all in your music library on all your devices. If you’re using macOS Mojave, choose Apple menu System Preferences, then click Software Update where you’ll find the upgrade. If you’re using an earlier macOS, use the App Store instead. May 29, 2012  Cannot access secured Web sites after OS X update. Updated their systems from OS X 10.7.3 to the latest OS X 10.7.4 version. For some, it seems to be rooted in. Note: If you run out of disk space while saving preferences, your preferences may become corrupt or irretrievable. Ensure that your hard drive has space available to save preferences. If the disk runs out of space, free up some space before exiting the application. 17 rows  Mar 24, 2020  If your Mac is using an earlier version of any Mac operating system, you.

-->

This article is for IT administrators managing OneDrive settings in work or school environments. If you're not an IT administrator, read Get started with the new OneDrive sync app on Mac OS X.

Manage OneDrive settings on macOS using property list (Plist) files

Use the following keys to preconfigure or change settings for your users. The keys are the same whether you run the store edition or the standalone edition of the sync app, but the property list file name and domain name will be different. When you apply the settings, make sure to target the appropriate domain depending on the edition of the sync app.

StandaloneMac App Store
PList Location
~/Library/Preferences/com.microsoft.OneDrive.plist
~/Library/Containers/com.microsoft.OneDrive-mac/Data/Library/Preferences/com.microsoft.OneDrive-mac.plist
Domain
com.microsoft.OneDrive
com.microsoft.OneDrive-mac

Deploy the sync app settings

Deploy the settings on macOS in the typical way:

  1. Quit the OneDrive application.

  2. Define the settings you want to change by creating a Plist with the values, or use a script to set the default values.

  3. Deploy the settings onto the local computer.

  4. Refresh the preferences cache.

    On the next start of OneDrive, the new settings will be picked up.

Mac

Overview of settings

The following table lists all the settings that are currently exposed for the OneDrive sync app. You need to configure the parameters in parentheses.

SettingDescriptionParametersExample Plist Entry
Disable personal accounts
Blocks users from signing in and syncing files in personal OneDrive accounts. If this key is set after a user has set up sync with a personal account, the user will be signed out.
DisablePersonalSync (Bool): When set to true, this parameter prevents users from adding or syncing personal accounts.
<key>DisablePersonalSync</key>
<(Bool)/>
Default folder location
Specifies the default location of the OneDrive folder for each organization
TenantID (String): TenantID determines which accounts the default folder location setting should apply to. Find your Office 365 tenant ID
DefaultFolderPath (String): DefaultFolder specifies the default folder location.
Mac App Store:
The path must already exist when users set up the sync app.
Standalone:
The path will be created on users' computers if it doesn't already exist. Only with the Standalone sync app can you prevent users from changing the location.
<key>Tenants</key>
<dict>
<key>(TenantID)</key>
<dict>
<key>DefaultFolder</key>
<string>(DefaultFolderPath)</string>
</dict>
</dict>
Automatic upload bandwidth percentage
Enables the sync app to automatically set the amount of bandwidth used based on available bandwidth for uploading files
AutomaticUploadBandwidthPercentage (int): This parameter determines the percentage of local upload bandwidth that the sync app can use. Accepted values are from 1 through 99.
<key>AutomaticUploadBandwidthPercentage</key>
<int>(Bandwidth)</int>
Set maximum upload throughput
Sets the maximum upload throughput rate in kilobytes (KB)/sec for computers running the OneDrive sync app
UploadBandwidthLimited (int): This parameter determines the upload throughput in KB/sec that the sync app can use. The minimum rate is 50 KB/sec and the maximum rate is 100,000 KB/sec.
<key>UploadBandwidthLimited</key>
<int>(Upload Throughput Rate in KB/sec)</int>
Set maximum download throughput
Sets the maximum download throughput rate in kilobytes (KB)/sec for computers running the OneDrive sync app
DownloadBandwidthLimited (int): This parameter determines the download throughput in KB/sec that the sync app can use. The minimum rate is 50 KB/sec and the maximum rate is 100,000 KB/sec.
<key>DownloadBandwidthLimited</key>
<int>(Download Throughput Rate in KB/sec)</int>
Dock icon
Specifies whether a dock icon for OneDrive is shown
HideDockIcon (Bool): When set to true, this parameter hides the OneDrive dock icon even when the application is running.
<key>HideDockIcon</key>
<(Bool)/>
Open at login
Specifies whether OneDrive starts automatically when the user logs in
OpenAtLogin (Bool): When set to true, OneDrive will start automatically when the user logs in on the Mac.
<key>OpenAtLogin</key>
<(Bool)/>
Enable Files On-Demand
Specifies whether Files On-Demand is enabled. If you don't set this setting, Files On-Demand will be enabled automatically as we roll out the feature, and users can turn the setting on or off
FilesOnDemandEnabled (Bool): When set to true, new users who set up the sync app will download online-only files by default. When set to false, Files On-Demand will be disabled and users won't be able to turn it on.
<key>FilesOnDemandEnabled</key>
<(Bool)/>
Disable download toasts
Prevents toasts from appearing when applications cause file contents to be downloaded
DisableHydrationToast (Bool): When set to true, toasts will not appear when applications trigger the download of file contents.
<key>DisableHydrationToast</key>
<(Bool)/>
Block apps from downloading online-only files
Prevents applications from automatically downloading online-only files. You can use this setting to lock down applications that don't work correctly with your deployment of Files On-Demand.
HydrationDisallowedApps (String): Json in the following format
[{'ApplicationId':'appId','MaxBundleVersion':'1.1','MaxBuildVersion':'1.0'}]
'AppID' can be either the BSD process name or the bundle display name. MaxBuildVersion denotes the maximum build version of the application that will be blocked. MaxBundleVersion denotes the maximum bundle version of the application that will be blocked
<key>HydrationDisallowedApps </key>
<string> [{'ApplicationId':'appId','MaxBundleVersion':'1.1','MaxBuildVersion':'1.0'}, {'ApplicationId':'appId2','MaxBundleVersion':'3.2','MaxBuildVersion':'2.0'}]</string>
<(Bool)/>
SharePoint Server Front Door URL
Specifies the SharePoint Server 2019 on-premises URL that the OneDrive sync app should try to authenticate and sync against
SharePointOnPremFrontDoorUrl (string): The URL of the on-premises SharePoint Server.
<key>SharePointOnPremFrontDoorUrl</key>
<string>https://Contoso.SharePoint.com</string>
SharePoint Server Tenant Name
Specifies the name of the folder created for syncing the SharePoint Server 2019 files specified in the Front Door URL.
SharePointOnPremTenantName (string): The name that will be used when creating a folder to sync the on-premises SharePoint Server files. If specified, the folder names will take the form of:
OneDrive – TenantName
TenantName
If not specified, the folder names will use the first segment of the FrontDoorURL as the Tenant Name.
Example - https://Contoso.SharePoint.com will use Contoso as the Tenant Name
<key>SharePointOnPremTenantName</key>
<string>Contoso</string>
SharePoint OnPrem Prioritization
For hybrid scenarios where the email is the same for both SharePoint Server on-premises and SharePoint Online, determines whether or not the client should set up sync for SharePoint Server or SharePoint Online first during the first-run scenario.
SharePointOnPremPrioritizationPolicy (int): This parameter determines which service to attempt to authenticate against for setting up sync.
1 indicates OneDrive should setup SharePoint Server on-premises first, followed by SharePoint Online.
<key>SharePointOnPremPrioritizationPolicy</key>
<int>(0 or 1)</int>
BlockExternalSyncPrevents the sync app from syncing libraries and folders shared from other organizations.BlockExternalSync (Bool): Set to true to prevent syncing OneDrive for Business and SharePoint libraries and folders from organizations other than the user's own organization. Set to false or do not include the setting to allow.
Learn about OneDrive B2B Sync.
<key>BlockExternalSync</key>
<(Bool)/>

You can also configure the OneDrive Standalone sync app to receive delayed updates.

PList Location
~/Library/Preferences/com.microsoft.OneDriveUpdater.plist
Domain
com.microsoft.OneDriveUpdater
SettingDescriptionParametersExample Plist Entry
Tier
Defines the update ring for the computer
UpdateRing (String): This parameter has two different values.
Production - The default update ring for OneDrive updates.
Insiders - This update ring receives updates that are 'pre-production' and will allow you to play with features before they are released. Note that builds from this ring may be less stable.
Enterprise - This update ring receives updates after they have rolled out through the Production ring. It also lets you control the deployment of updates. For more info about the update rings and how the sync app checks for updates, see The OneDrive sync app update process.
<key>Tier</key>
<string>(UpdateRing)</string>

Numerous program settings are stored in the Adobe Photoshop Preferences file, including general display options, file-saving options, performance options, cursor options, transparency options, type options, and options for plug‑ins and scratch disks. Most of these options are set in the Preferences dialog box. Preference settings are saved each time you quit the application.

Unexpected behavior may indicate damaged preferences. If you suspect damage to preferences, restore preferences to their default settings.

To re-create the preferences files for Photoshop, start the application while holding down Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS). Then, click Yes to the message, 'Delete the Adobe Photoshop Settings file?'

Note: If this process doesn't work for you while you're using a wireless (Bluetooth) keyboard, attach a wired keyboard and retry.

Important: If you re-create the preferences by deleting the Adobe Photoshop Settings file, make sure that you only delete that file. If you delete the entire settings folder, you also delete any unsaved actions or presets.

Reinstalling Photoshop does not remove the preferences file. Before reinstalling Photoshop, re-create your preferences.

Important: Apple made the user library folder hidden by default with the release of Mac OS X 10.7. If you require access to files in the hidden library folder to perform Adobe-related troubleshooting, see How to access hidden user library files.

Photoshop preference Filename Path
General settingsAdobe Photoshop [version] Prefs.pspUsers/[user name]/Library/Preferences/
Adobe Photoshop [version] Settings
ActionsActions palette.pspUsers/[user name]/Library/Preferences/
Adobe Photoshop [version] Settings
Camera Raw PreferencesAdobe Camera Raw [version] PrefsUsers/[user name]/Library/Preferences
Color settings (Color management)Color Settings.csfUsers/[user name]/Library/Preferences/
Adobe Photoshop [version] Settings
Custom Color settings (Color management)Userdefined.csfUsers/[user name]/Library/Application Support/Adobe/Color/Settings
Custom proof setups (Color management)Userdefined.psfUsers/[user name]/Library/Application Support/Adobe/Color/Proofing
Editing and painting toolsBrushes.psp, Contours.psp, Custom Shapes.psp, Gradients.psp, Patterns.psp, RepoussePresets.psp, Styles.psp, Swatches.psp, ToolPresets.pspUsers/[user name]/Library/Preferences/
Adobe Photoshop [version] Settings/
PathsAdobe Photoshop [version] PathsUsers/[user name]/Library/Preferences
Save for Web

Adobe Save For Web CS6 Prefs


Adobe Save for Web [version] Prefs

Users/[user name]/Library/Preferences/
Adobe/Plugins/Adobe Save for Web CS6/
Photoshop
Users/[user name]/Library/Preferences
Filters and EffectsAdobe Adaptive Wide Angle [version], Adobe Dicom [version], Adobe Filter Gallery [version] Prefs, Adobe Lens Blur [version] Prefs, Adobe Lens Correction [version] Prefs, Adobe Liquify [version] Prefs, Adobe VanishingPoint [version],Adobe Oil Paint [version]
Users/[user name]/Library/Preferences/
Adobe/Plugins/[effect or filter name]/
Photoshop
Lens Profiles (Created with the Lens Profile software)Userdefined.lcsUsers/[user name]/Library/Preferences/
Adobe/LensCorrection/1.0/Settings
Workspaces

[User Defined]

Workspaces that have been modified

Users/[user name]/Library/Preferences/
Adobe Photoshop [version] Settings/WorkSpaces

Users/[user name]/Library/Preferences/
Adobe Photoshop [version] Settings/WorkSpaces (Modified)

Third-party plug-in settings (for example, location of the plug-ins folder)(varies)Users/[user name]/Library/Preferences folder
Saved presets[User defined]Users/[user name]/Library/Application Support/Adobe/Adobe Photoshop [version]/Presets/[feature name]
Photoshop PreferenceFilenamePath
General settings

Adobe Photoshop [version] Prefs.psp (32-bit version)

Adobe Photoshop X64 [version] Prefs.psp (64-bit version)

Clang, change dependent shared library install name at link time. Ask Question Asked 5 years ago. I don't want to modify DYLDLIBRARYPATH or such other environment variable.? Macos dynamic-library install-name. Defining Framework path relative to executable in gnu/clang compiler on mac. Make MATLAB Mex search for a library in a. When you compile something using clang on OS X there are (roughly speaking) two stages to the compile. In the first, your source code is loaded and the compiler searches its include paths to find your includes. Here’s what clang’s defaults look like for the Xcode 6.4 command line tools. Mac clang library path Ensure Clang is installed. Clang may already be installed on your Mac. To verify that it is, open a macOS Terminal window and enter the following command: clang -version. If Clang isn't installed, enter the following command to install the command line developer tools: xcode-select -install Create Hello World.

Users/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings
ActionsActions palette.pspUsers/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings
Camera Raw

Windows registry key

.xmp files saved from Camera Raw dialog box

HKEY_CURRENT_USER/Software/Adobe/Camera Raw/[version]

Users/[user name]/AppData/Roaming/CameraRaw/Settings

Color settings (Color management)Color Settings.csfUsers/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings
Custom Color settings (Color management)Userdefined.csfUsers/[user name]/AppData/Roaming/Adobe/
Color/Settings
Custom proof setups (Color management)Userdefined.psfUsers/[user name]/AppData/Roaming/Adobe/
Color/Proofing
Editing and painting toolsBrushes.psp, Contours.psp, Custom Shapes.psp, Gradients.psp, Patterns.psp, Styles.psp, Swatches.psp, ToolPresets.pspUsers/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings/Presets
PathsPreferences are saved as value data in the SettingsFilePath value name in the Windows registry.

(Windows registry key) HKEY_CURRENT_USER/Software/Adobe/Photoshop/[version]

Settings FilePath value:

Users/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings

Save for Web

Adobe Save for Web 13.0 Prefs

Save for Web file

Users/[user name]/AppData/Roaming/Adobe/Plugins/
Adobe Save For Web [version]/Photoshop

Users/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Optimized Settings/filename.irs

Filters and EffectsAdobe Effect [version] Prefs, Adobe Filter Gallery [version] Prefs, Adobe Lens Blur [version] Prefs, Adobe Lens Correction [version] Prefs, Adobe Liquify [version] Prefs, Adobe Mondo Filter [version], Adobe Oil Paint [version]
Users/[user name]/AppData/Roaming/Adobe/Plugins/
[effect or filter name]/Photoshop
Lens Profiles (Created with the Lens Profile software)

Userdefined.lcs

Adaptive lens profile files: .wac

Users/[user name]/AppData/Roaming/Adobe/
LensCorrection/1.0/Settings

Users/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Optimize Settings

Workspaces

[User Defined]

Workspaces that have been modified

Users/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings/Workspaces
Users/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings/Workspaces (Modified)
Third-party plug-in settings (for example, location of the plug-ins folder)Settings are stored as value data in the SettingsFilePath value name in the Windows registry.HKEY_CURRENT_USER/Software/Adobe/Photoshop/[version]
Saved Presets[User defined]Users/[user name]/AppData/Roaming/Adobe/Adobe Photoshop [version]/Presets/[feature name]

Library Preferences Product Version Mac Os X Download

Photoshop PreferenceFilenamePath
General settingsAdobe Photoshop [version] Prefs.pspDocuments and Settings/[user name]/Application Data/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings
ActionsActions palette.pspDocuments and Settings/[user name]/Application Data/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings
Camera Raw

Windows registry key

.xmp files saved from Camera Raw dialog

HKEY_CURRENT_USER/Software/Adobe/Camera Raw/[version]

Documents and Settings/[user name]/Application Data/Adobe/CameraRaw/Settings

Color settings (Color management)Color Settings.csfDocuments and Settings/[user name]/Application Data/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings
Custom Color settings (Color management)Userdefined.csfDocuments and Settings/[user name]/Application Data/Adobe/Color/Settings
Custom proof setups (Color management)Userdefined.psfDocuments and Settings/[user name]/Application Data/Adobe/Color/Proofing
Editing and painting toolsBrushes.psp, Contours.psp, Custom Shapes.psp, Gradients.psp, Patterns.psp, Styles.psp, Swatches.psp, ToolPresets.pspDocuments and Settings/[user name]/Application Data/Adobe/Adobe Photoshop [version]/Presets
PathsPreferences are saved as value data in the SettingsFilePath value name in the Windows registry.

KEY_CURRENT_USER/Software/Adobe/Photoshop/[version]

SettingsFilePath:
Documents and Settings/[user name]/Application Data/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings

Save for WebAdobe Save for Web [version] PrefsDocuments and Settings/[user name]/Adobe/Plugins/Adobe Save For Web [version]/Photoshop
Filters and EffectsAdobe Effect [version] Prefs, Adobe Filter Gallery [version] Prefs,
Adobe Lens Correction [version] Prefs,
Adobe Liquify [version] Prefs,
Adobe Adaptive Wide Angle

Documents and Settings/[user name]/Application Data/Adobe/Plugins/[effect or filter name]/Photoshop

Documents and Settings/[user name]/Application Data/Adobe/Plugins/Adobe Lens Correction [version]/Photoshop

Documents and Settings/[user name]/Application Data/Adobe/Plugins/Adobe Liquify [version]/Photoshop

Documents and Settings/[user name]/Application Data/Adobe/Plugins/Adobe Adaptive Wide Angle [version]

Lens Profiles (Created with the Lens Profile software)Userdefined.lcsDocuments and Settings/[user name]Application Data/Adobe/Plugins/Adobe Lens Correction [version]/Photoshop
Workspaces

[User Defined]

Workspaces that have modified

Documents and Settings/[user name]/Application Data/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings/Workspaces

Documents and Settings/[user name]/Application Data/Adobe/Adobe Photoshop [version]/Adobe Photoshop [version] Settings/Workspaces (Modified)

Third-party plug-in settings (for example, location of the plug-ins folder)Settings are stored as value data in the SettingsFilePath value name in the Windows registry.HKEY_CURRENT_USER/Software/Adobe/Photoshop/[version]
Saved presetsSaved presetsDocuments and Settings/[user name]/Application Data/Adobe/Adobe Photoshop [version]/Presets/[feature name]

Twitter™ and Facebook posts are not covered under the terms of Creative Commons.

Mac Os Versions

Legal Notices Online Privacy Policy