Remote server machine does not exist - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: VB Scripting/Descriptive Programming (https://www.learnqtp.com/forums/Forum-VB-Scripting-Descriptive-Programming) +--- Thread: Remote server machine does not exist (/Thread-Remote-server-machine-does-not-exist) |
Remote server machine does not exist - eroshan - 10-14-2009 Hi I am using this .vbs file to start QTR test. Code: Dim qtpApp First time it works well but sometimes it gives this error Code: The remote server machine does not exist or is unavailable;'visible' (This gave after i close the QTP manually. ) Thanks RE: Remote server machine does not exist - Saket - 10-14-2009 Check into processes at Windows task manager on your system. there must be a process running as QTAutomation agent. end the process and it should work. RE: Remote server machine does not exist - eroshan - 10-14-2009 Hi Thanks Saket , It works now. RE: Remote server machine does not exist - sreekanth.peetla - 05-03-2013 Option Explicit ''********************************************************************** Code: 'Script Name: DriverScript Code: SystemUtil.CloseProcessByName("IExplore.EXE") after completion of this execution it has to update the "Executed" in the test data excel sheet but here I am getting the error msg as "The remote server machine does not exist or is unavailable: 'objworkbook' Line (53): "objExcel.objworkbook("TestData").Activate " The remote server machine does not exist or is unavailable: 'cells' Line (55): "objExcelSheet.cells(intcounter,3).Value = "Executed"". Kindly look into this and do the needful Regards, Sreekanth RE: Remote server machine does not exist - agarwl.anurag - 05-03-2013 The excell object which you have defined gets set to nothing when the focus of script goes to the run the required script.It better you open the new instance of the excel again and write your result in that. RE: Remote server machine does not exist - Saket - 05-06-2013 @sreekanth.peetla, Please open a new thread for the new query. |