December 2015
Intermediate to advanced
760 pages
14h 31m
English
We will list SSAS instance properties in this recipe.
Let's explore the code required to list SSAS instance properties:
SQLASCmdlets module as follows:Import-Module SQLASCmdlets -DisableNameChecking
#Connect to your Analysis Services server $SSASServer = New-Object Microsoft.AnalysisServices.Server $instanceName = "localhost" $SSASServer.connect($instanceName) #get all properties $SSASServer | Select-Object *
You will see a result similar to this:

To get SSAS instance properties, we first need to load the ...
Read now
Unlock full access