次の方法で共有


Server.InstallDataDirectory プロパティ

SQL Server のインスタンスのインストール データが格納されているローカル Windows ディレクトリを取得します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property InstallDataDirectory As String 
    Get
'使用
Dim instance As Server 
Dim value As String 

value = instance.InstallDataDirectory
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public string InstallDataDirectory { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property String^ InstallDataDirectory {
    String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member InstallDataDirectory : string
function get InstallDataDirectory () : String

プロパティ値

型: System.String
SQL Server のインスタンスのインストール データが格納されているローカル ディレクトリを示す String オブジェクトです。

使用例

C#

Server srv = new Server("(local)");
Console.WriteLine("SQL Server installation data is stored in the " + srv.FileStreamShareName.ToString() + " directory.");

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "SQL Server installation data is stored in the" $srv.FileStreamShareName "directory."

関連項目

参照

Server クラス

Microsoft.SqlServer.Management.Smo 名前空間

Planning a SQL Server Installation

その他の技術情報

サーバーの管理