Don’t worry, Be happy Bobby McFerrin It is only through labor and painful effort, by grim energy and resolute courage, that we move on to better things. Theodore

Download Report

Transcript Don’t worry, Be happy Bobby McFerrin It is only through labor and painful effort, by grim energy and resolute courage, that we move on to better things. Theodore

Don’t worry,
Be happy
Bobby McFerrin
It is only through labor and
painful effort, by grim
energy and resolute
courage, that we move on
to better things.
Theodore Roosevelt



































Sample Output
Web Apps
SharePoint - my.sharepoint2010.com80
SharePoint - my.sharepoint2010.com80
SharePoint - Team Sites
SharePoint - Team Sites
SharePoint - Team Sites
SharePoint - Team Sites
Site Collection
http://my.sharepoint2010.com
http://my.sharepoint2010.com/personal/administrator
http://team.sp2010.com
http://team.sp2010.com/sites/CEO
http://team.sp2010.com/sites/IP
http://team.sp2010.com/sites/MigrationTest
http://sp2010:4444
http://sp2010:4444/sites/Help
Owner
Owner Email
Size (MB)
Last Modified
11/14/13
sp\Administrator [email protected]
2.70
11/14/13
2/17/14
sp\Administrator [email protected]
3.19
2/17/14
sp\Administrator [email protected]
3.35
11/14/13
Migration Admin
4.46
2/17/14
SP\administrator
2.35
3/4/14
SP\administrator
14.78
12/17/12
















Branding
Solutions
User Interface
Components
Provisioning
Solutions
Other Built-in
Functionalities
Content Types and
Site Columns
Integration/
Maintenance
Solutions







public IEnumerable<string> CreatePersonalSiteEnqueueBulk(
[Microsoft.SharePoint.Client.ClientCallableConstraint(Type
=
Microsoft.SharePoint.Client.ClientCallableConstraintType.Ma
xLength, Value = 200)]
string[] emailIDs
)








Content
Cleanup
Migration
Tools
Information
Architecture
What
How
Where
• Exclusion criteria
• Inclusion criteria
• Everything in
between
Small-midsize content
• File Explorer
• Manual upload
Large-scale content
• Staging environment
• Third-party tools
• Site collections
• Sites
• Content types
Self-service migration
•
Manual
Tools-based migration
•
Manual using tools
Complex migration
•
•
Includes custom
code
Involve experts

•
•
•
•
•
•
•




















http://xml2sql.codeplex.com/
http://officeams.codeplex.com
Sponsored by
 https://xml2sql.codeplex.com/


[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") > $null
$farm = [Microsoft.SharePoint.Administration.SPFarm]::Local
$file = "scLast.csv"
$websvcs = $farm.Services | where -FilterScript {$_.GetType() -eq
[Microsoft.SharePoint.Administration.SPWebService]}
$webapps = @()
"Web Apps, Site Collection, Owner, Owner Email, Size (MB), Last Modified" > $file
foreach ($websvc in $websvcs) {
foreach ($webapp in $websvc.WebApplications) {
foreach ($site in $webapp.Sites) {
$u = $site.usage
$s = $u.Storage / 1048576
$webapp.Name + "," + $site.URL + "," + $site.Owner.Name + "," +
$site.Owner.Email + "," + $s + "," + $site.LastContentModifiedDate >> scLast.csv
}
}
}