ContributionsMost RecentMost LikesSolutionsHow to remove USB stick using VB script in TCI am trying to remove USB stick from PC thru VB script. Please let me know is there any inbuilt fubction in TestComlete to work on this.Re: Image comparision is getting failed in TC9.2I tried with all settings. Still image comparision is getting failed.Image comparision is getting failed in TC9.2I am trying to compare reference images with run time image.If the reference image is taken in the same PC the comparision is getting passed but if i try to perform the same comparion in difference PC's with same reference images the comparision is getting failed,even though the PC's configuration are same. It would be great help if any one can suggest me what could the reason for failing. Re: Not able to compare Large Image size images in TC9i am using 9.10 . In 9.10 it is not workingNot able to compare Large Image size images in TC9Hi I have JPG image of size 5.76 MB . when i tried to compare it it was giving an error"Picture object doesnt contain any image" This is the script i used to compare and i have attached the images also. but same script is working for image whose image size 2.82 MB i am attaching that image also. Image name which is comparing (NB_Astra Cells.jpg) Image nem which is not comparing is(LIBB_Ring.jpg) But this comparision is working fine in both TC 7 and 8 version Sub Test1 Dim Pict1 dim Pict2 dim ResultImage Set Pict1 = Utils.Picture Set Pict2 = Utils.Picture Pict1.LoadFromFile("C:\LIBB_Ring.jpg") Pict2.LoadFromFile("C:\LIBB_Ring.jpg") Set ResultImage = Pict1.Difference(Pict2) If ResultImage Is Nothing Then Log.Message("The images are identical") Else Log.Picture(ResultImage) End If End Sub