0
次のコードを使用してプログラムでWMICを管理者として実行しようとしていますが、WMIC.exeが既に管理者として実行されている場合のみです。空のHTML。私はstackoverflowまたは他の場所で関連する問題を見つけることができないようです...誰も問題をここで見ていますか?Process.start()WMIC.exeパスワードの問題
securestringを変換するための私の方法:
SecureString secureString = new SecureString();
foreach (char ch in str)
{
secureString.AppendChar(ch);
}
secureString.MakeReadOnly();
return secureString;
STARTCODE:
string path = @"C:\Temp\";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.UseShellExecute = false;
startInfo.FileName = "cmd";
startInfo.Domain = "EU";
startInfo.Verb = "runas";
startInfo.UserName = "Username";
startInfo.Password = GetSecureString("Password");
startInfo.Arguments = @"/k wmic.exe /node: " + "\"" + txt_input_computers.Text + "\" " + "/output:" + path + @"\" + txt_input_computers.Text + ".html " + DDL_WMIC.Text
+ " list full /format:hform";
process.StartInfo = startInfo;
process.Start();
process.WaitForExit();
Process.Start(path + @"\" + txt_input_computers.Text + ".html");
それがWMIの場合は、WMIを管理モードで実行する必要があることを教えてください。管理モードでVisual Studioを起動してください – Apoorv
申し訳ありませんが、私は上記の質問を言い換えました – DaBeast