i have execute below script for disabling sandbox property for word automation services.
$sp = Get-SPServiceApplication | where {$_.TypeName.Equals("Word Automation Services")} $sp.DisableSandbox = $true $sp.Update() but getting below exception..

How to disable sandbox property ?
because using Word Automation Services not generating pdf documents from word documents.
So i need to disable sandbox property..
Any Solutions...?
Thanks...