Hi
I have Install Web content extractor on my pc. Web Content Extractor exe has the following path
C:\Program Files\Web Content Extractor\WCExt ractor.exe
Now I used cmd file to initiate Web Content Extractor.
I created cmd file and write the following text to file
"C:\Program Files\Web Content Extractor\WCExt ractor.exe" "D:\ASP.NET\tea chnetwork\manag er\Scrapfiles\a bc-teachers.wcepr" -dr -rt -s -ddr -qe -ex"
and save the file as abc-teachers.cmd on drive C
When I double click on cmd file It initiate my web content extractor. Also On my pc(win xp) the following code run abc-teachers.cmd which initiate Web content extractor. but on windows Vista This code does not work. While double clicking the cmd file on windows Vista also works.
Any Help in this issue
Thanks in advance
I have Install Web content extractor on my pc. Web Content Extractor exe has the following path
C:\Program Files\Web Content Extractor\WCExt ractor.exe
Now I used cmd file to initiate Web Content Extractor.
I created cmd file and write the following text to file
"C:\Program Files\Web Content Extractor\WCExt ractor.exe" "D:\ASP.NET\tea chnetwork\manag er\Scrapfiles\a bc-teachers.wcepr" -dr -rt -s -ddr -qe -ex"
and save the file as abc-teachers.cmd on drive C
When I double click on cmd file It initiate my web content extractor. Also On my pc(win xp) the following code run abc-teachers.cmd which initiate Web content extractor. but on windows Vista This code does not work. While double clicking the cmd file on windows Vista also works.
Code:
<%
Dim myProcess As System.Diagnostics.Process
Dim myInfo As New System.Diagnostics.ProcessStartInfo
myInfo.FileName = "C:\\abc-teachers.cmd"
myInfo.RedirectStandardOutput = True
myInfo.UseShellExecute = False
myProcess = System.Diagnostics.Process.Start(myInfo)
'myProcess.Start()
myProcess.Close()
%>
Thanks in advance
Comment