Custom policy to disable network access to removable media
- From: Brendon B <BrendonB@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 18 Sep 2007 00:54:04 -0700
Hi everyone
We have a requirement to create a policy which disables network access to
CDROM and floppy drives on our servers.
Some research indicated that the registry keys which can do this are the
following:
Software\Microsoft\Windows NT\CurrentVersion\Winlogon\AllocateCDRoms and
Software\Microsoft\Windows NT\CurrentVersion\Winlogon\AllocateFloppies
respectively.
Manually changing these values to "1" has the desired effect.
I dont find an existing policy which can do this so I wrote the following
ADM file to cater for this:
*********************************************************
CLASS MACHINE
CATEGORY !!ServerBaseLine
POLICY !!DisableCDRom
EXPLAIN !!DisableCDRom_Explain
VALUENAME "AllocateCDRoms"
KEYNAME "Software\Microsoft\Windows NT\CurrentVersion\Winlogon"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY !!DisableFloppy
EXPLAIN !!DisableFloppy_Explain
VALUENAME "AllocateFloppies"
KEYNAME "Software\Microsoft\Windows NT\CurrentVersion\Winlogon"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
END CATEGORY
[strings]
DisableCDRom="Disable CDROM Drive"
DisableCDRom_Explain="Enable this to disable network use of the CDROM drive"
DisableFloppy="Disable Floppy Drive"
DisableFloppy_Explain ="Enable this to disable network use of the Floppy
drive"
ServerBaseLine="Server Baseline"
********************************************************
Importing this doesnt show the policy in the group policy snap in. It only
shows the category. If I change only the Key value to something else, you can
see the policies but obviously it wont work.
Am I doing something wrong? Some pointers please.
Thanks
.
- Follow-Ups:
- Re: Custom policy to disable network access to removable media
- From: Meinolf Weber
- Re: Custom policy to disable network access to removable media
- Prev by Date: RE: IE7 GPO - setting home pages
- Next by Date: Re: Custom policy to disable network access to removable media
- Previous by thread: Re: Can i restart a lot of pc's
- Next by thread: Re: Custom policy to disable network access to removable media
- Index(es):
Relevant Pages
|