Je suis en train de rechercher un ID de site IIS7 en utilisant le nom du site à l'aide de appcmd
ou d'autres utilitaires mais je n'ai pas trouvé de moyen d'y parvenir.
Réponses
Trop de publicités?
Dave Markle
Points
44637
the_joric
Points
4755
cederlof
Points
1656
Alex K.
Points
67805
Enregistrez ceci en XXX.VBS
dim lookfor: lookfor = lcase(WScript.Arguments(0))
dim ws: set ws = getobject("IIS://localhost/w3svc")
for each site in ws
if site.class = "IIsWebServer" then
if lcase(site.ServerComment) = lookfor then
wscript.echo "id=" & site.Name & ", name=" & site.ServerComment
end if
end if
next
ensuite à partir de la ligne de commande
XXX.vbs site.tofind.com
ou
cscript XXX.vbs site.tofind.com