Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exception thrown when creating a website via Invoke-Command

Tags:

powershell

iis

I'm calling the command

Invoke-Command  -computername remotepc { 
Import-Module WebAdministration; 
New-Website -Name www.somesite.com -ApplicationPool www.somesite.com -hostHeader www.somesite.com -physicalPath c:\inetpub\wwwroot }

The website is created successfully in IIS on the remote machine. However an exception message is displayed when powershell returns:

Invalid class string (Exception from HRESULT: 0x800401F3 (CO_E_CLASSSTRING))
    + CategoryInfo          : NotSpecified: (:) [New-Website], COMException
    + FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Microsoft.IIs.PowerShell.Provider.NewWebsite
   Command

Does anyone know why I'm receiving this message and how I can resolve it?

like image 476
James Hay Avatar asked May 18 '12 10:05

James Hay


1 Answers

Can you try :

$var = New-Website ...

Not sure but New-Website return an object that PowerShell remote session try to serialize unsuccesfully.

like image 138
JPBlanc Avatar answered Sep 23 '22 02:09

JPBlanc