Попробуйте позвонить так:
EXEC sp_configure filestream_access_level, 2
RECONFIGURE
от PowerShell. Важной частью является «перенастройка».
$ServerInstance = "SQLSERVER2008"
$sqlConnection = New-Object System.Data.SqlClient.SqlConnection
$sqlConnection.ConnectionString = "Server=$ServerInstance;Database=master;Trusted_Connection=True;"
$Command = $sqlConnection.CreateCommand()
$Command.CommandText = "EXEC sp_configure filestream_access_level, 2; RECONFIGURE"
$sqlConnection.Open()
$Command.ExecuteNonQuery() | Out-Null
$sqlConnection.Close()