Para executar o cmd como administrador junto com o comando?

Aqui está o meu código:

try
{
    ProcessStartInfo procStartInfo = new ProcessStartInfo(
                                            "cmd.exe", 
                                            "/c " + command);
    procStartInfo.UseShellExecute = true;
    procStartInfo.CreateNoWindow = true;
    procStartInfo.Verb = "runas";
    procStartInfo.Arguments = "/env /user:" + "Administrator" + " cmd" + command;

    ///command contains the command to be executed in cmd
    System.Diagnostics.Process proc = new System.Diagnostics.Process();
    proc.StartInfo = procStartInfo;
    proc.Start();
}
catch (Exception ex)
{
    MessageBox.Show(ex.Message);
}

Quero manter

procStartInfo.UseShellExecute = true 
procStartInfo.RedirectStandardInput = false;

É possível executar o comando sem usarprocess.standardinput? Tento executar o comando que passei no argumento, mas o comando não é executad

questionAnswers(2)

yourAnswerToTheQuestion