+ All Categories
Home > Documents > INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

Date post: 24-Dec-2015
Category:
Upload: dinah-holmes
View: 219 times
Download: 0 times
Share this document with a friend
Popular Tags:
50
INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu
Transcript
Page 1: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

INTRANET DESIGNBy Michael Doyle

SharePoint Friday Honolulu

Page 3: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

WHAT IS AN INTRANET?

Define the business solution without consideration of the technology

Remove the word SharePoint from your discussions

Become technology agnostic

Page 4: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

EXAMPLE

Page 5: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

EXAMPLE 2

Page 6: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

WHAT PLATFORM DO I USE?

Office 365 SharePoint Enterprise Edition SharePoint Standard Edition SharePoint Foundation

Page 7: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

OFFICE 365 CONCERNS

No control over search crawls No server side code No access to database Additionally branding concerns Issues of slowness Have to go to Microsoft with any server

issues

Page 8: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

OFFICE 365 BENEFITS

A whole lot cheaper Can bundle with other Office 365

products No server maintenance Much lower skill requirements

Page 9: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

CHOOSING A LAYOUT PARADIGM

To be or not to be! Fixed Width

Fixed width allows much greater control on how the content is displayed but is much harder to design initially.

Page 11: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

MOCKUPS

• Mockups save time and money in the long run

• Enable end users and management to get a feel for the end product

• Start with at least three

• Take input from lots of people but leave decision making on final to just a few

11

Page 12: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

BROWSERS

Firefox

Safari

IE8IE9+

OPER

ALots of issues with IE 11! But most have been resolved with updated

Page 13: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

DEVICES

PCs and Macs

Smart Phones

Tablets

Page 14: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

BRANDING A little goes a long way The last twenty percent will take

much, much longer than you expect

Try themes (2010) or Design Manager (2013) to get you started

Do not underestimate the power of pretty!

Page 15: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

DESIGN MANGER

Page 16: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

INTRANET ON THE CHEAP

Using the Standard version (or even the free version)

Going with the Team site template Cleaning up the landing page Client Side Scripting

Page 17: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

USING CSS TO KEEP YOUR SITE CLEAN

Makes your site less cluttered Saves time and money on help desk

calls Shortens the learning curve Allows phased rollout of features to

end user

Page 18: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

GETTING RID OF CHECK BOXES

Use some CSS to get rid of the check boxes via a content editor web part or the master page.

<style>.s4-itm-cbx{DISPLAY: none}</style>

Or on individual lists by editing the web part and unchecking “allow individual item checkboxes” in the tabular view section.

Page 19: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

REMOVE HEADERS

<style>.ms-viewheadertr {DISPLAY: none}</style>

Page 20: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

REMOVE RECYCLE BIN ANDVIEW ALL SITE CONTENT

<style>.s4-specialNavLinkList {  display:none;}</style>

Page 21: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

TURNING OFF SOCIAL FEATURES IN SHAREPOINT 2013

Social Features Turned Off

Social Features Turned On

Farm level Social Feature

Page 22: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

USING CSS TO HIDE SOCIAL FEATURES

<style>.ms-core-suiteLink{display:none !important;}.ms-siteactions-root{display:none !important;}</style>

Page 23: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

HIDE THE CHROME IN O365

<style>

.ms-core-navigation { DISPLAY: none }

#contentBox { margin-left: 0px }

</style>

<script>

_spBodyOnLoadFunctionNames.push("HideBrandingsuite");

function HideBrandingsuite()

{

document.getElementById('suiteBarLeft').style.visibility = 'hidden';

document.getElementById('suiteBarRight').style.visibility = 'hidden';

document.getElementById('s4-ribbonrow').style.visibility = 'hidden';}

</script>

Page 24: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

CHROME REMOVED EXAMPLE

Page 25: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

TURNING OFF SHAREPOINT DESIGNER

• At the Site Collection Level (can be done at the web application level too)

• Must be site collection admin to change settings

Page 26: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

EMAIL LINK IN SHAREPOINT 2013

Format as a number.

