-->
MacOS Sierra 10.12.1 Features Full Version for Mac OS X Some interesting features of MacOS Sierra 10.12.1 listed below that you experienced after download dmg of MacOS Sierra 10.12.1 for mac. Stable macOS release with better security and stability of the system. Download file - macOS 10.13.1 High Sierra.dmg. Macos Sierra is best os for mac laptops, This replace gives additional rigs for the specter and meltdown exposure that were intent on and proclaimed inside the early January and to the start with stubborn in macOS sierra 10.12.1 we also realize that the update was a Trojan horse that allowed the.
There are two basic ways that you, as an administrator, can deploy the OneDrive sync app to Mac users in your organization:
Install and set up the OneDrive sync app by following the instructions in Sync files with OneDrive on macOS. To install the OneDrive sync app for Mac, a user has to be an administrator on the Mac or know an administrator account name and password.
Download the installer package file to your local network, and then use your software distribution tools to deploy the app to your users. By using a software distribution tool, you have more control over the deployment, including which users get the sync app and when. The OneDrive sync app for Mac uses the Apple Installer technology for installation allowing you to use the software distribution tools that you normally use to deploy software to Mac users. You can use Microsoft Intune. Other common tools are Jamf Pro, Munki, and AutoPkg. You can also use Apple Remote Desktop and AppleScript.
Manage OneDrive settings on macOS using property list (.plist) files
If you’re running macOS Catalina, make sure that you are downloading the 64-bit version of the app. How to Open.DMG File on Mac. If you’re having trouble opening the DMG file on Mac, here are some of the things you can do: Method #1. Use DiskImageMounter. After downloading the DMG file, right-click or Command + click on the file. Download the InstallOS.dmg. Open it and you will get InstallOS.pkg. Double click on that and you will get an installation window, this does not install Sierra but converts the.pkg to. Install macOS Sierra.app which will be in your Application folder. Double-click on that to install Sierra.
After the OneDrive sync app for Mac is installed, users can configure settings for the app. These settings are called preferences. As an administrator, you might want to provide users in your organization with a standard set of preferences. Preferences for the OneDrive sync app for Mac are stored in property list (.plist) files.
| Standalone | Mac 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 |
Configure sync app settings
Configure the settings on macOS as follows:
Quit the OneDrive app.
Define the settings you want to change by creating a .plist file with the values. You can also use a script to set the default values.
Deploy the settings onto the local computer.
Refresh the preferences cache.
On the next start of OneDrive, the new settings will be picked up.
Overview of settings
Use the following keys to preconfigure or change settings for your users. The keys are the same whether you run the standalone or Mac App Store edition of the sync app. However, the .plist file name and domain name will be different. When you apply the settings, ensure that you target the appropriate domain depending on the edition of the sync app.
List of settings
AllowTenantList
This setting prevents the users from uploading files to other organizations by specifying a list of allowed tenant IDs. If you enable this setting, the user gets an error if they attempt to add an account from an organization that isn't in the allowed tenants list. If the user has already added the account, the files stop syncing. This setting takes priority over Block syncing OneDrive accounts for specific organizations setting. Do NOT enable both settings at the same time.
The parameter for the AllowTenantList key is TenantID and its value is a string, which determines the tenants for whom the Allow Tenant setting is applicable. For the setting to be complete, this parameter also requires a boolean value to be set to it. If the boolean value is set to True, the tenant is allowed to sync.
The example for this setting in the .plist file is:
<key>AllowTenantList</key>
<array>
<dict>
<key>TenantId1</key>
<true/>
<key>TenantId2</key>
<true/>
</dict>
</array>
AutomaticUploadBandwidthPercentage
This setting enables the sync app to automatically set the amount of bandwidth that can be used for uploading files, based on available bandwidth.
To enable this setting, you must define a number between 1 and 99 that determines the percentage of bandwidth the sync app can use out of the total available bandwidth.
The example for this setting in the .plist file is:
<key>AutomaticUploadBandwidthPercentage</key>
<int>(Bandwidth)</int>
BlockExternalSync
This setting prevents the sync app from syncing libraries and folders shared from other organizations.
Set the setting's value to True, to prevent the users from syncing OneDrive, SharePoint libraries, and folders with organizations other than the user's own organization. Set the value to False or don't enable the setting to allow the OneDrive, and SharePoint files to be synced with other organizations also.
The example for this setting in the .plist file is:
<key>BlockExternalSync</key>
<(Bool)/>
BlockTenantList
This setting prevents the users from uploading files to organizations that are included in the blocked tenant IDs list.
If you enable this setting, the users get an error if they attempt to add an account from an organization that is blocked. If a user has already added an account for a blocked organization, the files stop syncing. This setting does NOT work if you have Allow syncing OneDrive accounts for only specific organizations setting enabled. Do NOT enable both settings at the same time.
Enable this setting by defining IDs for the TenantID parameter, which determines the tenants to whom the block tenant setting is applicable. Also set the boolean value to True for the ID of every tenant you want to prevent from syncing with the OneDrive and SharePoint files and folders.
Note
In the list, inclusion of the tenant ID alone doesn't suffice. It's mandatory to set the boolean value to True for the ID of each tenant who is to be blocked.
The example for this setting in the .plist file is:
<key>BlockTenantList</key>
<array>
<dict>
<key>TenantId1</key>
<true/>
<key>TenantId2</key>
<true/>
</dict>
</array>
DefaultFolderLocation
This setting specifies the default location of the OneDrive folder for each organization.
The parameters are TenantID and DefaultFolderPath.The TenantID value is a string that determines the tenants to whom the default folder location setting is applicable.The DefaultFolderPath value is a string that specifies the default location of the folder.
The following are the conditions governing the default folder location:-Mac app store: The path must already exist when the user is setting up the sync app.-Standalone: The path will be created (if it doesn't already exist) after the user sets up the sync app. Only with the Standalone sync app you can prevent users from changing the location.
The example for this setting in the .plist file is:
<key>DefaultFolder</key>
<array>
<dict>
<key>Path</key>
<string>(DefaultFolderPath)</string>
<key>TenantId</key>
<string>(TenantID)</string>
</dict>
</array>

DisableHydrationToast
This setting prevents toasts from appearing when applications cause file contents to be downloaded.
If you set the setting's value to True, toasts do not appear when applications trigger the download of file contents.
The example for this setting in the .plist file is:
<key>DisableHydrationToast</key>
<(Bool)/>
DisablePersonalSync
This setting blocks user from signing in and syncing files in personal OneDrive accounts. If this setting has been configured after a user has set up sync with a personal account, the user gets signed out.
If you set the setting's value to True, the users are prevented from adding or syncing personal accounts.
The example for this setting in the .plist file is:
<key>DisablePersonalSync</key>
<(Bool)/>
DisableTutorial
This setting prevents the tutorial from being shown to the users after they set up OneDrive.
If you set this setting's value to True, the tutorial is blocked from being shown to the users after they set up the OneDrive.
The example for this setting in the .plist file is:
<key>DisableTutorial</key>
<(Bool)/>
DownloadBandwidthLimited
This setting sets the maximum download throughput rate in kilobytes (KB)/sec for computers running the OneDrive sync app.
Set this setting's value to an integer between 50 KB/sec and the maximum rate is 100,000 KB/sec that determines the download throughput in KB/sec that the sync app can use.
The example for this setting in the .plist file is:
<key>DownloadBandwidthLimited</key>
<int>(Download Throughput Rate in KB/sec)</int>
EnableAllOcsiClients
This setting lets multiple users use the Microsoft 365 Apps for enterprise, Office 2019, or Office 2016 desktop apps to simultaneously edit an Office file stored in OneDrive. It also lets users share files from the Office desktop apps.
Important
We recommend keeping this setting enabled to make syncing faster and reduce network bandwidth. See all our recommendations for configuring the sync app.
If you set this setting to True or don't set this setting, the Office tab appears in OneDrive sync preferences, and Use Office applications to sync Office files that I open is selected, by default.
If you set this setting to False, the Office tab is hidden in the sync app, and co-authoring and in-app sharing for Office files are disabled. The User can choose how to handle Office files in conflict setting acts as disabled, and when file conflicts occur, both copies of the file are kept. For more information about the settings in the sync app, see Use Office applications to sync Office files that I open.
The example for this setting in the .plist file is:
<key>EnableAllOcsiClients</key>
<(Bool)/>
EnableODIgnore
This setting lets you enter keywords to prevent the OneDrive sync app from uploading certain files to OneDrive or SharePoint. You can enter complete names, such as 'setup.exe' or use the asterisk (*) as a wildcard character to represent a series of characters, such as *.pst. Keywords aren't case-sensitive.
If you enable this setting, the sync app doesn't upload new files that match the keywords you specified. No errors appear for the skipped files, and the files remain in the local OneDrive folder. In Finder, the files appear with an 'Excluded from sync' icon.
Users will also see a message in the OneDrive activity center that explains why the files aren't syncing.Set this setting's value to an integer between 50 KB/sec and the maximum rate of 100,000 KB/sec that determines the download throughput in KB/sec that the sync app can use.
The example for this setting in the .plist file is:
<key>EnableODIgnore</key>
<array>
<dict>
<string>*.PST</string>
</dict>
</array>
FilesOnDemandEnabled
This setting specifies whether Files On-Demand is enabled.
Important
We recommend keeping Files On-Demand enabled. See all our recommendations for configuring the sync app
Macos Sierra Onedrive Dmg Installer
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.
If you set this setting to True, FilesOnDemand is enabled and the users who set up the sync app can view the online-only files, by default.
If you set this setting to False, FilesOnDemand is disabled and the users won't be able to turn it on.
The example for this setting in the .plist file is:
<key>FilesOnDemandEnabled</key>
<(Bool)/>
HideDockIcon
This setting specifies whether a dock icon for OneDrive is shown.
If you set this setting's value to True, the OneDrive dock icon is hidden even if the app is running.
The example for this setting in the .plist file is:
<key>HideDockIcon</key>
<(Bool)/>
HydrationDisallowedApps

This setting prevents apps from automatically downloading online-only files. You can use this setting to lock down apps that don't work correctly with your deployment of Files On-Demand.
To enable this setting, you must define a string in JSON format as described below:[{'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 app that will be blocked. 'MaxBundleVersion' denotes the maximum bundle version of the app that will be blocked.
The example for this setting in the .plist file is:
<key>HydrationDisallowedApps </key>
<string> [{'ApplicationId':'appId','MaxBundleVersion':'1.1','MaxBuildVersion':'1.0'}, {'ApplicationId':'appId2','MaxBundleVersion':'3.2','MaxBuildVersion':'2.0'}]</string>
<(Bool)/>
OpenAtLogin
This setting specifies whether OneDrive starts automatically when the user logs in.
If you set this setting's value to True, OneDrive starts automatically when the user logs in on Mac.
The example for this setting in the .plist file is:
<key>OpenAtLogin</key>
<(Bool)/>
SharePointOnPremFrontDoorUrl
This setting specifies the SharePoint Server 2019 on-premises URL that the OneDrive sync app must try to authenticate and sync against.
To enable this setting, you must define a string containing the URL of the on-premises SharePoint Server.
The example for this setting in the .plist file is:
<key>SharePointOnPremFrontDoorUrl</key>
<string>https://Contoso.SharePoint.com</string>
Macos Sierra Onedrive Dmg Installer Windows 10
SharePointOnPremPrioritizationPolicy
This setting determines whether or not the client should set up sync for SharePoint Server or SharePoint in Microsoft 365 first during the first-run scenario when the email is the same for both SharePoint Server on-premises and SharePoint in Microsoft 365 in a hybrid scenario.
If you set this setting's value to 1, it is an indication that OneDrive should set up SharePoint Server on-premises first, followed by SharePoint in Microsoft 365.
The example for this setting in the .plist file is:
<key>SharePointOnPremPrioritizationPolicy</key>
<int>(0 or 1)</int>
SharePointOnPremTenantName
This setting enables you to specify the name of the folder created for syncing the SharePoint Server 2019 files specified in the Front Door URL.
If this setting is enabled, you can specify a TenantName that is the name the folder will use in the following convention:
OneDrive – TenantName (specified by you)
TenantName (specified by you)
If you do not specify any TenantName, the folder will use the first segment of the FrontDoorURL as its name. For example, https://Contoso.SharePoint.com will use Contoso as the Tenant Name in the following convention:
OneDrive – Contoso
Contoso
The example for this setting in the .plist file is:
<key>SharePointOnPremTenantName</key>
<string>Contoso</string>
Macos Sierra Onedrive Dmg Installer Download
Tier
You can configure the OneDrive Standalone sync app to receive delayed updates.
| .plist Location | Domain |
|---|---|
| ~/Library/Preferences/com.microsoft.OneDriveUpdater.plist | com.microsoft.OneDriveUpdater |

| Setting | Description | Parameters | Example .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 that allow you to play with features before they are released. Note that builds from this ring may be less stable. Enterprise - This update ring (now called 'Deferred') receives updates after they have been rolled out through the Production ring. It also lets you control the deployment of updates. For more information about the update rings and the procedure used by the sync app for checking for updates, see The OneDrive sync app update process. | <key>Tier</key> <string>(UpdateRing)</string> |
Important
We recommend selecting several people in your IT department as early adopters to join the Insiders ring and receive features early. We recommend leaving everyone else in the organization in the default Production ring to ensure they receive bug fixes and new features in a timely fashion. See all our recommendations for configuring the sync app
UploadBandwidthLimited
This setting defines the maximum upload throughput rate in KB/sec for computers running the OneDrive sync app.
To enable this setting, set a value between 50 and 100,000 that is the upload throughput rate the sync app can use.
The example for this setting in the .plist file is:
<key>UploadBandwidthLimited</key>
<integer>(Upload Throughput Rate in KB/sec)</integer>
macOS 10.14 Mojave is one of the most highly lauded desktop operating systems developed by Apple, Inc. It comes with a slew of new features and enhancements that's geared towards a smoother and more delightful user experience. If you haven't upgraded yet, we'll show you all the possible ways to download macOS Mojave so you can create a bootable macOS USB for installation and start to enjoy the benefits that millions of other users around the world are already seeing from this upgrade, such as Dark Mode, Continuity Camera, Stacks and the Voice Memos app.
Downloading macOS Mojave can get a little confusing because there are two types of downloads. One is the basic stub installer file that's about 22-23 MB, but the full size installer is about 5.8 to 6 GB. The stub installer does fetch all the other required content once you do the installation, but if you need the full installer so you can put Mojave on a different computer, then there are several ways to do that.
macOS Mojave DMG Direct Download Link
The legit way to download or install macOS Mojave provided by Apple is through Mac App Store, where you can get the macOS Mojave install app but it is can be used by other programs for installation. You need addtional settings to make it work. However, some of the tech experts are smart enough and grab the direct download link of macOS Mojave.
macOS 10.14.1 DMG Direct Download Link 1: https://archive.org/download/macOS_Mojave.dmg
macOS 10.14.1 DMG Direct Download Link 2: https://sundryfiles.com/9tz
macOS 10.14.1 ISO Direct Download link (for Windows PC User): https://ia600701.us.archive.org/28/items/MacOSMojave10.14.iso
In addition, you can also download the install dmg from other file hosting or torrent sites. This method is a little risky unless you know the website you're downloading from. For example, some websites that offer direct downloads for macOS Mojave will actually give you version 10.14.1, which is an update rather than the full OS installer. Others might even just serve you the stub installer.
To avoid this, try and read some genuine user reviews before attempting this approach. For that reason, there's no particular site that we recommend. However, that's not to say that there aren't genuine sites that offer the full installer. Most are free, but some might ask for donations via PayPal. If their version works out for you, it's up to you whether you want to pay them a small amount for their trouble.
p.s you need to burn mojave dmg to USB to make it a bootable media for macOS installation. After that, you can use the bootable USB to install macOS on the current or another Mac.
Macos Sierra Onedrive Dmg Installer Free
Use Download Manager to Get Mojave DMG Installer
macOS Mojave Patcher is a third-party utility that can be downloaded from the dosdude1 website, and is required to get the full 6GB DMG installer file for macOS Mojave.
As a first step, download the patch utility and run it on a Mac PC or laptop. Note that some Mac computers are not supported by this software, so check the list of compatible devices before getting the app. Within the app, click on the Tools option in the top toolbar and select Download macOS Mojave… The keyboard shortcut for this is Command+D. You'll see a pop-up notification asking you to confirm the download. Click Yes to download the full installer, which should be around 6000MB.
Download macOS Mojave DMG Installer from Mac App Store
If all you need is the stub installer for an upgrade from an existing macOS installation, it's even easier because it's just a question of simple and direct download from Apple's servers. However, this version can't be used for a clean install on a different computer because it won't contain the needed applications to create bootable media on a USB or DVD. For that, you are better off using the first method.
Go to App Store app on your Mac and search for macOS Mojave, then click the Get button next to it. This file will be called Install macOS Mojave.app, and all you need to do is click the Download button in the Software Update utilitiy that automatically launches when you click on Get in the App Store. You will need to enter your Mac credentials when prompted.
Again, remember that this is merely the stub installer, so it's only useful for upgrading current macOS to Mojave, not able to do a clean install on a different computer.
Re-Download Mojave with Mojave Running
Another way to get the stub installer is when you're already running macOS Mojave on your computer. The process is the same as the one described in Method 2, so you can follow the steps described above.
In certain cases, however, this method won't work because the Get button might not be available. It might show you that the OS is already installed, which means the button is greyed out and basically useless to you.
Abort the Reboot after Running macOS Mojave.app
This method is a sort of gimmick that tricks the stub installer into downloading all the required files for a full installation, and then aborting the process right before your computer reboots to actually go into the installation. This is not for the feint-of-heart because it requires commands to be run in Terminal, the command line interface in Mac.
Get the stub installer from the App Store and run it. You'll see several prompts, which you just need to follow by clicking through each. When you see the countdown timer for the reboot, hit the Cancel button.
At this point, all the files for the full installer have been downloaded, but they still need to be packaged in order to work. For this, run the following three commands in Terminal (Applications > Utilities), clicking Enter after each one:
sudo -s
mkdir /Applications/Install macOS Mojave.app/Contents/SharedSupport
cd /macOS Install Data
find . -mount | cpio -pvdm /Applications/Install macOS Mojave.app/Contents/SharedSupport
Now go to the directory where you saved the original stub installer, and you'll see that it has magically turned into a 6GB file, which is the full installer.

Summary
These are all the possible ways to download macOS Mojave to your computer so you can create bootable media for a macOS installation. If you're aware of other methods or genuine sites for downloading the full DMG file from macOS Mojave 10.14, please do share it with our readers in the comments section.