I have added a peice to my login script that says the following:

; Disallow connect / disconnect of network drives
If InGroup("Information Systems") = 0
WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoNetConnectDisconnect", "0", "REG_DWORD")
EndIf

As it says it is supposed to disable the users ability to connect / disconnect network drives - unless you are in group "Information Systems". The value 1 (enabled) and 0 (disabled) or supposed to be used. Now, it does write the key correctly to the correct spot when you are not in the specified group (which is good). However it does not do anything, it doesn't disallow the ability to connect / disconnect network drives. I've tried both a 1 and a 0 in for the value.

~Ryan