Simple scripts that you can automate with the Task Scheduler to backup/cleanup your Sharepoint 2010 farm with email notifications. Backup Script try { $today = (Get-Date -Format dd-MM-yyyy) #Location of the Backup Folder [IO.Directory]::CreateDirectory(“E:BackupDailyFarmBackUp$today”) # This will actually initiate the SPFarm backup. Backup-SPFarm -Directory E:BackupFullFarmBackup$today -BackupMethod full # Backup-SPFarm -Directory […]
Category: Sharepoint
Sharepoint 2010 VM Clone Wars
Sharepoint 2010 Personalization Site and Global Navigation Audience Targeting
For whatever reason; the Global Navigation in a Personalization Site template does not support Dynamic FlyOut menus OR Audience Targeting. I had added several custom links in my top navigation bar and audience targeted them according to specific user roles. All users, however, could see every link regardless of the […]
Populating Notes field from Cascading Dropdown Selections
Dynamically Resize Sharepoint 2010 Report Viewer Web Part
Selection is not a valid PerformancePoint content HotFix
There is now a hotfix which addresses my previous post regarding PerformancePoint not setting the location on the web parts without user intervention in manually typing the correct location. The problem was a regression in the June 2011 CU that caused the asset picker to stop functioning properly http://support.microsoft.com/kb/2597936
Sharepoint 2010 Document Library Tree View Web Part
Point to Point Bing Map from Sharepoint List
Interactive Google Map Web Part for Sharepoint 2010
I needed a way to display an interactive Google Map against a Sharepoint list over SSL. I did a slight modification to Mazin’s great Google Map Web Part on Codeplex. In MapWebPart.cs – Look for ResolveAddress function and add the following line at the top of function. ServicePointManager.ServerCertificateValidationCallback = delegate […]