I want to create a COM object, internet explorer application. The following 
code works fine in PowerShell ISE (32 bit):

$ie = New-Object -com InternetExplorer.Application

But, when I try running it on Jenkins Windows server (using either the 
powershell plugin or calling the PS1 with a batch file), I get the 
following error.

Building on master in workspace C:\Program Files\Jenkins\workspace\Jenkins Test
[Jenkins Test] $ powershell.exe -NonInteractive -ExecutionPolicy ByPass "&  
'C:\WINDOWS\TEMP\hudson3148932824880446098.ps1'"
New-Object : Creating an instance of the COM component with CLSID {0002DF01-000
0-0000-C000-000000000046} from the IClassFactory failed due to the following er
ror: 80004005.
At C:\WINDOWS\TEMP\hudson3148932824880446098.ps1:1 char:17
+ $ie = New-Object <<<<  -com InternetExplorer.Application
    + CategoryInfo          : ResourceUnavailable: (:) [New-Object], COMExcept 
   ion
    + FullyQualifiedErrorId : NoCOMClassIdentified,Microsoft.PowerShell.Comman 

ds.NewObjectCommand

I'm using a VM at work (server 2003). I'm not sure if this is an issue with 
my server permissions or if these are interactive commands being used with 
a non-interactive device. Can anyone help?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/18118f51-49ef-4d3b-b992-eb13453d31c4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to