Family Day update
This commit is contained in:
parent
aac6731f2c
commit
9ad63ea473
2442 changed files with 39761 additions and 8255 deletions
|
|
@ -0,0 +1,20 @@
|
|||
Module System_Command
|
||||
|
||||
Sub Main()
|
||||
Dim cmd As New Process
|
||||
cmd.StartInfo.FileName = "cmd.exe"
|
||||
cmd.StartInfo.RedirectStandardInput = True
|
||||
cmd.StartInfo.RedirectStandardOutput = True
|
||||
cmd.StartInfo.CreateNoWindow = True
|
||||
cmd.StartInfo.UseShellExecute = False
|
||||
|
||||
cmd.Start()
|
||||
|
||||
cmd.StandardInput.WriteLine("dir")
|
||||
cmd.StandardInput.Flush()
|
||||
cmd.StandardInput.Close()
|
||||
|
||||
Console.WriteLine(cmd.StandardOutput.ReadToEnd)
|
||||
End Sub
|
||||
|
||||
End Module
|
||||
Loading…
Add table
Add a link
Reference in a new issue