segunda-feira, 1 de junho de 2009

SharePoint Products and Technologies Templates: Web Part Templates for Visual Studio .NET

SharePoint Products and Technologies Templates: Web Part Templates for Visual Studio .NET

SDK MOSS 2007

SharePoint Server 2007 SDK: Software Development Kit

Conteudo para download

Um ótima documentação para Segurança, Desenvolvimento, Operações, Solução, Planejamento.

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

Segue links importantes para administrar o SharePoint

Abaixo segue os links para auxiliar:

o Introducing Microsoft Office SharePoint Server 2007

o Introduction to sites, workspaces, and pages

o Introduction to My Site

o Introduction to libraries

o Create a library

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 Delete a library

o Introduction to lists

o Create a list

o Delete a list

o Manage list templates

o Managing lists or libraries with many items

o Create a blog

o Create a dashboard

o View a list of sites

o View and analyze survey results

o Search for text or files on a site

o Create or change a view

o Show or hide columns in a view

o Introduction to versioning

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 Check out and edit a file

o Check in a file

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 Manage alerts

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 permission levels

o Manage permissions for a list, library, folder, document, or list item

o About managing SharePoint groups and users

o Manage SharePoint groups

o View users and SharePoint groups and edit the Quick Launch group list

o Remove users and groups from site access

o Enable anonymous 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 Customize site navigation

o Configure and manage a shared navigation structure across sites

o Default site templates

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 Add or remove a Web Part

o Customize Web Parts

o Customize a Web Part Page

o Connect data in Web Parts

o List View Web Part

o Page Viewer Web Part

o Image Web Part

o Site Users Web Part

o Content Editor Web Part

o XML Web Part

o Form Web Part

o Create a site column

o Introduction to content types

o Create a site content type

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 Introduction to workflows

o Use a Three-state workflow

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 Complete a workflow task

o View workflow tasks

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

Eai gente este é o primeiro post sobre EPM e vamos começar logo com a customização de projetos.



















espero que ajudem vocês!
qualquer dúvida entrem em contato.

Iterating UserProfiles in Shared Service Provider (SSP)

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

Mostrar um passo-a-passo na instalação do Microsoft Office SharePoint Server 2007.

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.