Wednesday, March 28, 2012

QuantumCube Education Solution

QuantumCube

The CIL’s QuantumCube Education Solution is based on the delivery of application services for Education Information Management via the Fujitsu’s Cloud Services IT platforms available worldwide.

Using Fujitsu’s Cloud Services, CIL provides applications designed to deliver Content Management, Business Intelligence and Support Services functionality to Education, based on the QuantumCube Education Portal application platform.

The QuantumCube Education Consulting Services deliver to Education Managers the knowledge and best practices on Education Strategy Definition and Implementation.

We work with experts and Schools Managers in Education Business Intelligence to define and Implement Key Performance Indicators, Self-Assessment Projects and Quality Improvement Projects, taking full advantage of the QuantumCube Education solutions.
See more in http://www.q-cube.net

Wednesday, March 14, 2012

Linq command Timeout

Quando temos uma excepção do tipo System.Data.SqlClient.SqlException: Timeout expired Exception podemos aumentar o tempo de execução da stored procedure. No linq devemos criar uma nova class (não esquecer do partial) e implementar o seguinte código( mudar o nome da Class :) :) )
partial class DataClassesDataContext
{
partial void OnCreated()
{
this.CommandTimeout = Settings.Default.CommandTimeout;
}
}

Monday, March 12, 2012

Powershell script to publish content on SharePoint sites

A few day i found this great PowerShell scrito to publish content on sharepoint site :) with recursive option.. very nice
Link: http://publishspcontent.codeplex.com/
Credits:

Author : Yogesh M Joshi
Blog : http://blogs.msdn.com/b/yojoshi

Flush Blob Cache

Script to flush the blob cache


$webApp = Get-SPWebApplication "http://youtsite.com"

[Microsoft.SharePoint.Publishing.PublishingCache]::FlushBlobCache($webApp)

Write-Host "Flushed the BLOB cache for :" $webApp

Deleting orphaned service (web) application pools -Sharepoint 2010

A few days ago i have created and deleted Sharepoint service applications but i see the sharepoint keeps some application pools ( orphaned application pools) .
So for list the service application pool:

Get-SPServiceApplicationPool | select Id, Name

To remove one:
Remove-SPServiceApplicationPool -Identity "Orphaned SharePoint Service Application Pool Name"

To remove all where name like 'Something':

Get-SPServiceApplicationPool | where {$_.Name -match "Something" } | Remove-SPServiceApplicationPool




Change MasterPage poweshell all webs

This powershell code change the master page for all SPWeb's

$site = Get-SPSite "http://yoursite.com"
$site | Get-SPWeb -limit all | ForEach-Object { $_.MasterUrl = $_.ServerRelativeUrl + "/_catalogs/masterpage/v4.master";$_.Update() }
$site.Dispose()