|
No, get-ASConnection just returns an AMO connection to SSAS.
You can get the details of the relational data sources with something like the following:
$db = get-asdatabase "localhost\sql08" "Adventure Works DW 2008"
$db.datasources | select name, connectionstring
|