Me

No User

You must log in to access your account.

SharePoint 2010 Help and How To

Group Avatar

Group avatar

Admins

← Forum Post Reply →

  • ← Group Forum | Forum Topic Directory

    Running the Office Web Applications on a Domain Controller (2 posts)

  • Avatar Image Eric Eaton (e2) said 2 years, 4 months ago:

    There are a couple of extra tweaks that are needed after installing the SharePoint 2010 Office Web Applications on a Domain Controller. Here is a run-down.

    Create a PowerShell script that contains the following text, or you can enter it line by line in the SharePoint 2010 Management Shell:
    $e = Get-SPServiceApplication | where {$_.TypeName.Equals("Word Viewing Service Application")}
    $e.WordServerIsSandboxed = $false
    $e.WordServerIsSandboxed
    #(Please use the below script for PowerPointServiceApplication – You need to enter "Y" for the answer of each cmd)
    Get-SPPowerPointServiceApplication | Set-SPPowerPointServiceApplication -EnableSandboxedViewing $false
    Get-SPPowerPointServiceApplication | Set-SPPowerPointServiceApplication -EnableSandboxedEditing $false

    In the server’s c:windowssystem32inetsrvconfigapplicationHost.config. (Add the line below in the end of the dynamicTypes.)

    NOTE: If you try to copy and paste the above line into Notepad, it frequently gets confused about ASCII / non-ASCII characters (particularly with the quotation marks), so – I'd recommend just typing it or at least manually re-typing the quotes before saving. Otherwise the sky comes crashing down…

    When these steps are done, perform an IISRESET.

  • Avatar Image Eric Eaton (e2) said 2 years, 2 months ago:

    Oops! I apparently left out the actual line that you need to add to the applicationhost.config file – so here it is:

    add mimeType=”application/zip” enabled=”false”

    Put it into a tag structure. I can't type it that way here, because then it becomes invisible in the forum. Again, I recommend just typing it rather than copying and pasting it. There's some weird ASCII shenanigans that happen a lot with this particular text string which will end the world as you know it…