Jump to content

Recommended Posts

Posted

Hello everyone,

 

So I've been playing around with Endpoint Manager, building test devices and generally things have gone well, there's a wealth of information online and I feel comfortable with it all.

Then I found Intune for education and all of a sudden I had new device configuration policies in place, OneDrive SSO and KFM broke (I think due to Shared PC settings) and now I wonder if I should have just left Intune for Education well alone.

I understand that Intune for Education gives a simpler overview and you can go into Endpoint Manager if you need to drill further down into the settings.

 

Does anyone else have an opinion on Intune for Education?

Posted

We've just ignored InTune for Education and stuck with full fat as we felt it was too limited with its features.

 

For OneDrive on shared devices push out this Powershell script, filling in the tenant GUID. Turn on local storage if you're using shared PC/education policy templates.

 

$HKLMRegistryPath = 'HKLM:\software\Policies\microsoft\windows\OneDrive'$tenantGUID = ''if(!(Test-Path $HKLMRegistryPath)){New-Item -Path $HKLMRegistryPath -force}New-itemproperty -path $HKLMRegistryPath -Name 'DisableFileSyncNGSC' -Value '0' -PropertyType DWORD -Force | Out-Null

  • Thanks 1
Posted (edited)
We've just ignored InTune for Education and stuck with full fat as we felt it was too limited with its features.

 

For OneDrive on shared devices push out this Powershell script, filling in the tenant GUID. Turn on local storage if you're using shared PC/education policy templates.

 

$HKLMRegistryPath = 'HKLM:\software\Policies\microsoft\windows\OneDrive'$tenantGUID = ''if(!(Test-Path $HKLMRegistryPath)){New-Item -Path $HKLMRegistryPath -force}New-itemproperty -path $HKLMRegistryPath -Name 'DisableFileSyncNGSC' -Value '0' -PropertyType DWORD -Force | Out-Null

 

We do similar, albeit via an additional Configuration Profile with Custom OMA-URI Settings.

 

Name: OneDrive File Sync

Description: Disable OneDrive File Sync

OMA-URI: ./Device/Vendor/MSFT/Policy/Config/System/DisableOneDriveFileSync

Data Type: Integer

Value: 0

Edited by MYK-IT
  • Thanks 2
Posted (edited)

Shared pc settings does break OneDrive.

As it disables the use of OneDrive by default, it changes HLM\Software\Policies\Microsoft\Windows\OneDrive DisableFileSyncNGSC = dword:1 when it need to be 0 to work.

Edited by jslate1980
Posted
Yes I guessed that much after spending lots of time last week applying suggestions such as those mentioned by other people above and nothing actually worked.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...