Changeset 1699
- Timestamp:
- 07/16/08 16:33:03 (5 months ago)
- Files:
-
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation.suo (modified) (previous)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/BrowserAutomation.csproj (modified) (1 diff)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/IE.cs (modified) (3 diffs)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/bin/Debug/BrowserAutomation.exe (modified) (previous)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/bin/Debug/BrowserAutomation.pdb (modified) (previous)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/bin/Debug/Interop.SHDocVw.dll (modified) (previous)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/obj/Debug/BrowserAutomation.csproj.FileListAbsolute.txt (modified) (1 diff)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/obj/Debug/BrowserAutomation.csproj.ResolveComReference.cache (modified) (previous)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/obj/Debug/BrowserAutomation.exe (modified) (previous)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/obj/Debug/BrowserAutomation.pdb (modified) (previous)
- honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/obj/Debug/Interop.SHDocVw.dll (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/BrowserAutomation.csproj
r1698 r1699 52 52 </ItemGroup> 53 53 <ItemGroup> 54 <COMReference Include="MOZILLACONTROLLib">55 <Guid>{1339B53E-3453-11D2-93B9-000000000000}</Guid>56 <VersionMajor>1</VersionMajor>57 <VersionMinor>0</VersionMinor>58 <Lcid>0</Lcid>59 <WrapperTool>tlbimp</WrapperTool>60 <Isolated>False</Isolated>61 </COMReference>62 54 <COMReference Include="SHDocVw"> 63 55 <Guid>{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}</Guid> honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/IE.cs
r1698 r1699 4 4 using System.Text; 5 5 using System.Threading; 6 using System.Diagnostics; 6 7 using SHDocVw; 7 8 … … 24 25 private DateTime startTime; 25 26 private TimeSpan duration; 27 private Process[] myOpenIEs; 26 28 27 29 /// <summary> … … 65 67 if(duration.Seconds >= 30) 66 68 { 69 myOpenIEs = Process.GetProcessesByName("iexplore"); 70 foreach (Process myOpenIE in myOpenIEs) 71 { 72 myOpenIE.Kill(); 73 } 67 74 ieThread.Abort(); 68 75 } honeyclient/branches/exp/bhenderson-browser_automation/BrowserAutomation/obj/Debug/BrowserAutomation.csproj.FileListAbsolute.txt
r1698 r1699 7 7 D:\Work\HoneyClient\BrowserAutomation\BrowserAutomation\obj\Debug\BrowserAutomation.exe 8 8 D:\Work\HoneyClient\BrowserAutomation\BrowserAutomation\obj\Debug\BrowserAutomation.pdb 9 D:\Work\HoneyClient\BrowserAutomation\BrowserAutomation\obj\Debug\Interop.MOZILLACONTROLLib.dll10 D:\Work\HoneyClient\BrowserAutomation\BrowserAutomation\bin\Debug\Interop.MOZILLACONTROLLib.dll
