Existe-t-il des outils qui peuvent être utilisés pour documenter la configuration de Windows Server 2003 ?
Par configuration, j'entends :
- Services installés
- Programmes installés
- Utilisateurs
- Configuration d'IIS
UPDATE1 :
Instructions simplifiées. Extrayez le zip dans un dossier sur le serveur, puis allez en ligne de commande (cmd).
Exportation au format Word (il faut avoir Word sur le serveur) :
cscript sydi-server.vbs
Exportation au format XML (vous aurez besoin des fichiers XSL dans le sous-dossier XML) :
cscript sydi-server.vbs -oFILENAME.xml -ex -sh
-ex (pour le format XML)
-sh (format XML)
-o (définit le nom du fichier de sortie)
** UPDATE2 : **
Pour filtrer tout service Windows qui est désactivé :
For Each objItem In colItems
'ignore any service that has a startMode of disabled
If objItem.StartMode <> "Disabled" Then
'ok to add
objDbrServices.AddNew
objDbrServices("Caption") = objItem.Caption
objDbrServices("Started") = objItem.Started
objDbrServices("StartMode") = objItem.StartMode
objDbrServices("StartName") = objItem.StartName
If (LCase(objItem.Caption) = "mssqlserver") Then
bRoleSQL = True
End If
objDbrServices.Update
End If
Next
objDbrServices.Sort = "Caption"