-
Posted to
IIS 7.0 - PowerShell
by
marcoshaw
on
10-04-2009, 12:32 PM
I don't have a good test environment setup right now.
Try something like this maybe:
PS>Get-ItemProperty your_path -name bindings|foreach{$_.collection}|foreach{$_.bindingInformation.split(":")[2]}
-
Posted to
IIS 7.0 - PowerShell
by
marcoshaw
on
09-30-2009, 11:03 AM
[quote user="akirsman"]
Hi, I installed the package from here as admin (positively):
http://www.iis.net/downloads/1665/ItemPermaLink.ashx
Running 64-bit powershell (C:\Windows\System32\WindowsPowerShell\v1.0\PowerShell.exe) in Win Server 08 and still hitting this error:
PS D:\Scripts> Add-PsSnapin ...
-
Posted to
IIS 7.0 - PowerShell
by
marcoshaw
on
09-30-2009, 10:50 AM
[quote user="tjeerd.mulder"]
Trying to execute a powershell script that sets up a website. I have it working in the powershell ISE but can't get it to work when using it from c#.
Error I get is:
Retrieving the COM class factory for component with CLSID {688EEEE5-6A7E-422F-B2E1-6AF00DC944A6} failed due to the following error: ...
-
Posted to
IIS 7.0 - PowerShell
by
marcoshaw
on
04-12-2009, 3:20 PM
Chere here also:
http://blogs.iis.net/jeonghwan/archive/2008/07/30/iis-powershell-user-guide-comparing-representative-iis-ui-tasks.aspx
(That other link you mentioned that was giving you an error is working for me.)
-
Posted to
IIS7 - Extensibility
by
marcoshaw
on
04-04-2009, 6:22 AM
Is there any online docs/references to how ISAPI works in v7?
I'm sure it should be configurable to run out-of-process, but I'm also trying to understand how 32-bit emulation may come into play and cause issues.
-
Posted to
IIS7 - Extensibility
by
marcoshaw
on
04-03-2009, 12:23 PM
**I'm not a professional programmer**
IIS 7 introduces the concept of modules. The TechNet online docs suggest using modules over ISAPI filters.
Is there anything that outlines why? What are the benefits/drawbacks, etc.? Speed differences? Architecture differences?
Anything addressing these points already exists?
Marco
-
Posted to
IIS 7 - Troubleshooting
by
marcoshaw
on
04-02-2009, 1:10 PM
I'm going to be working with someone who has a 32-bit ISAPI DLL (apparently written in .NET 1.1, and not sure if it is coming from Server 2000 or 2003).
They got a brand new Server 2008 64-bit system, and have tried using the same ISAPI DLL on the new platform.
Unfortunately, the performance of their application (using the ISAPI DLL) has ...
-
Posted to
IIS 7.0 - PowerShell
by
marcoshaw
on
02-02-2009, 8:18 PM
I will definitely have to try this out. I understand there are improvements in this RC release, but I would be pleseantly surprised if there was some kind of remoting provided with the IIS snapin, so I'll need to try it out first before...
-
Posted to
IIS 7.0 - PowerShell
by
marcoshaw
on
12-15-2008, 10:46 AM
[quote user="zdenek"][quote user="zdenek"] because the powershell 1 is installed when SQL 2008 [/quote]
Actually I was wrong about this one. Although SQL Server 2008 requires powershell 1, it comes with windows 2008 according to some docs i found on microsoft website.
I will still investigate further to see if I can get it ...
-
Posted to
IIS 7.0 - PowerShell
by
marcoshaw
on
12-13-2008, 7:51 PM
[quote user="zdenek"][quote user="marcoshaw"] It is possible you will be able to get WMI to work to set this property locally, but if you're goal was to use WMI so you can do this remotely, you'll need to find an alternate method. [/quote]
My goal is to be able to create websites automatically on the local ...