sharath Posted September 15, 2006 Share Posted September 15, 2006 Hi ALL, I am trying a PHP script which will automatic startup for virtual machines under Microsoft Virtual Server 2005 r2 but it failed due to COM object saying Source unknown But the same thing when i tried through VB script it works fine. VB script: Set objVS = CreateObject("VirtualServer.Application") Set objVM = objVS.FindVirtualMachine("VM Name") objVM.Startup(); It Worked fine _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ___________ _ _ _ _ _ PHP Script: $objVS = new COM(" VirtualServer.Application"); $objVM = $objVS->FindVirtualMachine("Scorpio"); $objVM->Startup(); it throuhgs Error at FindVirtualMachine function saying ERROR: Fatal error: Uncaught exception 'com_exception' with message 'Source: Unknown Please Help me it's urgent !! Thanks in advance Link to comment https://forums.phpfreaks.com/topic/20836-com-error-in-php/ Share on other sites More sharing options...
markbett Posted September 15, 2006 Share Posted September 15, 2006 perhaps teh leading space in the server name? Link to comment https://forums.phpfreaks.com/topic/20836-com-error-in-php/#findComment-92202 Share on other sites More sharing options...
sharath Posted September 15, 2006 Author Share Posted September 15, 2006 Hi, Sorry, but i tried without leading space but still same error!!VB script: Set objVS = CreateObject("VirtualServer.Application") Set objVM = objVS.FindVirtualMachine("VM Name") objVM.Startup(); It Worked fine _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ___________ _ _ _ _ _ PHP Script: $objVS = new COM("VirtualServer.Application"); $objVM = $objVS->FindVirtualMachine("Scorpio"); $objVM->Startup(); it throuhgs Error at FindVirtualMachine function saying ERROR: Fatal error: Uncaught exception 'com_exception' with message 'Source: Unknown Thanks.... Link to comment https://forums.phpfreaks.com/topic/20836-com-error-in-php/#findComment-92206 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.