Page 27: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

FEATURE STORIES

Keep it Fresh. Keep it Interesting.

Page 28: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

PERSONALIZE CONTENT

• Links to commonly used items such as Timesheets and Paychecks

• Personalized information such as vacation available

• Picture links to person’s My Site

Page 29: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

• ONE click is still the goal for important items.

• Popular items (my sites, search, tagging) need to be easy to get to and in familiar places

• Easy access to the home page from anywhere onthe intranet

Navigation

Page 30: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

CONSISTENT NAVIGATION ISSUES

Each Site Collection has its own navigation Can use custom providers such as XML Files,

Web Services, or Databases SharePoint interface to manage navigation is

easy to use but limited (per site collection and two levels)

Writing your own is pretty straight forward with lots of examples online

Page 31: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

MEGA MENUS

Page 32: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

SECURITY GUIDELINES

Security Groups in SharePoint Groups Minimize the number of groups Security is a means to an end. Don’t

over do it. Third party products can definitely

help to manage security.

Page 33: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

SEARCH INTEGRATION

Except for rare cases, search should be part of every page.

All encompassing search at top, specific search in main content area.

Extend search to other parts of network and use facets to refine

Page 34: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

SEARCH BOX EXAMPLES

Page 35: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

BEST BETS/PROMOTED RESULTS

Use promoted Results in SharePoint 2013

Page 36: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

OFFICE WEB APPS

• Provides thumbnails

• On SP2010 and SP2013

• Allows multiple users to edit file at the same time

• Office Web Apps for SharePoint 2013 requires a separate server

Page 37: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

MONITOR YOUR SEARCH

- Monitor crawl times- Tag, tag, tag- Delete unwanted content (weed it

out)- Adjust results based on what people

are searching on. (Search Service Application: Search Administration -> Web Analytics Reports

Page 38: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

MANAGED METADATA

Open vs Closed Some is better than none Pick a central hub location and

consume the metadata from other locations

Managing metadata requires resources

Greatly increases find ability

Page 39: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

MANAGING METADATA

Limited number of items that can be seen

Hard to navigate Use CSV files to

maintain large amounts of data

Same in 2010 as in 2013

Page 40: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

INFOPATH FORMS

Best bang for the buck of any service InfoPath Web forms saves time and

money Client not required Worth the cost of the Enterprise edition Don’t program if you don’t have to

InfoPath is supported until 2023

Page 41: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

MY SITE CUSTOMIZATION

Lots of work Politically charged Powerful momentum from social

networking Less is definitely more 2010, 2013 and even O365 are all vastly

different in their look and feel

Page 42: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

MY SITE EXAMPLE

Page 43: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

PROFILE REPLICATION

US

EuropeAsia

Page 44: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

REPLICATION INFORMATION

Part of SharePoint Administration kit Overview at http://

technet.microsoft.com/en-us/library/cc663011.aspx

PowerShell interface Remember the DoSocialReplication

option Based on audiences and trusted My

Sites

Page 45: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

CONSUMING THE USER PROFILE SERVICE

Can be a little tricky to set up Issues with creating My Site

Hosts Connect to Metadata service

as well Not recommended in

SharePoint 2013 due to bandwidth concerns

Page 46: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

CONTENT DATABASES

Size should be guided by disaster recovery guidelines

General rule of thumb is still below 200 gig New technology can make content

databases in the terabyte size BLOB storage. Really make sure you can

recover these files.

Page 47: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

LANGUAGE PACKS

For SharePoint 2010 Download at

http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=3411

Service Pack 1 http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=26629

For SharePoint 2013 Download at http://www.microsoft.com/en-

us/download/details.aspx?id=35492

Page 48: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

SIMPLIFIED CHINESE EXAMPLE

Page 49: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

Questions

49

Page 50: INTRANET DESIGN By Michael Doyle SharePoint Friday Honolulu.

WITH SPECIAL THANKS TO OUR SPONSORS:

Prize sponsors include:

CBT Nuggets

Mail2Share

VisualSP

Mahalo!


Recommended