ApplicationPool.GetState, méthode2
Retourne l’état d’exécution d’un pool d’applications.
Syntaxe
objAppPool.GetState
var appPoolState = appPool.GetState();
Paramètres
Cette méthode ne prend aucun paramètre.
Valeur de retour
uint32
identifie l’état du pool d’applications. Les valeurs de retour sont indiquées dans le tableau suivant.
Valeur retournée | Description |
---|---|
0 | Indique que le pool d’applications démarre. |
1 | Indique que le pool d’applications a démarré. |
2 | Indique que le pool d’applications s’arrête. |
3 | Indique que le pool d’applications s’est arrêté. |
4 | Indique que l’état du pool d’applications est inconnu. |
Notes
Cette méthode est nouvelle pour le fournisseur WMI IIS 7 et n’a pas d’équivalent direct dans IIS 6.0.
Exemple
L’exemple suivant obtient l’état d’un pool d’applications et le retourne à l’utilisateur.
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Specify the application pool.
Set oAppPool = oWebAdmin.Get("ApplicationPool.Name='DefaultAppPool'")
' Get the application pool's state and return it to the user by
' calling a helper function.
WScript.Echo oAppPool.Name & " is " & GetStateDescription(oAppPool.GetState) & "."
' The helper function translates the return value into text.
Function GetStateDescription(StateCode)
Select Case StateCode
Case 0
GetStateDescription = "Starting"
Case 1
GetStateDescription = "Started"
Case 2
GetStateDescription = "Stopping"
Case 3
GetStateDescription = "Stopped"
Case 4
GetStateDescription = "Unknown"
Case Else
GetStateDescription = "Attempt to retrieve state failed."
End Select
End Function
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 |