-
Posted to
IIS 7.0 - PowerShell
by
Dazevo
on
04-14-2009, 8:39 AM
Is there anyway to edit this script to work with IIS 6.0 in Windows server 2003?
This is my final script.
Param
( [String] $Customername = $(Throw "You must enter a customer name"),
[String] $Projectname = $(Throw "You must enter a project ...
-
Posted to
IIS 7.0 - PowerShell
by
Dazevo
on
04-14-2009, 5:24 AM
Never mind, it's done.
Param
( [String] $Customername = $(Throw "You must enter a customer name"),
[String] $Projectname = $(Throw "You must enter a project name"),
[String]$Path="c:\inetpub\wwwroot\$Customername\$Projectname\website\wwwroot", #The Physical Path of the ...
-
Posted to
IIS 7.0 - PowerShell
by
Dazevo
on
04-14-2009, 3:10 AM
Hello, I'm new in the programjming world and I have a script to create a site and application in IIS. This is it:
Param
( [String] $Customername = $(Throw "You must enter a customer name"),
[String] $Projectname = $(Throw "You must enter a project ...
-
Posted to
IIS 7.0 - PowerShell
by
Dazevo
on
04-08-2009, 9:57 AM
Update:
I got this now.
Param
(
[String]$Name, #The Name of the site
[String]$Path="c:\inetpub\wwwroot", #The Physical Path of the site
[String]$AppPool="My Default Application Pool", #The name of the appPool the default app is part ...
-
Posted to
IIS 7.0 - PowerShell
by
Dazevo
on
04-08-2009, 5:09 AM
Never mind
-
Posted to
IIS 7.0 - PowerShell
by
Dazevo
on
04-06-2009, 7:40 AM
Sorry for double posting. The site gave an error that the page didn't exist.
-
Posted to
IIS 7.0 - PowerShell
by
Dazevo
on
04-06-2009, 7:39 AM
Thank you. That looks helpful. :)
-
Posted to
IIS 7.0 - PowerShell
by
Dazevo
on
04-06-2009, 5:38 AM
Hello people.
I am new in the IIS and Powershell world. (And I'm dutch by the way) Now I'm doing some research and I want to tell something (about half an A4) about what you can do with IIS via PowerShell. So could someone explain me a little bit what you can do with PowerShell for IIS. (cmdlets, scripts)? If someone could write ...