Forum Discussion
alex_ri141
Jan 08, 2021Copper Contributor
Disable Hidden Files on AutoPilot / Find my Device without Admin Rights
Hi all, I am stuck with my settings for the AutoPilot client. It is about two things to which I could not google anything so far: 1.) On the client, the normal user (not admin) after installation...
- Jun 07, 2021Hello, thanks for the help, has brought me further. Sorry for the late feedback
VG
Alex
Moe_Kinani
Jan 08, 2021Bronze Contributor
Here is the reg path for it, you can push a simple ps script using Intune to change the value.
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
Hidden=2
$path= ‘HKCU:\ Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced’
Set-itemproperty -path $path -Name ‘Hidden’ -Value 2
You can run the script with standard user privileges.
Hope this helps!
Moe
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
Hidden=2
$path= ‘HKCU:\ Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced’
Set-itemproperty -path $path -Name ‘Hidden’ -Value 2
You can run the script with standard user privileges.
Hope this helps!
Moe
- alex_ri141Jun 07, 2021Copper ContributorHello, thanks for the help, has brought me further. Sorry for the late feedback
VG
Alex