我正在尝试使用System.Diagnostics.Process从Web服务内重新启动Windows Server 2003。
public static string Dorestart()
{
var si = new Process();
si.StartInfo.UserName = "administrator"; // Credentials of administrator user
var sc = new SecureString();
foreach (char c in "AdminPassword")
{
sc.AppendChar(c);
}
si.StartInfo.Password = sc;
si.StartInfo.UseShellExecute = false;
si.StartInfo.FileName = "cmd.exe";
si.StartInfo.Arguments = "\"c:\\windows\\system32\\shutdown.exe\" -r -f -t 0 -c \"Restart Reason\" -d p:4:1";
si.StartInfo.CreateNoWindow = true;
string res = "";
try
{
si.Start();
si.WaitForExit();
res = "Minor Job done... wait 2 minutes to complete action";
}
catch (Exception ex)
{
res= ex.Message;
}
si.Close();
si.Dispose();
return res;
}
对于文件名和参数部分,我也对此进行了测试:
si.StartInfo.FileName = "shutdown.exe";
si.StartInfo.Arguments = "/r /f /t 0 /c \"" + UReason + "\" /d p:4:1";
使用来自RUN命令的文件名和参数实际上重启了pc但是在Web服务上我得到了这个错误:
在服务器桌面上:应用程序无法正确初始化(0xC0000142)。点击确定终止申请。
在事件日志中我有这个:
Process information:
Process ID: 2676
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE
Exception information:
Exception type: HttpException
Exception message: Request timed out.
Request information:
Request URL: http://mywebsite.com/webservice.asmx
Request path: /webservice.asmx
User host address: <IP Address>
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE
Thread information:
Thread ID: 7
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
在Web应用程序上没有错误。
如果有人告诉我如何解决此问题并重新启动Web服务,我感激不尽。
答案 0 :(得分:0)
最后它起作用了......
有各种各样的问题。我将此过程记录在案以供将来参考。注意安全风险。
感谢Wjdavis5,我将AppPool标识更改为本地系统。
感谢Running a batch file from an ASP .NET page,我从代码中删除了一些代码:
public string DoJob()
{
var si = new Process
{
StartInfo =
{
FileName = "shutdown.exe",
Arguments = "-r -f -t 0 -c "Shutdown Reason" -d p:4:1",
WorkingDirectory = "c:\\windows\\system32\\"
}
};
string res;
try
{
si.Start();
si.WaitForExit();
res = "<br />Minor Job done... wait 2 minutes to complete action<br />You can now close this window";
}
catch (Exception ex)
{
res = ex.Message;
}
si.Close();
si.Dispose();
return res;
}
为了消除安全风险,以及隐藏网站和Web服务的一些安全方法,例如使用子域和非标准端口,我在A small C# Class for impersonating a User by Uwe Keim中使用了模拟此代码中包含的上述方法内容:
try
{
using (new Impersonator("Admin Username", ".", "Admin Password"))
{
// Above method Content
.
.
.
}
}
catch (Exception ex)
{
return "Invalid Username or Password";
}
此代码检查提供的凭据在服务器上是否有效。我没有在此应用程序上测试非管理用户,因为此服务器没有任何。
随时评论和纠正。 此致