锁定Word和放大器; PowerPoint功能 [英] Lock down Word & PowerPoint features

查看:123
本文介绍了锁定Word和放大器; PowerPoint功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有谁知道的一种方式来锁定(删除/隐藏/禁用)Word和放大器;的PowerPoint在Office 2007?

Does anyone know of a way to lock down (remove/hide/disable) Word & PowerPoint in Office 2007?

简单的说我想从使用了其中的一些功能(主要是格式)禁用用户。基础上,如何做到这一点,我刚才似乎这不能找到解决的一些想法:

Simply put I want to disable the user from using some functionality in them (mostly formatting). Some ideas of ways to do it, which I just can’t seem to find solutions based on:


  • 字具有锁定一些功能走了保护文档选项,但我需要更多的PowerPoint,也 - 即这是一个文档的水平。

  • 某种UI自动化它禁用按钮 - 即其远程禁用它们的应用程序。我很高兴,如果UI自动化没有运行他们得到过去吧的事实。

  • 组策略或注册表设置

  • 权限管理服务器(不知道即使这是正确的 - 只是突然出现在我的脑海)

推荐答案

解决方案发现创建一个标准的VSTO插件,功能区(XML)添加到它,然后使用命令节点禁用按钮。对于的idMso的列表,请参阅该<一个href=\"http://download.microsoft.com/download/0/7/8/07857e57-fc50-482f-ae67-209da417e232/2007OfficeControlIDsExcel2007.EXE\"相对=nofollow>下载。

The solution found was to create a standard VSTO add-in, add a ribbon (XML) to it and then using the commands node to disable buttons. For a list of the idMso's see this download.

<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="Ribbon_Load">
<commands>
	<command idMso="Bold" enabled="false"/>
	<command idMso="Font" enabled="false"/>
	<command idMso="FontSize" enabled="false"/>
	<command idMso="Italic" enabled="false"/>
	<command idMso="Underline" enabled="false"/>
	<command idMso="Shadow" enabled="false"/>
	<command idMso="Strikethrough" enabled="false"/>
	<command idMso="ChangeCaseGallery" enabled="false"/>
	<command idMso="CharacterSpacingGallery" enabled="false"/>
	<command idMso="FontColorPicker" enabled="false"/>
	<command idMso="FontColorMoreColorsDialogPowerPoint" enabled="false"/>
	<command idMso="FontDialogPowerPoint" enabled="false"/>
	<command idMso="GroupParagraph" enabled="false"/>
	<command idMso="BulletsGallery" enabled="false"/>
</commands>
<ribbon startFromScratch="false">
	<tabs>
		<tab idMso="TabAddIns">
			<group id="MyGroup"
				   label="My Group">
			</group>
		</tab>
	</tabs>
</ribbon>

这篇关于锁定Word和放大器; PowerPoint功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