You have to write and run code. This Outlook VBA snippet would set property
values on the currently displayed folder:
Set fld =Application.ActiveExplorer.CurrentFolder
fld.CustomViewsOnly = True
fld.LockUserChanges = True
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Yu" wrote:
> I created some views in the public folders and want to restrict users to use
> these views by default.
> I searched the web and books and it seems that I can use below properties to
> control.
> However, I have no idea how to use this. any help?
>
> CustomViewsOnly
> LockUserChanges
>
>
>