Tuesday, August 9, 2011

How to add Site Templates in Sharepoint 2010 while create NEW sites

It just simple and follow this. Go to Site settings and move to the section "look and feel" as shown in below screen.

If you see, there is a link named "Page layouts and site templates". That is what we needed. Just click on that link.

Now, below is the screen you see, which has the complete list of site templates and page layouts available in the system.

If you see the screen, there are only two templates selected by default. This is the reason why we see only two templates available on the create site page. So, add how many templates you want from the left side. You can do the same with page layouts too. Select all page layouts you needed and save

Help

Wednesday, July 20, 2011

"Could not load file or assembly 'RSSharePointSoapProxy, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified."

After Replace/Editing of the Web.config file unable to access the site showing,

"Could not load file or assembly 'RSSharePointSoapProxy, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified."


Followed the below Link
link


Download and installed the file from the below link...

link

Wednesday, July 14, 2010

While Restoring SQL database - Error 3154

When we try to restore backup file to new database if we get error 3154.

For that instead of restoring backup database to New database. Directly Restore backup file with New Database Name.

Tuesday, March 23, 2010

Sharepoint 2010 Installation Guide

Installation Guide Step by Step Link

or

http://www.codeproject.com/KB/sharepoint/SharePoint_Server_2010.aspx

Microsoft SharePoint 2010 Products Upgrade Approaches

There is no option for taking a 2007 .bak file directly to 2010. You have two general upgrade paths: In-place and content database attach. Also it needs to be upgraded to 2007 SP2 before attach to 2010.


or we can follow this .PDF file...

Sharepoint Server 2010 System Requirements

Sharepoint Server 2010 Preliminary System Requirements

Sharepoint Server 2010 is available only 64-Bit. So,64-bit processor need to run.

Hardware Requirements:

1. 64-bit processor, four-core, 2.5 Ghz minimum per core.

2. 4GB RAM for Developers(Front End Servers) & 16GB RAM for Server farms

3. 80GB H.D.D

Software Requirements:

1. 64-bit Sharepoint server.

2. 64-bit SQL Server 2005 with SP3 or 64-bit SQL Server 2008 with Service Pack 1 (SP1) and Cumulative Update 2 with Cumulative update package 2 for SQL Server 2008 Service Pack 1.

3. 64-bit Windows Server 2008 standard with SP2 or Windows Server 2008 R2. (With Windows Server 2008 R2 only we are able to select Database server or else default it will select SQL express Database.)

While Installing sharepoint server 2010 it will prompt us to install other required software what need to be install. We can follow that and install other software.

SharePoint Server 2010 browser compatibility:

Sharepoint Server sites will support by a standards based browser such as Internet Explorer 7, Internet Explorer 8 or Firefox 3.x will be required to author content. Customers who are using Windows XP must transition to Service Pack 3 by July, 2010 and are eligible to receive support for Internet Explorer 6 until April, 2014.

Tuesday, September 1, 2009

Bat File to backup Moss Site

@echo off
echo ===============================================================
echo Back up sites for the farm to GLBRC
echo ===============================================================
cd\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN
@echo off
stsadm -O backup -url http://dev06:40000 -filename d:\backup\40000.dat -overwrite
echo completed

Tuesday, May 5, 2009

Powershell script for SQL Backup

Full Backup
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.Smo") out-null[System.IO.Directory]::CreateDirectory("C:\test") out-null
$srv=New-Object "Microsoft.SqlServer.Management.Smo.Server" "ServerName"
$bck=new-object "Microsoft.SqlServer.Management.Smo.Backup"
$bck.Action = 'Database'
$fil=new-object "Microsoft.SqlServer.Management.Smo.BackupDeviceItem"
$fil.DeviceType='File'
$today = Get-Date
$fil.Name=[System.IO.Path]::Combine("C:\test", "TEST" +".bak")
$bck.Devices.Add($fil)
$bck.Database="DBName"
$bck.SqlBackup($srv)
write-host "Backup of MyDatabase done"

** For checking("C:\test", "mydatabasebackup-$($today.toString('yyyy-MM-dd HH-mm-ss ')).bak")


Transaction log backup

[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.Smo") out-null[System.IO.Directory]::CreateDirectory("C:\test") out-null
$srv=New-Object "Microsoft.SqlServer.Management.Smo.Server" "ServerName"
$bck=new-object "Microsoft.SqlServer.Management.Smo.Backup"
$bck.Action = 'Log'
$fil=new-object "Microsoft.SqlServer.Management.Smo.BackupDeviceItem"
$fil.DeviceType='File'
$today = Get-Date
$fil.Name=[System.IO.Path]::Combine("C:\test", "TEST" +".trn")
$bck.Devices.Add($fil)
$bck.Database="DBName"
$bck.SqlBackup($srv)
write-host "Log Backup of MyDatabase done"

Differential backup

[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.Smo") out-null[System.IO.Directory]::CreateDirectory("C:\test") out-null
$srv=New-Object "Microsoft.SqlServer.Management.Smo.Server" "ServerName"
$bck=new-object "Microsoft.SqlServer.Management.Smo.Backup"
$bck.Incremental = 1
$fil=new-object "Microsoft.SqlServer.Management.Smo.BackupDeviceItem"
$fil.DeviceType='File'
$today = Get-Date
$fil.Name=[System.IO.Path]::Combine("C:\test", "TEST" +".diff")
$bck.Devices.Add($fil)
$bck.Database="DBName"
$bck.SqlBackup($srv)
write-host "Differential Backup of MyDatabase done"

Monday, April 13, 2009

How to Set Alternate Access Mapping (AAM) On MOSS2007 Server

To Perform AAM on MOSS 2007 we can do it 3 steps after creating web site.
1. Central Administration:
a) open Centrl Administration In Moss2007 Server.
b) Go to Operations, Global Cofiguration and Click on Alternate Access mapping.
c) Then Click On Add internal URL, In Alternate Access mapping Collection Select the Web Application, Which We need to do Mapping and In Add Internal URL tab should like ex.(http://sample.test.com) and Zone Column Select Intranet.
Note: we have created Interanl URL http://sample.test.com. In this sample is the Alias(CNAME) name which we need to mention in DNS server.

2. DNS Server:
a) Open DNS Management console.
b) Expand Forward Lookup Zones.
c) Select appropriate Zone, Right click on that and select New Alias ( CNAME ).
d) New Resources Record type Alias name Sample, which we created in Internal URL. It will show FQDN.
e) Click browse and point the FQDN target host (Sharepoint server)

3. IIS on Web Server:
a) Open IIS Manager In the Webserver.
b) Expand Web Sites and right click and select Properties on the site which we done Mapping.
c) Then Click Advanced and Click Edit.
d) Then, In Ip Address column select the IP Address of the Server by default it will be (All Unassigned). TCP/Port Column Type the Port No. 80 Host header Value Column Type FQDN Created In DNS Server.
e) Then Click Ok and Reset the IIS once.