VB - 在命令提示符命令

时间:2017-12-08 21:41:55

标签: vb.net visual-studio command-prompt

使用eventvwr命令行命令时,您可以使用/ v:"文件路径"

将导出的XML文件传递给它

我试图使用visual studio这样做。

现在我正在尝试

Process.Start("CMD", "/C eventvwr " + Servername + " /v:" +

那就是我被卡住的地方。我需要它将xml文件作为文件而不是内容拉入。我目前将xml文件作为project-> properties->文件下的资源引入。

如果可能的话,我们将不胜感激。

谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用:

Dim xmlText as String = Properties.File
Dim path as String = "c:\temp\file.xml"; //or Path.GetTempPath() + "file.xml"
File.WriteAllText(path, xmlText)

然后:

Process.Start("CMD", "/C eventvwr " + Servername + " /v:" + path)