Hello everyone, I could use a little help. I am still very new to powershell. Currently, I am trying to get the default backup path for SQL Server Analysis Service. I thought it would be similar to how I get the default path for the database engine, but it’s not working.
This is what I have so far, but I can’t seem to find the default backup location:
[System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.AnalysisServices”) | out-null $server = New-Object Microsoft.AnalysisServices.Server $server.connect($server_name)
Any help is greatly appreciated
submitted by /u/Felidor
[link] [comments]
The post SQL Server Analysis Service appeared first on How to Code .NET.