Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Disable import/export Outlook 2003

0 views
Skip to first unread message

Peter Jensen

unread,
Jul 4, 2007, 10:03:04 AM7/4/07
to
Hi,

I would like to disable (grey) the "import & export" function in Outlook
2003 using Group Policy. Is it possible, if YES, how?

neo [mvp outlook]

unread,
Jul 4, 2007, 11:47:58 AM7/4/07
to
Yes, you create a gpo that disables the menu item by its id number. For
import & export under the file menu, the id # is 2577.

PS - http://office.microsoft.com/en-us/ork2003/HA011402401033.aspx is pretty
good except for the vba code that digs out the menu id #s for Outlook. It
needs to be modified to:


Sub EnumerateControls()
Dim icbc As Integer
Dim cbcs As CommandBarControls
Set cbcs = Application.ActiveExplorer.CommandBars("Menu
Bar").Controls("File").Controls
For icbc = 1 To cbcs.Count
MsgBox cbcs(icbc).Caption & " = " & cbcs(icbc).ID
Next icbc
End Sub


"Peter Jensen" <pete...@removemeOfir.dk> wrote in message
news:evusLQkv...@TK2MSFTNGP03.phx.gbl...

Peter Jensen

unread,
Jul 5, 2007, 3:35:48 AM7/5/07
to
Thanks for your help.

"neo [mvp outlook]" <n...@discussions.microsoft.com> skrev i meddelelsen
news:%23DFxxKl...@TK2MSFTNGP05.phx.gbl...

0 new messages