哪里可以下载 Windows Server 2008 系统服务说明?我需要这样的文档 =>http://www.microsoft.com/downloads/details.aspx?familyid=b38a0682-2997-4678-9d9e-a07cc66a3bba&displaylang=en但适用于 Windows Server 2008。
答案1
您是否正在寻找Windows Server 系统的服务概述和网络端口要求(KB832017)。
此外,Windows 安全文章,使用 Windows Server 2008 控制服务安全。
答案2
我不确定你到底在寻找什么,但我想一个好的起点是微软的 Windows Server 2008 产品信息页面,特别是白皮书部分和功能页面。
例如,以下链接指向一份 160 页的长字文档:“Windows Server 2008 技术概述(完整文档)“。
欲了解更多技术内容,请访问TechNet 上的 Windows Server 2008 部分。
答案3
有一个 VB 脚本这个 techtasks 网站这应该有助于列举可用的服务。
' 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>" ' e.g. 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