mardi 24 mars 2009

Update central adminstration application pool system account

During the setup, SharePoint don’t ask you to choose a System Account to run the central adminstration application. By default the CA run under the setup account (Server Administrator). This can be a security issue and not a best practice. You change the application pool identity using this command :

stsadm –o updatefarmcredentials –identitytype configurableid –userlogin [DOMAIN\USER] –password [PASSWORD]

For more information :

http://technet.microsoft.com/en-us/library/cc288300.aspx

Modifier le system account de l’ administration centrale SharePoint

Lors de installation de SharePoint, il n’est à aucun moment demandé de choisir un System Account pour exécuter l’application pool de la central administration. Pourtant il n’est pas conseillé de laisser cette application s’éxécuter sur le compte d’installation (Admin sur le serveur)

La modification se fait à l’aide de la commande suivante :

stsadm –o updatefarmcredentials –identitytype configurableid –userlogin [DOMAIN\USER] –password [PASSWORD]

Plus d’information sur cette commande : http://technet.microsoft.com/en-us/library/cc288300.aspx

jeudi 19 mars 2009

Tutoriaux sur Sharepoint 2007

Je profites de mon blog pour vous communiquer l'adresse de l'espace SharePoint du réseau devoloppez.com.

http://sharepoint.developpez.com


Vous y trouverez une multitude d'articles.


mardi 17 mars 2009

Force SSP deletion in SharePoint 2007

Sometimes we need to force the deletion of a SSP. for exemple to delete the default SSP. It's not possible from the Central Admin but you can do it from the command prompt :

stsadm -o deletessp -title [SSPNAME] -force

Forcer la suppression d'un SSP dans SharePoint 2007

Il est parfois utile de forcer la suppresion d'un Shared Services Provider, par exemple pour supprimer le default SSP. Cela est impossible depuis la central admin mais réalisable depuis la ligne de commande :

stsadm -o deletessp -title [SSPNAME] -force

vendredi 13 mars 2009

Simple Command to display List Definition from a SharePoint Website

Here is a simple and fun command to get a list definition (XML) from your browser :

http://[serverName]/_vti_bin/owssvr.dll?Cmd=ExportList&List={ListGUID}

Afficher la définition d'une liste depuis l'interface SharePoint

Voici une commande relativement sympa (je trouve ...) qui permet d'afficher la définition d'une liste depuis l'interface SharePoint.

http://[serverName]/_vti_bin/owssvr.dll?Cmd=ExportList&List={ListGUID}