你好,我又在网上搜到微软用来识别全球唯一ID的方法,在cmd中输入slmgr.vbs -dti,下面是我的代码,请问怎么才能把获得的代码赋给s,请帮忙修改,谢谢
Dim p As new Process()
p.StartInfo.FileName = "cmd.exe"
p.StartInfo.UseShellExecute = False '关闭Shell的使用
p.StartInfo.RedirectStandardInput = True '重定向标准输入
p.StartInfo.RedirectStandardOutput = True '重定向标准输出
p.StartInfo.RedirectStandardError = True '重定向错误输出
p.StartInfo.CreateNoWindow = True '设置不显示窗口
p.Start()
p.StandardInput.WriteLine("slmgr.vbs -dti")
p.StandardInput.WriteLine("exit")
Dim s As String = p.StandardOutput.ReadToEnd()
Output.Show(s)