Using Powershell, I would like to update Outlook's compatible status to True
<default>
<application>Excel.exe</application>
<compatible>True</compatible>
<application>Outlook.exe</application>
<compatible>False</compatible>
<application>Word.exe</application>
<compatible>False</compatible>
</default>
$doc = [xml](Get-Content ./test.xml)
The output of $doc.default.compatible
is
True
False
False
How do I modify only the middle value (outlook.exe) to True using Powershell?