Méthode1 SSLBinding.Create
Crée une liaison SSL (Secure Sockets Layer).
Syntaxe
oWebAdmin.Get("SSLBinding").Create(
IPAddress,
Port,
CertificateHash,
StoreName
);
oWebAdmin.Get("SSLBinding").Create
IPAddress,
Port,
CertificateHash,
StoreName
Paramètres
Nom | Description |
---|---|
CertificateHash |
Valeur string qui spécifie le hachage de certificat pour la liaison SSL. |
IPAddress |
Valeur string qui spécifie l’adresse IP de la liaison SSL. |
Port |
Valeur uint32 qui spécifie le numéro de port de la liaison SSL. |
StoreName |
Valeur string qui spécifie le nom du magasin de certificats pour la liaison SSL. |
Valeur de retour
Cette méthode ne retourne pas de valeur.
Notes
Le script suivant montre les différents formats que vous pouvez utiliser pour le IPAddress
paramètre :
' This is the standard format for a specific IP address.
oWebAdmin.Get("SSLBinding").Create "172.30.190.122", 443, "fbbca460988a482227ec71122177045e47f9f2ff", "MyStoreName"
' Each of the following formats is an acceptable way to create a secure binding
' to port 443 on all IP addresses.
oWebAdmin.Get("SSLBinding").Create "*", 443, "fbbca460988a482227ec71122177045e47f9f2ff", "MyStoreName"
oWebAdmin.Get("SSLBinding").Create "0.0.0.0", 443, "fbbca460988a482227ec71122177045e47f9f2ff", "MyStoreName"
oWebAdmin.Get("SSLBinding").Create "", 443, "fbbca460988a482227ec71122177045e47f9f2ff", "MyStoreName"
Exemple
L’exemple suivant crée une liaison sécurisée et l’ajoute à un site Web.
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Create the secure binding.
oWebAdmin.Get("SSLBinding").Create "*", 443, "fbbca460988a482227ec71122177045e47f9f2ff", "MyStoreName"
' Create a new binding element.
Set oBinding = oWebAdmin.Get("BindingElement").SpawnInstance_
oBinding.BindingInformation = "*:443:"
oBinding.Protocol = "https"
' Get the default Web site.
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")
' Increase the size of the array in the site's Bindings property.
arrBindings = oSite.Bindings
ReDim Preserve arrBindings(UBound(arrBindings) + 1)
' Add the new binding to the array.
Set arrBindings(UBound(arrBindings)) = oBinding
' Assign the array to the Site.Bindings property.
oSite.Bindings = arrBindings
Set oPath = oSite.Put_
Spécifications
Type | Description |
---|---|
Client | - IIS 7.0 sur Windows Vista - IIS 7.5 sous Windows 7 - IIS 8.0 sous Windows 8 - IIS 10.0 sous Windows 10 |
Serveur | - IIS 7.0 sur Windows Server 2008 - IIS 7.5 sur Windows Server 2008 R2 - IIS 8.0 sur Windows Server 2012 - IIS 8.5 sur Windows Server 2012 R2 - IIS 10.0 sous Windows Server 2016 |
Produit | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 |
Fichier MOF | WebAdministration.mof |