Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why can't you redirect in process.start? 1

Status
Not open for further replies.

haddaway

Programmer
Jul 6, 2005
172
SE
I am using these simple lines to start a defrag, but it fails if I add " > c:\test.txt". Why?

Dim ps As New ProcessStartInfo
ps.FileName = "C:\WINDOWS\system32\defrag.exe"
ps.Arguments = "-afv c: > c:\test.txt"

Process.Start(ps)
 
You need to use the startinfo structure, the properties are pretty self-explanatory and should lead you quickly to what you need.


Hope this helps.

[vampire][bat]
 
I found this thread useful to me too and here is my try.
Hope you like it..


Code:
        Imports System.Diagnostics
        Imports System.IO


Code:
        Dim p As New Process
        Dim si As New ProcessStartInfo

        si.FileName = "cmd"
        si.CreateNoWindow = True
        si.RedirectStandardInput = True
        si.RedirectStandardOutput = True
        si.UseShellExecute = False

        p.StartInfo = si
        p.Start()

        Dim sr As StreamReader = p.StandardOutput
        Dim sw As StreamWriter = p.StandardInput

        sw.WriteLine("defrag.exe c: -a")
        sw.WriteLine("exit")

        Dim ofile As New StreamWriter("c:\t.txt")

        ofile.Write(sr.ReadToEnd)

        ofile.Close()
        sw.Close()
        sr.Close()
 
thanks, I have no problem capturing the output, I just wonder why it breaks the process.start when using ">".
 
Well, it is NOT an argument. If i remember fine, the args are four. Using the '>' you redirect the "defrag c: -a" to the file "c:\t.txt". Typing it to the ms-prompt there is no problem.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top