save sharepoint site without inheriting permissions
Hi,
1) Is there any way to export/save particular sharepoint site without inheriting permissions?
2) Is there any way to save all the lists/libraries as template at one go?
Thanks,
NileshThanks, Nilesh
July 30th, 2012 10:53am
This should help
http://techviews.nagadakshinamurthy.org/2007/07/moss-2007-exporting-and-importing-sub.html
http://technet.microsoft.com/en-us/library/cc262759(v=office.12).aspxAshish Ranjan (Please click "Marked As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you)
Free Windows Admin Tool Kit Click here and download it now
July 30th, 2012 11:54am
I have created sharepoint site with blank template and exported all the lists with the help of powershell commands.Thanks, Nilesh
August 3rd, 2012 10:15am
I have created sharepoint site with blank template and exported all the lists with the help of powershell commands.Thanks, Nilesh
Free Windows Admin Tool Kit Click here and download it now
August 3rd, 2012 10:15am
Hi Nilesh
Have you got the script to hand to share? I can mark the post the answer if so?
Thanks,
StevenSteven Andrews | SharePoint Professional | http://www.twitter.com/backpackerd00d | https://baron72.wordpress.com/
August 3rd, 2012 10:29am
Hi Nilesh
Have you got the script to hand to share? I can mark the post the answer if so?
Thanks,
StevenSteven Andrews | SharePoint Professional | http://www.twitter.com/backpackerd00d | https://baron72.wordpress.com/
Free Windows Admin Tool Kit Click here and download it now
August 3rd, 2012 10:29am
Sure..
$web = Get-SPWeb MYURL
$path = d:\admin\export\
foreach($list in $web.lists)
{
Exporting +
$list.RootFolder.URL
export-spweb $web.URL -ItemUrl (/ +
$list.RootFolder.URL) -IncludeUserSecurity -IncludeVersions All -path ($path +
$list + .cmp) -nologfile
}Thanks, Nilesh
August 3rd, 2012 10:36am
Sure..
$web = Get-SPWeb MYURL
$path = d:\admin\export\
foreach($list in $web.lists)
{
Exporting +
$list.RootFolder.URL
export-spweb $web.URL -ItemUrl (/ +
$list.RootFolder.URL) -IncludeUserSecurity -IncludeVersions All -path ($path +
$list + .cmp) -nologfile
}Thanks, Nilesh
Free Windows Admin Tool Kit Click here and download it now
August 3rd, 2012 10:38am
Sure..
$web = Get-SPWeb MYURL
$path = d:\admin\export\
foreach($list in $web.lists)
{
Exporting +
$list.RootFolder.URL
export-spweb $web.URL -ItemUrl (/ +
$list.RootFolder.URL) -IncludeUserSecurity -IncludeVersions All -path ($path +
$list + .cmp) -nologfile
}Thanks, Nilesh
August 3rd, 2012 10:38am