Microsoft SharePoint Server 2010: 企业协作与创新平台

需积分: 3 3 下载量 195 浏览量 更新于2024-07-31 收藏 11.27MB PPTX 举报
"CN Microsoft SharePoint Server 2010 Overview Simple V2" Microsoft SharePoint Server 2010 是一个强大的企业级协作平台,旨在帮助企业应对不断变化的业务需求,同时控制IT成本和业务系统的复杂性。它提供了一个集成的解决方案,帮助用户从大量数据中获取有价值的信息,并促进与客户、合作伙伴之间的协同工作。 面对21世纪的工作模式,SharePoint 2010 提供了适应性,使得员工能够以更灵活的方式进行合作,同时确保符合法规和合规要求。它通过整合内部业务平台,提高了投资回报率,增强了系统的可扩展性,鼓励用户创新并保护知识产权。 SharePoint Server 2010 的一个重要特点是其提供的平台和服务具有高度的可扩展性,这降低了IT运营的成本和管理复杂性。它允许企业将分散的投资集中到一个统一的平台架构上,使得各业务线(LOB)系统能发挥更大价值,从而实现更高的投资回报。 在协作方面,SharePoint 2010 强调跨产品、跨技术、跨应用和跨组织的安全沟通。它提供了与Web Content Accessibility Guidelines (WCAG) 2.0 兼容的标准化交互方式,确保了用户不论是在桌面还是移动设备上都能获得一致的体验。Office Web Applications如Word、Excel、PowerPoint和OneNote,让用户能够在Web环境中进行阅读和编写,保持与原始文件格式的完美一致性,无论何时何地,都能无缝地进行工作。 此外,SharePoint 2010 还引入了丰富的用户体验,例如Office Ribbon 用户界面,使站点创建和内容发布更为简便。通过SharePoint Workspace,用户可以享受到丰富的离线协作功能。多语言用户界面支持全球化的团队合作,而社交功能则进一步增强了团队间的联系,无论在线还是线下,都能保持团队的紧密协作。 Microsoft SharePoint Server 2010 是一个综合的业务协作平台,它为企业提供了一种有效管理和共享信息的方式,促进了内部和外部的协作,降低了IT成本,并且提供了丰富的用户体验,以满足不同场景和设备的需求。

#!/bin/sh # WARNING: This file is created by the Configuration Wizard. # Any changes to this script may be lost when adding extensions to this configuration. # --- Start Functions --- usage() { echo "You must have a value for SERVER_NAME either set as an environment variable or the first parameter on the command-line." echo "ADMIN_URL defaults to t3://iZbp13mxkrdvorojwpi2c9Z:7001 if not set as an environment variable or the second command-line parameter." echo "USER_NAME and PASSWORD are required for shutting the server down when running in production mode:" echo "Usage: $1 {SERVER_NAME} {ADMIN_URL} {USER_NAME} {PASSWORD}" echo "for example:" echo "$1 managedserver1 t3://iZbp13mxkrdvorojwpi2c9Z:7001 weblogic weblogic" } # --- End Functions --- # ************************************************************************* # This script is used to stop a managed WebLogic Server for the domain in # the current working directory. This script reads in the SERVER_NAME and # ADMIN_URL as positional parameters, sets the SERVER_NAME variable, then # calls the startWLS.cmd script under ${WL_HOME}/server/bin. # # Other variables that startWLS takes are: # # WLS_USER - cleartext user for server startup # WLS_PW - cleartext password for server startup # JAVA_OPTIONS - Java command-line options for running the server. (These # will be tagged on to the end of the JAVA_VM) # JAVA_VM - The java arg specifying the VM to run. (i.e. -server, # -hotspot, etc.) # # For additional information, refer to "Managing Server Startup and Shutdown for Oracle WebLogic Server" # # (http://download.oracle.com/docs/cd/E23943_01/web.1111/e13708/overview.htm) # # ************************************************************************* # Set SERVER_NAME and ADMIN_URL, they must by specified before starting # a managed server, detailed information can be found at # http://download.oracle.com/docs/cd/E23943_01/web.1111/e13708/overview.htm if [ "$1" = "" ] ; then if [ "${SERVER_NAME}" = "" ] ; then usage $0 exit fi else SERVER_NAME="$1" export SERVER_NAME shift fi if [ "$1" = "" ] ; then if [ "${ADMIN_URL}" = "" ] ; then ADMIN_URL="t3://iZbp13mxkrdvorojwpi2c9Z:7001" export ADMIN_URL fi else ADMIN_URL="$1" export ADMIN_URL shift fi DOMAIN_HOME="/home/weblogic/Oracle/Middleware/user_projects/domains/base_domain" ${DOMAIN_HOME}/bin/stopWebLogic.sh $1 $2

2023-06-03 上传