{"id":561,"date":"2010-01-07T16:46:34","date_gmt":"2010-01-07T15:46:34","guid":{"rendered":"http:\/\/www.tsls.co.uk\/?p=561"},"modified":"2026-03-11T10:55:26","modified_gmt":"2026-03-11T10:55:26","slug":"installing-office-2010-web-applications","status":"publish","type":"post","link":"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/","title":{"rendered":"Installing Office 2010 Web Applications"},"content":{"rendered":"<p>Before installing Make sure SharePoint 2010 Foundation is installed.<\/p>\n<p><strong><\/strong><strong>Installation of Office 2010 Web Apps <\/strong><\/p>\n<ol>\n<li>Download Beta from <a href=\"http:\/\/www.microsoft.com\/downloads\/details.aspx?FamilyID=27d81b1c-18ae-4983-8e1c-224bb747eb99&amp;displaylang=en\">http:\/\/www.microsoft.com\/downloads\/details.aspx?FamilyID=27d81b1c-18ae-4983-8e1c-224bb747eb99&amp;displaylang=en<\/a><\/li>\n<li>Run <strong>WCsever_en-us.exe<\/strong>.<\/li>\n<li><strong>Enter your Product Key<\/strong> page, enter your product key, and then click <strong>Continue<\/strong>.<\/li>\n<li>On the <strong>Choose a file location<\/strong> page, click <strong>Install Now<\/strong> to install to the default location. To install to a different location, specify the location that you want to install to, and then click <strong>Install Now<\/strong>.<\/li>\n<li>When Setup finishes, a dialog box prompts you to complete the configuration of your server. Be sure that the <strong>Run the SharePoint Products and Technologies Configuration Wizard now<\/strong> check box is selected.<\/li>\n<\/ol>\n<p>Click <strong>Close<\/strong> to start the configuration wizard. (if it doesn\u2019t run execute PSConfig.exe to register services)<\/p>\n<ol>\n<li>On the <strong>Welcome to SharePoint Products<\/strong> page, click <strong>Next<\/strong>.<\/li>\n<li>In the dialog box that notifies you that some services might need to be restarted or reset during configuration, click <strong>Yes<\/strong>.<\/li>\n<li>On the <strong>Modify server farm settings<\/strong> page, select <strong>Do not disconnect from this server farm<\/strong>, and then click <strong>Next<\/strong>.<\/li>\n<li>On the <strong>Configuration Successful<\/strong> page, click <strong>Finish<\/strong>. Your new SharePoint site opens.<\/li>\n<\/ol>\n<ol>\n<li>Click <strong>Start<\/strong>, point to <strong>All Programs<\/strong>, <strong>Microsoft SharePoint 2010 Products<\/strong>, and then <strong>SharePoint 2010 Central Administration<\/strong>.<\/li>\n<li>On the <strong>SharePoint Central Administration<\/strong> home page, click <strong>Configuration Wizards<\/strong>.<\/li>\n<li>On the <strong>Configuration Wizards<\/strong> page, click <strong>Launch the Farm Configuration Wizard<\/strong>.<\/li>\n<li>In the <strong>Farm Configuration Wizard<\/strong> welcome page, choose <strong>Walk me through the settings using this wizard<\/strong>, and then press <strong>Next<\/strong>.<\/li>\n<li>On the <strong>Configure your SharePoint Farm<\/strong> page, in <strong>Service Account<\/strong>, type a name for the Farm admin account.<\/li>\n<li>In <strong>Services<\/strong>, select the Office Web Apps services that you want to activate, and then click <strong>Next<\/strong>.<\/li>\n<li>Create an optional new top-level site. On the <strong>Create Site Collection<\/strong> page, follow the wizard steps to create a new top-level site.<\/li>\n<li>On the <strong>Configure your SharePoint Farm<\/strong> page, click <strong>Finish<\/strong>. Your Office Web Apps configuration is complete.<\/li>\n<\/ol>\n<p>Repeat for all SharePoint servers in the farm<\/p>\n<p>You have to enable the feature on each site collection (either in the UI or Powershell.<\/p>\n<p>When entering a document library you can now select Edit in Browser (not edit in word). <a href=\"http:\/\/www.tsls.co.uk\/wp-content\/uploads\/2010\/01\/OfficeWebApp1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-medium wp-image-562 colorbox-561\" title=\"OfficeWebApp1\" src=\"http:\/\/www.tsls.co.uk\/wp-content\/uploads\/2010\/01\/OfficeWebApp1-300x155.png\" alt=\"\" width=\"300\" height=\"155\" \/><\/a><\/p>\n<p><a href=\"http:\/\/www.tsls.co.uk\/wp-content\/uploads\/2010\/01\/OfficeWebApp2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-medium wp-image-563 colorbox-561\" title=\"OfficeWebApp2\" src=\"http:\/\/www.tsls.co.uk\/wp-content\/uploads\/2010\/01\/OfficeWebApp2-300x181.png\" alt=\"\" width=\"300\" height=\"181\" \/><\/a><\/p>\n<p>More information on activating and installing Office Web Apps (from <a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/ee695758(office.14).aspx\">http:\/\/technet.microsoft.com\/en-us\/library\/ee695758(office.14).aspx<\/a>:<\/p>\n<p><strong>Activate the Office Web Apps feature on all site collections<\/strong><\/p>\n<p>Office Web Apps require that the Office Web Apps feature be activated on every site collection for which the Web apps will be available. Activate the Office Web Apps feature for all site collections by running the following script:<\/p>\n<p><code><br \/>\n$webAppsFeatureId = $(Get-SPFeature -limit all | where {$_.displayname<br \/>\n-eq \"OfficeWebApps\"}).Id<br \/>\nGet-SPSite \u2013limit ALL |foreach{<br \/>\nenable-SPFeature $webAppsFeatureId \u2013url $_.URL }<br \/>\n<\/code><\/p>\n<h1><strong>Additional configuration (optional)<\/strong><\/h1>\n<p>After activating Office Web Apps, the Default click feature in SharePoint Server will point to the Office Web Apps instead of the Office client application. You can override this functionality in SharePoint Server at the site collection and document library levels. The following Windows PowerShell scripts provide examples on how to change the default click behavior for each level:<\/p>\n<p><strong>Site collection<\/strong> &#8211; This example disables the Default click setting at all site collections:<\/p>\n<p><code><br \/>\n$webAppsFeatureId = $(Get-SPFeature -limit all | where {$_.displayname<br \/>\n-eq \"OpenInClient\"}).Id<br \/>\nGet-SPSite \u2013limit ALL |foreach{<br \/>\nEnable-SPFeature $webAppsFeatureId \u2013url $_.URL }<br \/>\n<\/code><\/p>\n<p><strong>Document library<\/strong> &#8211; This example disables the Default click setting at all document libraries in site1:<\/p>\n<p><code><br \/>\nGet-SPWeb \u2013site http:\/\/foo\/sites\/site1 |% {}{$_.Lists}{$_.Update()} |% {$_.DefaultItemOpen = $false}<br \/>\n<\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Before installing Make sure SharePoint 2010 Foundation is installed. Installation of Office 2010 Web Apps Download Beta from http:\/\/www.microsoft.com\/downloads\/details.aspx?FamilyID=27d81b1c-18ae-4983-8e1c-224bb747eb99&amp;displaylang=en Run WCsever_en-us.exe. Enter your Product Key page, enter your product key, and then click Continue. On<\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_newsletter_tier_id":0,"footnotes":"","jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[21],"tags":[1401,1461,1831,1861],"class_list":["post-561","post","type-post","status-publish","format-standard","hentry","category-microsoft","tag-office","tag-office-web-apps","tag-sharepoint","tag-sharepoint-2010"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>Installing Office 2010 Web Applications - TSLS - Luke Smith<\/title>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_GB\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Installing Office 2010 Web Applications - TSLS - Luke Smith\" \/>\r\n<meta property=\"og:description\" content=\"Before installing Make sure SharePoint 2010 Foundation is installed. Installation of Office 2010 Web Apps Download Beta from http:\/\/www.microsoft.com\/downloads\/details.aspx?FamilyID=27d81b1c-18ae-4983-8e1c-224bb747eb99&amp;displaylang=en Run WCsever_en-us.exe. Enter your Product Key page, enter your product key, and then click Continue. On\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/\" \/>\r\n<meta property=\"og:site_name\" content=\"TSLS - Luke Smith\" \/>\r\n<meta property=\"article:published_time\" content=\"2010-01-07T15:46:34+00:00\" \/>\r\n<meta property=\"article:modified_time\" content=\"2026-03-11T10:55:26+00:00\" \/>\r\n<meta property=\"og:image\" content=\"http:\/\/www.tsls.co.uk\/wp-content\/uploads\/2010\/01\/OfficeWebApp1-300x155.png\" \/>\r\n<meta name=\"author\" content=\"Luke Smith\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Luke Smith\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/\",\"url\":\"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/\",\"name\":\"Installing Office 2010 Web Applications - TSLS - Luke Smith\",\"isPartOf\":{\"@id\":\"https:\/\/www.tsls.co.uk\/#website\"},\"datePublished\":\"2010-01-07T15:46:34+00:00\",\"dateModified\":\"2026-03-11T10:55:26+00:00\",\"author\":{\"@id\":\"https:\/\/www.tsls.co.uk\/#\/schema\/person\/e4d7dac4fe1b3f8df31f3857bb3ebda7\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.tsls.co.uk\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing Office 2010 Web Applications\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.tsls.co.uk\/#website\",\"url\":\"https:\/\/www.tsls.co.uk\/\",\"name\":\"TSLS - Luke Smith\",\"description\":\"- Knowledge - Thoughts - Microsoft -\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.tsls.co.uk\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.tsls.co.uk\/#\/schema\/person\/e4d7dac4fe1b3f8df31f3857bb3ebda7\",\"name\":\"Luke Smith\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.tsls.co.uk\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/29abc50f07a4ebe68cb4f31981884f89b2157d7e4ed63b09631d40c0717faa94?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/29abc50f07a4ebe68cb4f31981884f89b2157d7e4ed63b09631d40c0717faa94?s=96&d=mm&r=g\",\"caption\":\"Luke Smith\"},\"description\":\"I\u2019ve been working with Microsoft Technologies for over 20 years, my main focus now being Microsoft Online Services. I manage the Cloud Services at ElysianIT Limited and as a P-SELLER at Microsoft. I have worked with many organisations from SMC to Enterprise. I\u2019ve been working with Microsoft Technologies since DOS 5.0, to date I have been working on Microsoft\u2019s latest cloud technology Windows Azure, Windows 10 Office 365 and Microsoft SharePoint\",\"sameAs\":[\"http:\/\/www.tsls.co.uk\"],\"url\":\"https:\/\/www.tsls.co.uk\/index.php\/author\/luke\/\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing Office 2010 Web Applications - TSLS - Luke Smith","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/","og_locale":"en_GB","og_type":"article","og_title":"Installing Office 2010 Web Applications - TSLS - Luke Smith","og_description":"Before installing Make sure SharePoint 2010 Foundation is installed. Installation of Office 2010 Web Apps Download Beta from http:\/\/www.microsoft.com\/downloads\/details.aspx?FamilyID=27d81b1c-18ae-4983-8e1c-224bb747eb99&amp;displaylang=en Run WCsever_en-us.exe. Enter your Product Key page, enter your product key, and then click Continue. On","og_url":"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/","og_site_name":"TSLS - Luke Smith","article_published_time":"2010-01-07T15:46:34+00:00","article_modified_time":"2026-03-11T10:55:26+00:00","og_image":[{"url":"http:\/\/www.tsls.co.uk\/wp-content\/uploads\/2010\/01\/OfficeWebApp1-300x155.png"}],"author":"Luke Smith","twitter_misc":{"Written by":"Luke Smith","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/","url":"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/","name":"Installing Office 2010 Web Applications - TSLS - Luke Smith","isPartOf":{"@id":"https:\/\/www.tsls.co.uk\/#website"},"datePublished":"2010-01-07T15:46:34+00:00","dateModified":"2026-03-11T10:55:26+00:00","author":{"@id":"https:\/\/www.tsls.co.uk\/#\/schema\/person\/e4d7dac4fe1b3f8df31f3857bb3ebda7"},"breadcrumb":{"@id":"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.tsls.co.uk\/index.php\/2010\/01\/07\/installing-office-2010-web-applications\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.tsls.co.uk\/"},{"@type":"ListItem","position":2,"name":"Installing Office 2010 Web Applications"}]},{"@type":"WebSite","@id":"https:\/\/www.tsls.co.uk\/#website","url":"https:\/\/www.tsls.co.uk\/","name":"TSLS - Luke Smith","description":"- Knowledge - Thoughts - Microsoft -","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.tsls.co.uk\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.tsls.co.uk\/#\/schema\/person\/e4d7dac4fe1b3f8df31f3857bb3ebda7","name":"Luke Smith","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.tsls.co.uk\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/29abc50f07a4ebe68cb4f31981884f89b2157d7e4ed63b09631d40c0717faa94?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/29abc50f07a4ebe68cb4f31981884f89b2157d7e4ed63b09631d40c0717faa94?s=96&d=mm&r=g","caption":"Luke Smith"},"description":"I\u2019ve been working with Microsoft Technologies for over 20 years, my main focus now being Microsoft Online Services. I manage the Cloud Services at ElysianIT Limited and as a P-SELLER at Microsoft. I have worked with many organisations from SMC to Enterprise. I\u2019ve been working with Microsoft Technologies since DOS 5.0, to date I have been working on Microsoft\u2019s latest cloud technology Windows Azure, Windows 10 Office 365 and Microsoft SharePoint","sameAs":["http:\/\/www.tsls.co.uk"],"url":"https:\/\/www.tsls.co.uk\/index.php\/author\/luke\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p2gf1k-93","_links":{"self":[{"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/561","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/comments?post=561"}],"version-history":[{"count":1,"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/561\/revisions"}],"predecessor-version":[{"id":6458,"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/posts\/561\/revisions\/6458"}],"wp:attachment":[{"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/media?parent=561"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/categories?post=561"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tsls.co.uk\/index.php\/wp-json\/wp\/v2\/tags?post=561"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}