Forum Discussion
KevinFaussadier
Apr 20, 2022Copper Contributor
Disable Recent Files / Frequent Folders & Open To This PC
Hello tech guys,
I am trying to enable those GPO (https://matthewhill.uk/windows/group-policy-disable-recent-files-frequent-folder-explorer/) but in Intune, but I can't find the settings. Is this possible to do in Intune?
Thank uou,
- Moe_KinaniBronze Contributor
I would use Powershell, MEM - Windows - Powershell.
I would use something similar to below:
$RegPath = “HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced”
Set-ItemProperty -Path $RegPath -Name "LaunchTO" -Value 1
Hope this helps!
Moe