我在哪里可以下载Windows Server 2008系统服务的描述? 我需要这样的文档=> http://www.microsoft.com/downloads/details.aspx?familyid=b38a0682-2997-4678-9d9e-a07cc66a3bba&displaylang=en,但是对于Windows Server 2008。
您是否在寻找Windows Server系统的服务概述和networking端口要求 (KB832017)。
此外,Windows安全性文章, 使用Windows Server 2008控制服务安全性 。
我不确定你到底在找什么,但我认为微软的Windows Server 2008产品信息页面 ,尤其是白皮书部分和function页面是一个很好的起点。
例如,以下链接导致一个160页的长字文档:“ Windows Server 2008技术概述(完整文档) ”。
有关更多技术内容,请参阅TechNet上的Windows Server 2008部分 。
在这个techtasks网站有一个VB脚本,应该帮助列举可用的服务。
' This code prints the list of services on a machine ' --------------------------------------------------------------- ' From the book "Windows Server Cookbook" by Robbie Allen ' ISBN: 0-596-00633-0 ' --------------------------------------------------------------- ' ------ SCRIPT CONFIGURATION ------ strComputer = "<ServerName>" ' eg fs-rtp01 (use . for local server) boolShowDetails = TRUE ' set to FALSE to display list w/o details ' ------ END CONFIGURATION --------- set objWMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") set objServices = objWMI.InstancesOf("Win32_Service") for each objService in objServices WScript.Echo objService.Name if boolShowDetails = TRUE then for each objProp in objService.Properties_ ' Print out NULL if the property is blank if IsNull(objProp.Value) then Wscript.Echo " " & objProp.Name & " : NULL" else ' If the value is an array, we need to iterate through each element ' of the array if objProp.IsArray = TRUE then For I = LBound(objProp.Value) to UBound(objProp.Value) wscript.echo " " & objProp.Name & " : " & objProp.Value(I) next else ' If the property was not NULL or an array, we print it wscript.echo " " & objProp.Name & " : " & objProp.Value end if end if next WScript.Echo "" end if next