segunda-feira, 1 de junho de 2009
Conteudo para download
Getting started with Office SharePoint Server 2007 Download
Planning and architecture for Office SharePoint Server 2007 , part 1 Download,
Planning and architecture for Office SharePoint Server 2007 , part 2 Download,
Governance guide for Office SharePoint Server 2007 Download
Planning an extranet environment for Office SharePoint Server 2007 Download
Deliver accessible solutions (white paper) Download
Best practices for developing accessible Web sites (white paper) Download
Workflow security in Windows SharePoint Services 3.0 and Microsoft Office SharePoint Server 2007 (white paper) Download
Internet presence scenario ( Office SharePoint Server 2007 ) Download
Plan and configure availability within an Office SharePoint Server 2007 farm Download
Deployment for Office SharePoint Server 2007 Download
Upgrading to Office SharePoint Server 2007 Download
Deploying Office SharePoint Server 2007 Service Pack 1 Download as .doc Download as .pdf
Installation guide for Office SharePoint Server 2007 Download
Design and build sites for Office SharePoint Server 2007 Download
Administering enterprise search for Office SharePoint Server 2007 Download
Security for Office SharePoint Server 2007 Download
Web publishing and planning guide for Office SharePoint Server 2007 Download
Records management guide for Office SharePoint Server 2007 Download
Document management guide for Office SharePoint Server 2007 Download
Criar, Gerenciar, Desenvolver
Abaixo segue os links para auxiliar:
o Introducing Microsoft Office SharePoint Server 2007
o Introduction to sites, workspaces, and pages
o Add one or more files to a library
o Open or edit files in a library
o View or change information about a file or folder in a library
o Set up templates for a library
o Managing lists or libraries with many items
o View and analyze survey results
o Search for text or files on a site
o Show or hide columns in a view
o Enable and configure versioning for a list or library
o View version history of an item or file
o Restore a previous version of an item or file
o Copy a file to another location
o Undo check-out and discard changes to a file
o Require check-out for files in a library
o Require approval of items or files in a list or library
o Use a workflow to manage content approval for a library
o Create an alert or subscribe to an RSS Feed
o Cancel an alert or unsubscribe to an RSS Feed
o Introduction to incoming email
o Add content to sites by sending email
o Send email to members of a SharePoint group
o Enable and configure email support for a list or library
o Store and manage contact information
o Create a Meeting Workspace site
o Customize a Meeting Workspace site
o Add, change, and delete pages in a Meeting Workspace site
o Manage the attendees in a Meeting Workspace site
o Assign and track tasks in a Meeting Workspace site
o Create and manage a Document Workspace
o Manage your documents and tasks on your My Site
o About security features of Windows SharePoint Services 3.0
o About controlling access to sites and site content
o Permission levels and permissions
o Manage permissions for a list, library, folder, document, or list item
o About managing SharePoint groups and users
o View users and SharePoint groups and edit the Quick Launch group list
o Remove users and groups from site access
o Configure permissions for a blog
o Apply Information Rights Management to a list or library
o Introduction to customizing sites and pages
o Change the default image on the home page
o Change the site colour or theme
o Introduction to site navigation
o Configure and manage a shared navigation structure across sites
o Create or edit a master page
o Plan the structure of site collections and sites
o Introduction to customizing pages by using Web Parts
o Introduction to content types
o Change a content type for a list or library
o Add an existing content type to a list or library
o Turn on support for multiple content types in a list or library
o Add or change a workflow for a list, library, or content type
o Remove a workflow from a list, library, or content type
o Manually start a workflow on a document or item
o View the status of a workflow in progress
o Cancel a workflow in progress
o Introduction to Business Intelligence features
o Create and publish Key Performance Indicators (KPIs)
o Introduction to Excel Services and Excel Web Access
Campos Customizados no EPM
Iterating UserProfiles in Shared Service Provider (SSP)
This article deals with retrieving user profiles of all the user that exists in shared service provider. There may be many scenarios where you need to iterate through all the userprofiles that exist in ssp. There is no such method available out of the box in MOSS where you can get list of user in Shared Service Provider. In order to iterate each profile in shared service provider we need to use Ienumerators
I had a scenario where I need to activate features on all the mysites that exist. In order to activate feature on individuals mysite, I first need to check whether the user has a mysite and then activate the feature.
When you are trying to do this you may come across some Permission and Access Denied exception. Here is the links which will help you to solve the issue
http://edinkapic.blogspot.com/2007/08/enumerating-user-profiles.html
You can retrieve users from SSP by using web services. The below code iterates a list of user from SSP
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
using System.Web;
using System.Collections;
using System.IO;
using Microsoft.SharePoint.Administration;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Utilities;
using Microsoft.Office.Server;
using Microsoft.Office.Server.UserProfiles;
public namespace SSPUsers
{
public class Program
{
static void Main(string[] args)
{
using (SPSite searchSite = new SPSite("http://sspsiteurl"))
{
UserProfile currentProfile;
bool checkPersonalSite;
// Use the ServerContext to get the SSP associated to the site collection of interest
ServerContext context = ServerContext.GetContext(searchSite);
// Get the user profile enumerator for the targeted SSP
UserProfileManager profileManager = new UserProfileManager(context);
long count = profileManager.Count;
IEnumerator enumerator = profileManager.GetEnumerator();
bool continueEnum = true;
while (continueEnum)
{
try
{
continueEnum = enumerator.MoveNext();
}
catch (Exception e)
{
Console.WriteLine("EXCEPTION in enum - try to move to next: " + e.ToString());
continueEnum = enumerator.MoveNext();
}
currentProfile = (UserProfile)enumerator.Current;
}
}
}
The currentProfile object will give you access to all the properties of a user availabel in the ssp
Instalação do MOSS
Modo de Instalação do Microsoft Office SharePoint Server 2007 “MOSS2007”, escolha em Avançado;
Escolha a pasta para instalação do MOSS2007 e de pesquisa e clique Instalar Agora;
Modo Completa para instalar todos os componentes;
Bem-Vindo a Produtos e Tecnologias do SharePoint, clique em Avançar;
Progresso da Instalação;
Clique em Fechar para executar o Assistente de Configuração do SharePoint;
Configurar Aplicativo Web da Administração Central do SharePoint, e clique em Avançar;
Os serviços que serão instalados, clique em Sim;
Selecione “Não, desejo criar um novo farm de servidores” e clique Avançar;
Coloque o nome do servidor, nome do Banco de Dados “SharePoint_Config”, nome de usuário e senha e clique em Avançar
Configurando o Banco de Dados SQL Server;
Pronto! Instalado.
Espero ter ajudado.