Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding the Recycle Bin and My Computer 2

Status
Not open for further replies.

nick8078

MIS
Joined
Feb 1, 2006
Messages
48
Location
US
I was curious if there is any way within active directory to hide My Computer and the Recycling Bin, and on a side not, the how to restrict the search function within Internet Explorer?
 
Use group policy/admin template/window component/.. and user there, there are many policies that you can restrict to the users.
 
in AD Group Policy Object Editor

Group Policies > Administrative Templates > Desktop

they are all in there
You can even disable the dektop all together, so you can't even right click, or move stuff to it. There are about 6/7 settings that do it all in the path.

HTH

Neil J Cotton
njc Information Systems
Systems Consultant
HND, BSc HONS, CCNA, BCS, IETF, DMTF
 
Any Luck?

Neil J Cotton
njc Information Systems
Systems Consultant
HND, BSc HONS, CCNA, BCS, IETF, DMTF
 
Yes, thank for the help, the only thing I am still unable to hide is the Printer and Faxes icon from the start menu, any idea where in active directory I can remove this?
 
OK, there is no setting in current GPs to remove the Printers and Faxes icon, heaven knows why they skipped it.

However, I have writen a quick policy for you. I assume you know about custom ADMs. And how to import them

If not, quick overview.
Copy the code below into a text file, save it as something like StartMenuPrintFax.adm (must be ADM). Save it in the following location. C:\Windows\inf (or where ever your %windir% is.
In your GPOE, click Computer Policies, and right click Administrative Templates and click Add/Remove Admin Templates. A Window with about 5 files in it will appear, click Add again and select your new ADM file. The file name will appear in the window. Click close.
You will notice now, under drop down, a "Start Menu Printers and Faxes" will appear.
If you click on that, you will probably find no policies are listed... this is because it isn't a policy as such, it's a preference, as far as you're concerned and the level of importance, Im not going to explain the difference. Click view, and filters, and uncheck the box "Show only true policies" or something along those lines, i think it's the second one from the bottom. Click OK. You will now have the policy shown, with a red dot on it to say that it is a preferece, as apposed to the blue dot that true policies have. This functions as the rest of your policies. It is named Hide Printers and Faxes Icon, so Enabling this setting will remove it from the applied clients.

Here is the code - Hope it Helps

CLASS MACHINE

CATEGORY !!PrintFaxStart

POLICY !!HidePrintFaxStart

KEYNAME "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
EXPLAIN !!HidePrintFaxStart_Exp

VALUENAME "Start_ShowPrinters"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 1

END POLICY

END CATEGORY ;; PrintFaxStart

[STRINGS]
PrintFaxStart = Start Menu Printers and Faxes
HidePrintFaxStart = Hide the Printers and Faxes Icon within the Start Menu
HidePrintFaxStart_Exp = Enabling this setting will remove the Windows Printers and Faxes icon from the start menu. Disabling this setting will make the icon visible. Not Configuring this setting will no change the state of the system start menu \n\n N Cotton - NJC Information Solutions 2006


Neil J Cotton
njc Information Systems
Systems Consultant
HND, BSc HONS, CCNA, BCS, IETF, DMTF
 
Thank you very much for the help, I appreciate it greatly!!
 
No problem..
Don't thank me....pay me....you know where the stars are! hehehehe joking.

Neil J Cotton
njc Information Systems
Systems Consultant
HND, BSc HONS, CCNA, BCS, IETF, DMTF
 
That's worth a star, ncotton. Nice Job.

Start, Help. You'll be surprised what's there. A+/MCP/MCSE/MCDBA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top