Monday, August 8, 2011

Migrating legacy html to SharePoint

  1. A full inventory of html files must be taken and document information such as taxonomy, metadata, etc.
  2. Map the content from source to destination (file system to sites, sub sites, lists)
  3. Anlyze the html content and determine which html parts of the html page to be converted to SharePoint aspx pages
    • Start tag of content
    • End tag of content
  4. Create aspx pages in SharePoint pages library using the following method

Deploying custom solutions such as timer jobs to production

  1.  Copy the solution files over to the production environment
  2. Run powershell as an Administrator
  3. Run the following commands
    • Install-SPSolution –Identity Custom_TimerJob.wsp -local -GACDeployment
    • enable-spfeature -identity "feature id"
  4. Restart the Windows Service “SharePoint Timer Service”