0
管理者権限が必要なため、Azure WebアプリケーションでSignalRを使用してAppCmdを実行した方法の詳細を教えてください。私はこのような理由で以下はうまくいかないと思います。Azure WebアプリケーションでAppCmd.exeを使用してSignalRを設定する
protected void Application_Start()
try
{
var windowsDir = Environment.GetEnvironmentVariable("windir");
var command = System.IO.Path.Combine(windowsDir, @"System32\inetsrv\appcmd.exe set config/section:system.webserver/serverRuntime/appConcurrentRequestLimit:10000");
Process.Start(command);
}
catch (Exception ex)
{
Trace.WriteLine(ex.GetBaseException().Message);
}
}