WMI Connection
Declares a Windows Management Instrumentation (WMI) connection that targets the local machine and the root\cimv2 namespace using Windows authentication. Adjust 'ServerName' to a remote UNC such as '\\OtherHost' to query a different machine, or change 'Namespace' to reach a different WMI provider. The connection can be referenced by SSIS WMI Data Reader and WMI Event Watcher tasks.
<Biml xmlns="http://schemas.varigence.com/biml.xsd">
<Connections>
<WmiConnection Name="WmiConnection" ServerName="\\localhost" UseWindowsAuthentication="true" Namespace="\root\cimv2" />
</Connections>
</Biml>