Forum Discussion
PatrickF11
Nov 07, 2019MCT
Custom profile: hide known file extensions
Hi, i would like to configure our WIndows 10 clients so that they show all the file extensions. There is a GPO to configure this but i would like to configure this through MS Intune. Do you hav...
Mykey
Sep 22, 2023Brass Contributor
Is there any update on this?
PatrickF11
Sep 28, 2023MCT
Mykey You can do this via a simple Powershell Script or a Remediation Task via Intune.
Something like this:
try
{
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name HideFileExt -Value 0 -ErrorAction Stop
}
catch
{
Write-Error -Message "Could not write regsitry value" -Category OperationStopped
$exitCode = 1
}