-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
04-28-2009, 7:34 AM
So, there's a RC of Win7 and there's still no IIS snap-in shipped with it.
AND there's no way to install a release of snap-in on Win7, only RC is hackable... it is very... inconvenient... :-(
-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
02-02-2009, 5:12 AM
So, you're saying that IIS 7.5 comes with PS snap-in pre-installed? Hmmm... didn't notice. And anyway, when launching installer, it says: you don't have IIS 7 or later installed. I think you should clarify this somehow. PS: how could I change SSL settings for web applications (e.g. require SSL + Ignore / Accept / ...
-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
01-27-2009, 5:19 AM
I can't install it on Windows 7 beta (x64). Installer claims that I don't have IIS 7 installed.
CTP2 installed without any fuse though.
PS: as a hack I changed minor version of IIS from 5 to 0 here: HKLM:\SOFTWARE\Microsoft\InetStp
-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
10-08-2008, 5:19 AM
Also, why should I write
Set-WebBinding -Site "$($defaultWebSite.Name)" -IP '*' -Port 443 -Name 'https' -Value '*:443:'
Instead of
Set-WebBinding -Site "$($defaultWebSite.Name)" -IP '*' -Port 443
(because all of the parameters are required)?
-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
10-06-2008, 5:27 AM
Every time when I try to invoke Remove-WebBinding for the site with spaces in its name, I'm getting an error about unknown parameter.
PS IIS:\Sites> Remove-WebBinding -Site 'Default Web Site' -IP * -Port 443
Remove-WebBinding : A parameter cannot be found that matches parameter name 'Web'.
At line:1 char:18
+ ...
-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
10-03-2008, 5:49 AM
Also, whould be handy to know how to set all three states: do not require / accept / require.
-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
06-10-2008, 1:45 AM
SP1 for Vista isn't a requirement at all, but still, yes, we have SP 1 installed. Also, IIS7 is comnig only with Vista and maybe with Server 2008 (didn't try it yet). Also, it's 32-bit version of OS, but honestly, at home I have 64-bit Vista version and it never coused any trouble.
The problem is (I only can suspect) in the way ...
-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
06-04-2008, 4:35 AM
Yes, exactly. As far as I know, there's no other way. And all other systems work with it well without any troubles. This error is happening on only one machine and is 100% reproduceable after re-installing of IIS, .NET and PowerShell / IIsProvider.
PS:and yes, I know about IIsConsole.psc1, and I believe it's equivalent to ...
-
Posted to
Configuration & Scripting
by
13xforever
on
05-27-2008, 5:03 AM
After you .Put("here", "something"), you should apply changes by calling .SetInfo() method.
Also, make a variable from ([ADSI]"IIS://$computer/$name") in the first place, like:
PS > $mySite = [ADSI]"IIS://$computer/$name"
PS > $scriptmaps = $mySite.Properties["ScriptMaps"]
PS ...
-
Posted to
IIS 7.0 - PowerShell
by
13xforever
on
05-27-2008, 4:56 AM
Hi, we have machine with Vista and IIS installed. Today we also have installed PowerShell 1.0 and IIS provider (all x86 versions).
The problem is when we try to add IIS snap-in, we got this error:Attempting to perform the Start operation on the 'WebAdministration' provider failed. Method not found: 'Void ...