Squelch Posted November 28, 2022 Posted November 28, 2022 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?
IRL Posted November 28, 2022 Posted November 28, 2022 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 1
KK20 Posted November 28, 2022 Posted November 28, 2022 I havent heard of intune for education. If there are fewer features then I would prefer to keep on intune premium.
MYK-IT Posted November 28, 2022 Posted November 28, 2022 (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 November 28, 2022 by MYK-IT 2
jslate1980 Posted November 28, 2022 Posted November 28, 2022 (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 November 28, 2022 by jslate1980
Squelch Posted November 28, 2022 Author Posted November 28, 2022 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now