1

I have users that I would like to disable from unmounting volumes because they do not have physical access to the machine. If they unmount a device the only way that they could remount it would be to reboot the machine and wait for the OS to automatically remount newly detected devices upon bootup. This is obviously undesirable so I would prefer if I could prevent them from unmouting devices. A GPO would be nice, but if there is a registry entry for it that would work as well.

2
  • (just for info) There are some registry keys... (although I hadn't the greatest of luck in using them). Can't recall the source, but they exist. Commented Oct 17, 2013 at 22:44
  • 2
    Same question on serverfault: serverfault.com/questions/364311/…
    – user201262
    Commented Oct 17, 2013 at 23:01

1 Answer 1

1

According to raymond.cc, running the following script will do it:

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray" /v "Services" /t reg_dword /d 29 /f
systray

The downside is that it means re-running systray after setting the value which may make it harder to do via policy. The key also exists in the HKLM hive, so that may be worth experimenting with as well.

0

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .