# Path to your Home Assistant shared folder - mapped drive on your windows machine $haPath = "I:" # Get the content of the Open Z-Wave cache file [xml]$ozwCfg = Get-Content "$haPath\zwcfg_*.xml" # Analyze and print $ozwCfg.Driver.Node | ft id, Name, secured, @{Name="Is Z-Wave Plus";Expression={ (($_.CommandClasses.CommandClass.name) | ?{ $_ -eq "COMMAND_CLASS_ZWAVEPLUS_INFO"} | %{"yes"}) }}