A customer has a farm with multiple web apps, one of which is accessible anonymously. Office Web Apps is installed on the farm. On the anonymous site, Word documents open in the browser viewer, but the 'Open in Word' button is disabled. In addition, there is no Send to -> Download option on the library items. The customer would like the default behavior on the anonymous site to be similar to any other website: Word documents are downloaded where the user may open them locally. Is it possible to disable Office Web Apps for this web application or site collection only?

Note we have disabled the OWA site collection feature, and experimented with variations of that and 'OpenInClient' but Word documents still open in OWA for anonymous users, regardless of any setting on those two.

link|improve this question
I don't know the answer, but maybe you should disable OWA until this is sorted due to licences. Afaik every user that uses OWA needs to have an Office licence, if not MS might not be to happy about this setup :) – Anders Aune Feb 17 at 20:10
By "disable the OWA site collection feature" do you mean the Open Documents in Client Applications by Default feature? – David Lozzi Feb 17 at 20:57
Had the same problem, even after deactivating the OWA feature and enabling the openinclient feature, OWA was still the default. PS, licensing is not really a problem, anyone who owns an Office license gets an OWA license with it. So if you have Office on your own computer, technically you are allowed to use OWA too :-D – Colin Feb 18 at 2:44
Yeah, everyone that has Office, but how can you guarantee this when its anonymous access? Probably it wont be an issue, companies usually sorts it out before MS comes on a visit for counting. – Anders Aune Feb 19 at 1:22
Licensing is taken care of. @David By 'OWA site collection feature', I mean 'Office Web Apps' 'OpenInClient' refers to 'Open Documents in Client Apps By Default'. The issue is that, regardless of any combination of enabling/disabling those features, Word docs still appear in OWA on an anonymous site. – Daniel Feb 20 at 18:18
feedback

1 Answer

I did test this the other day, I had to run a PowerShell-script to get it deactivated right.

$webAppsFeatureId = $(Get-SPFeature -limit all | where {$_.displayname -eq "OfficeWebApps"}).Id 
$singleSiteCollection = Get-SPSite -Identity http://<site_name> 
Disable-SPFeature $webAppsFeatureId -Url $singleSiteCollection.URL

It did throw an error when I first tried to deactivate from the GUI. You could try this, not sure if it will work in your case.

link|improve this answer
This will deactivate the feature, but in some cases, Office Web Apps will still attempt to display the document even with the feature disabled. Specifically if SP is unable to use client integration- as in anonymous sites and non IE browsers. – Daniel Mar 20 at 17:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.