Posts

Fixing Presence Control for Masterpage with Doctypes

English W3C standards states that “When authoring document is HTML or XHTML, it is important to Add a Doctype declaration.” (refer. http://www.w3.org/QA/2002/04/valid-dtd-list.html). The Doctype declaration tells the browser to render webpage in standard-compliant mode, properly treat the HTML, XHTML, CSS and DOM as expected by designer. Unfortunatelly, if we apply it to SharePoint masterpage we would sometimes find undesired effect; for example the jumping-presence control. Presence-control is a standard SharePoint functionality to provide presence information of the users.

Reducing OS Disk

English

SharePoint 2010: Powershell for deployment in large farm

param ($config) <################################################### # PS # ####################################################> ## Global params $NLB_CLASS=“MicrosoftNLB_Node” $NLB_NS=“root\MicrosoftNLB” $NLB_FileConfig = “c:\nlb.xml” # For testing purpose only ## ## Display Readable Status Node ## Params : (int) returnValue ## function DisplayNodeStatus($returnValue) { switch($returnValue) { 1000 {“ Success.”;break} 1001 {“ Cluster mode is already stopped/started, or traffic handling is already made.”;break} 1002 {“ Cluster mode stop or start operation interrupted connection draining process.”;break} 1003 {“ Cluster mode can not be started due to configuration problems on the target hosts.