Re: MS Office 2003 Customer Experience Feedback Program
From: Mark van Beijnen (Mark.vanBeijnen_at_ATOSORIGIN.COM)
Date: 10/24/03
- Previous message: Butler, Kevin D: "Re: Ever going to be a mention of the XP Rollup patch allowed out onto"
- Maybe in reply to: Jeff Click: "MS Office 2003 Customer Experience Feedback Program"
- Next in thread: Ben Canning: "Re: MS Office 2003 Customer Experience Feedback Program"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Fri, 24 Oct 2003 15:31:54 +0200 To: NTBUGTRAQ@LISTSERV.NTBUGTRAQ.COM
I am not sure about disabling menu items in Office 2003 (haven't used it
yet...) However, for Office 2000/XP it is part of the MS delivered ADM
templates (GPO - Administrative Templates) with the Office Resource kit.
Also custom templates can be written for this purpose. Following example
handles disabling of File-Send To in Office XP (version 10). From this
example you should be able to extract the corresponding key from the
registry, as well as build you own template(s) for disabling office items.
;-----------------------------
CLASS USER
CATEGORY !!CustomSettings
CATEGORY !!OfficeSettings
CATEGORY !!MSWord
POLICY !!DisabledMenus
; In order to find appropriate menu -ID- (number) use the Immediate
window in VBA
; with the following command:
; ? commandbars ("menu bar").controls ("file").controls ("Send To").id
; Replacing control and id strings with menu names to be located
EXPLAIN !!DisabledMenusExplain
KEYNAME
Software\Policies\Microsoft\Office\10.0\Word\DisabledCmdBarItemsCheckBoxes
PART !!DisabledCmdBarItemsCheckBoxesText TEXT
END PART
PART !!DisabledBySysAdminText TEXT
END PART
PART !!WhiteSpace TEXT
END PART
PART !!FileSendTo CHECKBOX
VALUENAME FileSendTo
DEFCHECKED
VALUEON "30095"
VALUEOFF "0"
END PART
END POLICY ; DisabledMenus
END CATEGORY ; MSWord
END CATEGORY ; OfficeSettings
END CATEGORY ; CustomSettings
[strings]
CustomSettings="Company Custom Settings"
DisabledBySysAdminText="Resulting Balloon Tip: 'Disabled by your system
administrator.'"
DisabledCmdBarItemsCheckBoxesText="Selected Menu Options will become
Unavailable."
DisabledMenus="Disable command bar buttons and menu items"
DisabledMenusExplain="Each check-box can disable a specific menu item
and/or menu item group.\n\nBy Office default (Microsoft) none of the
items are disabled.\n\nWhen enabling this Policy for the first time
Company Defaults are shown and activated."
FileSendTo="File | Send To"
MSWord="Microsoft Word"
OfficeSettings="Office Settings"
WhiteSpace=""
;-----------------------------
---- NTBugtraq subscribers save $103.00 off the TICSA exam by using promo code "NT1003" when registering to take the TICSA exam at www.2test.com. Prove to your employer and peers that you have the knowledge and abilities to be an active stakeholder in today's enterprise security. Become TICSA certified www.trusecure.com/ticsa. Promotion expires 12/31/03 and cannot be used in combination with other offers. ----
- Previous message: Butler, Kevin D: "Re: Ever going to be a mention of the XP Rollup patch allowed out onto"
- Maybe in reply to: Jeff Click: "MS Office 2003 Customer Experience Feedback Program"
- Next in thread: Ben Canning: "Re: MS Office 2003 Customer Experience Feedback Program"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]