custom creator can be created to fulfill the request
Saturday, September 25, 2010
Wednesday, August 25, 2010
Edit in datasheet does not work with webpart filter
create seperate dataview and then datasheet will work
Sunday, July 25, 2010
progmatically setting home page of publishing site
Publishing sites to set the Home Page.
you can set SPWeb.RootFolder.WelcomePage
you can set SPWeb.RootFolder.WelcomePage
Friday, July 16, 2010
User deleted and re-added to AD - Profile not found
You need a temp account on which you migrate the profile first then to the id.
Friday, June 25, 2010
how to update users email if there is no interface in UI
Dont go to database. instead use the power shell to do same
Add-PSSnapin Microsoft.SharePoint.PowerShell
$site = Get-SPSite http://example.com
$web = $site.RootWeb
$user = $web.SiteUsers.GetByEmail("usr@example.com")
$user.Email = "user@example.com"
$user.Update()
Thursday, June 24, 2010
sharepoint 2010 sesion state
- Enter the following PowerShell command in the SharePoint 2010 Management Shell window:
Enable-SPSessionStateService –DefaultProvision
- On each web application for which you want to use session state, edit the web.config file and set the enableSessionState property of the pages element as follows:
Tuesday, May 25, 2010
How to overwrite documents that require check out?
you have to fist check out file
foreach ($file in $files) {
$file.CheckOut()
$stream = $file.OpenRead()
$done = $list.RootFolder.SubFolders["Hertel"].Files.Add($file.Name, $stream, $true)
Write-Host $done.Name "Uploaded" -BackgroundColor Green
}
Sunday, April 25, 2010
Click to Copy List Item to New in same list
Manually can be done by editing in datasheet
designer work flow also works http://www.wonderlaura.com/Lists/Posts/Post.aspx?ID=107
designer work flow also works http://www.wonderlaura.com/Lists/Posts/Post.aspx?ID=107
Thursday, March 25, 2010
Will exceeding 2000 documents in a SharePoint 2007 Library folder degrade only the performance of that library?
2000 is the view threshold. Index can be added
Thursday, February 25, 2010
Can we use XOR in a calculated column in SharePoint 2007
IF, AND, OR and NOT are supported. XOR is not supported.
Subscribe to:
Posts (Atom)