gpt4 book ai didi

c# - 以编程方式解锁 applicationHost.config 中的部分

转载 作者:行者123 更新时间:2023-12-03 03:04:11 25 4
gpt4 key购买 nike

我已经检查了 ServerManagaer 类,它提供了很多与 IIS 一起使用的功能,它还包含更新 applicationHost.config 文件中的值的方法,但我无法找到任何方法来解锁其中的部分。

例如,为此目的,使用 appcmd.exe 解锁配置 命令。我需要以编程方式执行相同的操作。

最佳答案

正如已经说过的,您可以运行 appcmd 进程。但只是提示,如果您不控制台弹出窗口,您可以重定向输出。

这是来自MSDN的代码

// Start the child process.
Process p = new Process();
// Redirect the output stream of the child process.
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "Write500Lines.exe";
p.Start();
// Do not wait for the child process to exit before
// reading to the end of its redirected stream.
// p.WaitForExit();
// Read the output stream first and then wait.
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();

更多详情请参阅HERE

关于c# - 以编程方式解锁 applicationHost.config 中的部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8950100/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com