directorio - configurar iis para asp net
Cambiar el directorio de inicio del sitio IIS6 con Powershell (1)
$server = "localhost"
$siteName = "mysite"
$iis = [ADSI]"IIS://$server/W3SVC"
$site = $iis.psbase.children | where { $_.keyType -eq "IIsWebServer"
-AND $_.ServerComment -eq $siteName }
$path = [adsi]($site.psbase.path+"/ROOT")
$path.path
$path.psbase.properties.path[0] = "D:/Sites/$siteName/www2"
$path.path
$path.psbase.CommitChanges()
Estoy intentando cambiar el directorio de inicio de un sitio usando powershell. Esto es lo que tengo hasta ahora, pero no está guardando los cambios ...
$server = "localhost"
$siteName = "mysite"
$iis = [ADSI]"IIS://$server/W3SVC"
$site = $iis.psbase.children | where { $_.keyType -eq "IIsWebServer"
-AND $_.ServerComment -eq $siteName }
$path = [adsi]($site.psbase.path+"/ROOT")
$path.path = "D:/Sites/mysite/www2"
$site.psbase.CommitChanges()