當前位置:首頁 » 城管服務 » cmd啟動服務

cmd啟動服務

發布時間: 2021-02-06 16:35:41

1. 如何用DOS命令方式啟動系統服務

步驟一:用DOS命令查看已啟動的服務列表

1
先了解一下在DOS下,如何查看已經啟動的系統服務,先從開始菜單中打開「運行」程序,然後在運行編輯框中輸入cmd命令,確定,就進入命令提示符窗(XP系統下類似DOS的模式)。

2
打開DOS窗口後,在C:\Documents and Settings\Administrator後面的閃動游標處,輸入「net start /?」命令,這條命令是查看系統服務幫助說明,以及參數情況。
提示:net start /?命令,用大小寫字母都可以,不要輸入兩邊的雙引號。

3
按回車後,就會提示「此命令的語法是:NET START [service]」,就是介紹啟動服務的方法及參數。

4
既然知道語法,就試一試,查看當前系統中所有啟動的服務列表,接著輸入net start,回車。
提示:net start 為查看所有當前已啟動的系統服務列表命令,後面無須帶參數。

5
當前已啟動的系統服務就羅列出來了,所啟動的服務很多,分為上下兩圖,到「命令成功完成」載止。
查看當前已啟動的系統服務就完成了,下面介紹如何啟動Telnet單項服務。

END
步驟二:如何啟動Telnet服務

上面只是查看所有當前啟動的服務,這里就介紹如何具體啟動某個單項的系統服務,如Telnet服務,這項為系統遠程式控制制服務,只有啟動了它,才能控制其它的電腦。
操作步驟:從開始菜單中打開「運行」,然後輸入cmd命令,確定。

進入DOS窗口後,輸入啟動Telnet遠程式控制制命令,其命令語法是「net start telnet」,回車。
net start為啟動服務的命令,後面的參數為telnet,命在一起,就是啟動服務列表中的遠程式控制制服務。

如果提示「發生系統錯誤 1058 ,無法啟動服務,原因可能是已被禁用或與其相關聯的設備沒有啟動」,那就是這項系統服務被禁用了。

解除禁用的方法,從開始菜單中,打開「控制面板」,然後在控制面板中,找到並打開「管理工具」這一項,
進入管理工具窗口後,找到「服務」,雙擊打開。

進入了系統服務編輯器窗口,拖動滾動條,找到「Telnet」這一項,雙擊,打開其屬性窗口。

在屬性窗口的「常規」界面下,找到「啟動類型」這一項,其當前設置為「已禁用」,就是這個被禁用了,所以才無法啟動Telnet服務。把它改為「手動」,然後按「應用」保存,按「確定」退出窗口,設置完成。

再回到DOS命令窗口,按以前方法,再次輸入net start telnet啟動遠程服務命令,然後回車,

這回的提示是「Telnet 服務正在啟動,Telnet 服務已經啟動成功」,不用我說,從字面上的意思就知道,Telnet已經啟動成功了。

為了確定是否真的啟動Telnet服務成功了,再查看一下當前已啟動的系統服務列表,方法是,輸入net start命令,回車。

打開了所有的已啟動的服務列表,在列表中仔細找一找,找到了,就是那個「Telnet」這一項,說明用DOS命令啟動Telnet已經成功。

END
注意事項

注意:使用DOS命令,字母與符號不能有一個錯誤,有空格的地方, 一定要留空格,否則也會出錯。

2. 如何用CMD命令停止,啟用,禁用某服務

  • 啟動某服務 net start (服務名稱)

  • 停止某服務 net stop (服務名稱)

  • 禁用某服務 sc config (服務名稱)start= disabled (注意:start=後面有一個空格.)

  • 啟用某服務 sc config (服務名稱)start= auto (說明:auto-自動、demand-手動)

3. 如何用CMD命令停止,啟用,禁用某服務

啟動某服務 net start (服務名稱)

停止某服務 net stop (服務名稱)

禁用某服務 sc config (服務名稱)start= disabled

(注意:專start=後面有一個空格屬.)

啟用某服務 sc config (服務名稱)start= auto

(說明:auto-自動、demand-手動)

4. 如何使用CMD命令開啟已禁用的服務

net和sc, net用於打開沒有被禁用的服務,語法是:啟動net start服務名停止net stop服務名用sc可打開被禁用的服務,語法是:sc config服務名start=demand//手動sc condig服務名start=auto//自動sc config服務名start= disabled//禁用sc start服務名scstop服務名註:1)服務名不一定是你在服務面板看到的那個名,例如,你要打開被禁用的telnet服務, sc config telnet start= auto, 報錯:[SC] OpenService FAILED 1060 ,因為telnet的服務名不是telnet而是tlntsvr, sc config tlntsvr start=auto就OK了,在服務面板里查看telnet屬性,從可執行文件的路徑里可看到服務程序名,即命令中的服務名。2)start=後面有空格,少了就有錯sc.exe命令功能列表:註:以下命令中。=號後面都有一個空格,=號前面沒有空格!1. 更改服務的啟動狀態(這是比較有用的一個功能)2. 刪除服務(除非對自己電腦的軟、硬體所需的服務比較清楚,否則不建議刪除任何系統服務,特別是基礎服務)3. 停止或啟動服務(功能上類似於netstop/start ,但速度更快且能停止的服務更多) 具體的命令格式如下: 修改服務啟動類型的命令行格式為(特別注意start=後面有一個空格)sc config服務名稱start= demand( 設置服務為手動啟動)sc config服務名稱start= disabled( 設置服務為禁用)停止/啟動服務的命令行格式為 sc stop/start服務名稱 注意:平時常接觸的都是服務的顯示名稱,而以上所指是服務名稱,都可以在控制面板-管理工具-服務裡面,雙擊對應的服務來查詢。 先舉例說明一下具體的設置方法: 如設置遠程注冊表服務為手動其格式為sc config RemoteRegistry start= demand 設為禁用的格式為:sc config RemoteRegistry start= disabled 停止服務則格式為:sc stop RemoteRegistry 首先把自己所需設置的服務名稱查到之後,按照上面的格式做成批處理文件,重裝系統之後只要運行批處理文件即可。 以下是我的設置,以XpSp2為藍本,可比對所用的系統進行增刪和修改。註:未加入XpSp2的自動更新、安全中心、防火牆。sc config Alerter start= demandsc config TrkWks start= demandsc config helpsvc start= demandsc config policyAgent start= demandsc config dmserver start= demandsc config WmdmpmSn start= demandsc config Spooler start= demandsc config RemoteRegistry start= demandsc config NtmsSvc start= demandsc config seclogon start= demandsc config Schele start= demandsc config WebClient start= demandsc config W32Time start= demandsc config WZCSVC start=demandsc config ERSvc start= demandsc config Themes start= demandsc config FastUserSwitchingCompati bility start=disabledsc config Messenger start= disabledsc config protectedStorage start=disabledsc configSSDpSRV start= disabledsc config TermService start= disabledsc config ShellHWDetection start= disabled 如果需要立即關閉服務也可把以下代碼跟在上面的代碼之後sc stop W32Timesc stop ShellHWDetectionsc stop TrkWkssc stophelpsvcsc stopdmserversc stoppolicyAgentsc stop Spoolersc stop RemoteRegistrysc stop seclogonsc stop Schelesc stop WZCSVCsc stopERSvcsc stop Themessc stop stop protectedStoragesc stop SSDpSRVsc stop WebClient 最後把修改好之後的代碼存為

5. 如何使用CMD命令行啟動系統某項服務

運行里啟動『服務』的命令是:services.msc (本地服務)
1、開始 - 運行輸入services.msc;

2、點擊確定或按下鍵盤上的Enter回車鍵,就可以打開服務(本地)。

6. 用CMD啟動服務

新建文本
寫入
sc config RemoteAccess start= auto
net start RemoteAccess
另存為 1.bat
雙擊這個bat即可!

7. 那位大知道在cmd中 用那個命令打開server服務

CMD運行指令

開始→運行→CMD→鍵入以下命令即可:
accwiz.exe > 輔助工具向導
acsetups.exe > acs setup dcom server executable
actmovie.exe > 直接顯示安裝工具
append.exe > 允許程序打開制定目錄中的數據
arp.exe > 顯示和更改計算機的ip與硬體物理地址的對應列表
at.exe > 計劃運行任務
atmadm.exe > 調用管理器統計
attrib.exe > 顯示和更改文件和文件夾屬性
autochk.exe > 檢測修復文件系統
autoconv.exe > 在啟動過程中自動轉化系統
autofmt.exe > 在啟動過程中格式化進程
autolfn.exe > 使用長文件名格式
bootok.exe > boot acceptance application for registry
bootvrfy.exe > 通報啟動成功
cacls.exe > 顯示和編輯acl
calc.exe > 計算器
cdplayer.exe > cd播放器
change.exe > 與終端伺服器相關的查詢
charmap.exe > 字元映射表
chglogon.exe > 啟動或停用會話記錄
chgport.exe > 改變埠(終端服務)
chgusr.exe > 改變用戶(終端服務)
chkdsk.exe > 磁碟檢測程序
chkntfs.exe > 磁碟檢測程序
cidaemon.exe > 組成ci文檔服務
cipher.exe > 在ntfs上顯示或改變加密的文件或目錄
cisvc.exe > 索引內容
ckcnv.exe > 變換cookie
cleanmgr.exe > 磁碟清理
cliconfg.exe > sql客戶網路工具
clipbrd.exe > 剪貼簿查看器
clipsrv.exe > 運行clipboard服務
clspack.exe > 建立系統文件列表清單
cluster.exe > 顯示域的集群
_cmd_.exe > 沒什麼好說的!
cmdl32.exe > 自動下載連接管理
cmmgr32.exe > 連接管理器
cmmon32.exe > 連接管理器監視
cmstp.exe > 連接管理器配置文件安裝程序
comclust.exe > 集群
comp.exe > 比較兩個文件和文件集的內容*
compact.exe > 顯示或改變ntfs分區上文件的壓縮狀態
conime.exe > ime控制台
control.exe > 控制面板
convert.exe > 轉換文件系統到ntfs
convlog.exe > 轉換iis日誌文件格式到ncsa格式
cprofile.exe > 轉換顯示模式
cscript.exe > 較本宿主版本
csrss.exe > 客戶伺服器runtime進程
csvde.exe > 日至格式轉換程序
dbgtrace.exe > 和terminal server相關
dcomcnfg.exe > dcom配置屬性
dcphelp.exe > ?
dcpromo.exe > ad安裝向導
ddeshare.exe > dde共享
ddmprxy.exe >
debug.exe > 就是debug啦!
dfrgfat.exe > fat分區磁碟碎片整理程序
dfrgntfs.exe > ntfs分區磁碟碎片整理程序
dfs_cmd_.exe > 配置一個dfs樹
dfsinit.exe > 分布式文件系統初始化
dfssvc.exe > 分布式文件系統伺服器
diantz.exe > 製作cab文件
diskperf.exe > 磁碟性能計數器
dllhost.exe > 所有com+應用軟體的主進程
dllhst3g.exe >
dmadmin.exe > 磁碟管理服務
dmremote.exe > 磁碟管理服務的一部分
dns.exe > dns applications dns
doskey.exe > 命令行創建宏
dosx.exe > dos擴展
dplaysvr.exe > 直接運行幫助
drwatson.exe > 華生醫生錯誤檢測
drwtsn32.exe > 華生醫生顯示和配置管理
dtcsetup.exe > installs mdtc
dvdplay.exe > dvd播放
dxdiag.exe > direct-x診斷工具
edlin.exe > 命令行的文本編輯器(歷史悠久啊!)
edlin.exe > 命令行的文本編輯器(歷史悠久啊!)
esentutl.exe > ms資料庫工具
eudcedit.exe > type造字程序
eventvwr.exe > 事件查看器
evnt_cmd_.exe > event to trap translator; configuration tool
evntwin.exe > event to trap translator setup
exe2bin.exe > 轉換exe文件到二進制
expand.exe > 解壓縮
extrac32.exe > 解cab工具
fastopen.exe > 快速訪問在內存中的硬碟文件
faxcover.exe > 傳真封面編輯
faxqueue.exe > 顯示傳真隊列
faxsend.exe > 發送傳真向導
faxsvc.exe > 啟動傳真服務
fc.exe > 比較兩個文件的不同
find.exe > 查找文件中的文本行
findstr.exe > 查找文件中的行
finger.exe > 一個用戶並顯示出統計結果
fixmapi.exe > 修復mapi文件
flattemp.exe > 允許或者禁用臨時文件目錄
fontview.exe > 顯示字體文件中的字體
forcedos.exe > forces a file to start in dos mode. 強制文件在dos模式下運行
freecell.exe > popular windows game 空當接龍
ftp.exe > file transfer protocol used to transfer files over a network conne
ction 就是ftp了
gdi.exe > graphic device interface 圖形界面驅動
grovel.exe >
grpconv.exe > program manager group convertor 轉換程序管理員組
help.exe > displays help for windows 2000 commands 顯示幫助
hostname.exe > display hostname for machine. 顯示機器的hostname
ie4uinit.exe > ie5 user install tool ie5用戶安裝工具
ieshwiz.exe > customize folder wizard 自定義文件夾向導
iexpress.exe > create and setup packages for install 穿件安裝包
iisreset.exe > restart iis admin service 重啟iis服務
internat.exe > keyboard language indicator applet 鍵盤語言指示器
ipconfig.exe > windows 2000 ip configuration. 察看ip配置
ipsecmon.exe > ip security monitor ip安全監視器
ipxroute.exe > ipx routing and source routing control program ipx路由和源路由
控製程序
irftp.exe > setup ftp for wireless communication 無線連接
ismserv.exe > intersite messaging service 安裝或者刪除service control manage
r中的服務
jdbgmgr.exe > microsoft debugger for java 4 java4的調試器
jetconv.exe > convert a jet engine database 轉換jet engine資料庫
jetpack.exe > compact jet database. 壓縮jet資料庫
jview.exe > command-line loader for java java的命令行裝載者
krnl386.exe > core component for windows 2000 2000的核心組件
label.exe > change label for drives 改變驅動器的卷標
lcwiz.exe > license compliance wizard for local or remote systems. 許可證符合
向導
ldifde.exe > ldif cmd line manager ldif目錄交換命令行管理
licmgr.exe > terminal server license manager 終端服務許可協議管理
lights.exe > display connection status lights 顯示連接狀況
llsmgr.exe > windows 2000 license manager 2000許可協議管理
llssrv.exe > start the license server 啟動許可協議伺服器
lnkstub.exe >
locator.exe > rpc locator 遠程定位
lodctr.exe > load perfmon counters 調用性能計數
logoff.exe > log current user off. 注銷用戶
lpq.exe > displays status of a remote lpd queue 顯示遠端的lpd列印隊列的狀態,
顯示被送到基於unix的伺服器的列印任務
lpr.exe > send a print job to a network printer. 重定向列印任務到網路中的列印
機。通常用於unix客戶列印機將列印任務發送給連接了列印設備的nt的列印機伺服器。

lsass.exe > lsa executable and server dll 運行lsa和server的dll
lserver.exe > specifies the new dns domain for the default server 指定默認se
rver新的dns域
os2.exe > an os/2 warp server (os2 /o) os/2
os2srv.exe > an os/2 warp server os/2
os2ss.exe > an os/2 warp server os/2
osk.exe > on screen keyboard 屏幕鍵盤
packager.exe > windows 2000 packager manager 對象包裝程序
pathping.exe > combination of ping and tracert 包含ping和tracert的程序
pax.exe > is a posix program and path names used as arguments must be specif
ied in posix format. use "//c/users/default" instead of "c:usersdefault."
啟動攜帶型存檔互換 (pax) 實用程序
pentnt.exe > used to check the pentium for the floating point division error
. 檢查pentium的浮點錯誤
perfmon.exe > starts windows performance monitor 性能監視器
ping.exe > packet internet groper 驗證與遠程計算機的連接
posix.exe > used for backward compatibility with unix 用於兼容unix
print.exe > cmd line used to print files 列印文本文件或顯示列印隊列的內容。
progman.exe > program manager 程序管理器
proquota.exe > profile quota program
psxss.exe > posix subsystem application posix子系統應用程序
qappsrv.exe > displays the available application terminal servers on the net
work
在網路上顯示終端伺服器可用的程序
qprocess.exe > display information about processes local or remote 在本地或遠
程顯示進程的信息(需終端服務)
query.exe > query termserver user process and sessions 查詢進程和對話
quser.exe > display information about a user logged on 顯示用戶登陸的信息(需
終端服務)
qwinsta.exe > display information about terminal sessions. 顯示終端服務的信息

rasadmin.exe > start the remote access admin service 啟動遠程訪問服務
rasautou.exe > creates a ras connection 建立一個ras連接
rasdial.exe > dial a connection 撥號連接
ras.exe > starts a ras connection 運行ras連接
rcp.exe > copies a file from and to a rcp service. 在 windows 2000 計算機和運
行遠程外殼埠監控程序 rshd 的系統之間復制文件
rdpclip.exe > rdpclip allows you to and paste files between a terminal
session and client console session. 再終端和本地復制和粘貼文件
recover.exe > recovers readable information from a bad or defective disk 從壞
的或有缺陷的磁碟中恢復可讀取的信息。
redir.exe > starts the redirector service 運行重定向服務
regedt32.exe > 32-bit register service 32位注冊服務
regini.exe > modify registry permissions from within a script 用腳本修改注冊
許可
register.exe > register a program so it can have special execution character
istics. 注冊包含特殊運行字元的程序
regsvc.exe >
regsvr32.exe > registers and unregister's dll's. as to how and where it regi
ster's them i dont know. 注冊和反注冊dll
regtrace.exe > options to tune debug options for applications failing to m
p trace statements
trace 設置
regwiz.exe > registration wizard 注冊向導
remrras.exe >
replace.exe > replace files 用源目錄中的同名文件替換目標目錄中的文件。
reset.exe > reset an active section 重置活動部分
rexec.exe > runs commands on remote hosts running the rexec service. 在運行
rexec 服務的遠程計算機上運行命令。rexec 命令在執行指定命令前,驗證遠程計算機
上的用戶名,只有安裝了 tcp/ip 協議後才可以使用該命令。
risetup.exe > starts the remote installation service wizard. 運行遠程安裝向導
服務
route.exe > display or edit the current routing tables. 控制網路路由表
routemon.exe > no longer supported 不再支持了!
router.exe > router software that runs either on a dedicated dos or on an os
/2 system. route軟體在 dos或者是os/2系統
rsh.exe > runs commands on remote hosts running the rsh service 在運行 rsh 服
務的遠程計算機上運行命令
rsm.exe > mounts and configures remote system media 配置遠程系統媒體
rsnotify.exe > remote storage notification recall 遠程存儲通知回顯
rsvp.exe > resource reservation protocol 源預約協議
runas.exe > run a program as another user 允許用戶用其他許可權運行指定的工具和
程序
rundll32.exe > launches a 32-bit dll program 啟動32位dll程序
runonce.exe > causes a program to run ring startup 運行程序再開始菜單中
rwinsta.exe > reset the session subsystem hardware and software to known ini
tial values 重置會話子系統硬體和軟體到最初的值
savemp.exe > does not write to e:winntuser.dmp 不寫入user.dmp中
scardsvr.exe > smart card resource management server 子能卡資源管理伺服器
schupgr.exe > it will read the schema update files (.ldf files) and upgrade
the schema. (part of adsi) 讀取計劃更新文件和更新計劃
secedit.exe > starts security editor help 自動安全性配置管理
services.exe > controls all the services 控制所有服務
sethc.exe > set high contrast - changes colours and display mode logoff to s
et it back to normal 設置高對比
setreg.exe > shows the software publishing state key values 顯示軟體發布的國
家語言
setup.exe > gui box prompts you to goto control panel to configure system co
mponents 安裝程序(轉到控制面板)
setver.exe > set version for files 設置 ms-dos 子系統向程序報告的 ms-dos 版本

sfc.exe > system file checker test and check system files for integrity 系統
文件檢查
sfmprint.exe > print services for macintosh 列印macintosh服務
sfmpsexe.exe >
sfmsvc.exe >
shadow.exe > monitor another terminal services session. 監控另外一台中端服務
器會話
share.exe > windows 2000 和 ms-dos 子系統不使用該命令。接受該命令只是為了與
ms-dos 文件兼容
shmgrate.exe >
shrpubw.exe > create and share folders 建立和共享文件夾
sigverif.exe > file signature verification 文件簽名驗證
skeys.exe > serial keys utility 序列號製作工具
smlogsvc.exe > performance logs and alerts 性能日誌和警報
smss.exe >
sndrec32.exe > starts the windows sound recorder 錄音機
sndvol32.exe > display the current volume information 顯示聲音控制信息
snmp.exe > simple network management protocol used for network mangement 簡單
網路管理協議
snmptrap.exe > utility used with snmp snmp工具
sol.exe > windows solitaire game 紙牌
sort.exe > compares files and folders 讀取輸入、排序數據並將結果寫到屏幕、文
件和其他設備上
SPOOLSV.EXE > Part of the spooler service for printing 列印池服務的一部分
sprestrt.exe >
srvmgr.exe > Starts the Windows Server Manager 伺服器管理器
stimon.exe > WDM StillImage- > Monitor
stisvc.exe > WDM StillImage- > Service
subst.exe > Associates a path with a drive letter 將路徑與驅動器盤符關聯
svchost.exe > Svchost.exe is a generic host process name for services that a
re run from dynamic-link libraries (DLLs). DLL得主進程
syncapp.exe > Creates Windows Briefcase. 創建Windows文件包
sysedit.exe > Opens Editor for 4 system files 系統配置編輯器
syskey.exe > Encrypt and secure system database NT賬號資料庫按群工具
sysocmgr.exe > Windows 2000 Setup 2000安裝程序
systray.exe > Starts the systray in the lower right corner. 在低許可權運行syst
ray
macfile.exe > Used for managing MACFILES 管理MACFILES
magnify.exe > Used to magnify the current screen 放大鏡
makecab.exe > MS Cabinet Maker 製作CAB文件
mdm.exe > Machine Debug Manager 機器調試管理
mem.exe > Display current Memory stats 顯示內存狀態
migpwd.exe > Migrate passwords. 遷移密碼
mmc.exe > Microsoft Management Console 控制台
mnmsrvc.exe > Netmeeting Remote Desktop Sharing NetMeeting遠程桌面共享
mobsync.exe > Manage Synchronization. 同步目錄管理器
mountvol.exe > Creates, deletes, or lists a volume mount point. 創建、刪除或
列出卷的裝入點。
mplay32.exe > MS Media Player 媒體播放器
mpnotify.exe > Multiple Provider Notification application 多提供者通知應用程

mq1sync.exe >
mqbkup.exe > MS Message Queue Backup and Restore Utility 信息隊列備份和恢復工

mqexchng.exe > MSMQ Exchange Connector Setup 信息隊列交換連接設置
mqmig.exe > MSMQ Migration Utility 信息隊列遷移工具
mqsvc.exe > ?
mrinfo.exe > Multicast routing using SNMP 使用SNMP多點傳送路由
mscdexnt.exe > Installs MSCD (MS CD Extensions) 安裝MSCD
msdtc.exe > Dynamic Transaction Controller Console 動態事務處理控制台
msg.exe > Send a message to a user local or remote. 發送消息到本地或遠程客戶

mshta.exe > HTML Application HOST HTML應用程序主機
msiexec.exe > Starts Windows Installer Program 開始Windows安裝程序
mspaint.exe > Microsoft Paint 畫板
msswchx.exe >
mstask.exe > Task Schele Program 任務計劃表程序
mstinit.exe > Task scheler setup 任務計劃表安裝
narrator.exe > Program will allow you to have a narrator for reading. Micros
oft講述人
nbtstat.exe > Displays protocol stats and current TCP/IP connections using N
BT 使用 NBT(TCP/IP 上的 NetBIOS)顯示協議統計和當前 TCP/IP 連接。
nddeapir.exe > NDDE API Server side NDDE API伺服器端
net.exe > Net Utility 詳細用法看/?
net1.exe > Net Utility updated version from MS Net的升級版
netdde.exe > Network DDE will install itself into the background 安裝自己到後

netsh.exe > Creates a shell for network information 用於配置和監控 Windows 2
000 命令行腳本介面。
netstat.exe > Displays current connections. 顯示協議統計和當前的 TCP/IP 網路
連接。
nlsfunc.exe > Loads country-specific information 載入特定國家(地區)的信息。
Windows 2000 和 MS-DOS 子系統不使用該命令。接受該命令只是為了與 MS-DOS 文件兼
容。
notepad.exe > Opens Windows 2000 Notepad 記事本
nslookup.exe > Displays information for DNS 該診斷工具顯示來自域名系統 (DNS)
名稱伺服器的信息。
ntbackup.exe > Opens the NT Backup Utility 備份和故障修復工具
ntbooks.exe > Starts Windows Help Utility 幫助
ntdsutil.exe > Performs DB maintenance of the ADSI 完成ADSI的DB的維護
ntfrs.exe > NT File Replication Service NT文件復制服務
ntfrsupg.exe >
ntkrnlpa.exe > Kernel patch 核心補丁
ntoskrnl.exe > Core NT Kernel KT的核心
ntsd.exe >
ntvdm.exe > Simulates a 16-bit Windows environment 模擬16位Windows環境
nw16.exe > Netware Redirector NetWare轉向器
nwscript.exe > runs netware scripts 運行Netware腳本
odbcad32.exe > ODBC 32-bit Administrator 32位ODBC管理
odbcconf.exe > Configure ODBC driver's and data source's from command line 命
令行配置ODBC驅動和數據源
taskman.exe > Task Manager 任務管理器
taskmgr.exe > Starts the Windows 2000 Task Manager 任務管理器
tcmsetup.exe > telephony client wizard 電話服務客戶安裝
tcpsvcs.exe > TCP Services TCP服務
.exe > Telnet Utility used to connect to Telnet Server
termsrv.exe > Terminal Server 終端服務
tftp.exe > Trivial FTP 將文件傳輸到正在運行 TFTP 服務的遠程計算機或從正在運行
TFTP 服務的遠程計算機傳輸文件
tftpd.exe > Trivial FTP Daemon
themes.exe > Change Windows Themes 桌面主題
tlntadmn.exe > Telnet Server Administrator Telnet服務管理
tlntsess.exe > Display the current Telnet Sessions 顯示目前的Telnet會話
tlntsvr.exe > Start the Telnet Server 開始Telnet服務
tracert.exe > Trace a route to display paths 該診斷實用程序將包含不同生存時間
(TTL) 值的 Internet 控制消息協議 (ICMP) 回顯數據包發送到目標,以決定到達目標
採用的路由
tsadmin.exe > Terminal Server Administrator 終端服務管理器
tscon.exe > Attaches a user session to a terminal session. 粘貼用戶會話到終端
對話
tsdiscon.exe > Disconnect a user from a terminal session 斷開終端服務的用戶
tskill.exe > Kill a Terminal server process 殺掉終端服務
tsprof.exe > Used with Terminal Server to query results. 用終端服務得出查詢結

tsshutdn.exe > Shutdown the system 關閉系統
unlodctr.exe > Part of performance monitoring 性能監視器的一部分
upg351db.exe > Upgrade a jet database 升級Jet資料庫
ups.exe > UPS service UPS服務
user.exe > Core Windows Service Windows核心服務
userinit.exe > Part of the winlogon process Winlogon進程的一部分
usrmgr.exe > Start the windows user manager for domains 域用戶管理器
utilman.exe > This tool enables an administrator to designate which computers automatically open accessibility tools when Windows 2000 starts. 指定2000啟動時自動打開那台機器
verifier.exe > Driver Verifier Manager Driver Verifier Manager
vwipxspx.exe > Loads IPX/SPX VDM 調用IPX/SPX VDM
w32tm.exe > Windows Time Server 時間伺服器
wextract.exe > Used to extract windows files 解壓縮Windows文件
winchat.exe > Opens Windows Chat 打開Windows聊天
winhlp32.exe > Starts the Windows Help System 運行幫助系統
winlogon.exe > Used as part of the logon process. Logon進程的一部分
winmine.exe > windows Game 挖地雷
winmsd.exe > Windows Diagnostic utility 系統信息
wins.exe > Wins Service Wins服務
winspool.exe > Print Routing 列印路由
winver.exe > Displays the current version of Windows 顯示Windows版本
wizmgr.exe > Starts Windows Administration Wizards Windows管理向導
wjview.exe > Command line loader for Java 命令行調用Java
wowdeb.exe > . For starters, the 32-bit APIs require that the WOWDEB.EXE tas
k runs in the target debugee's VM 啟動時,32位API需要
wowexec.exe > For running Windows over Windows Applications 在Windows應用程序
上運行Windows
wpnpinst.exe > ?
write.exe > Starts MS Write Program 寫字板
wscript.exe > Windows Scripting Utility 腳本工具
wupdmgr.exe > Starts the Windows update Wizard (Internet) 運行Windows升級向導
x.exe > 復制文件和目錄,包括子目錄

熱點內容
影視轉載限制分鍾 發布:2024-08-19 09:13:14 瀏覽:319
韓國電影傷口上紋身找心裡輔導 發布:2024-08-19 09:07:27 瀏覽:156
韓國電影集合3小時 發布:2024-08-19 08:36:11 瀏覽:783
有母乳場景的電影 發布:2024-08-19 08:32:55 瀏覽:451
我准備再看一場電影英語 發布:2024-08-19 08:14:08 瀏覽:996
奧迪a8電影叫什麼三個女救人 發布:2024-08-19 07:56:14 瀏覽:513
邱淑芬風月片全部 發布:2024-08-19 07:53:22 瀏覽:341
善良媽媽的朋友李采潭 發布:2024-08-19 07:33:09 瀏覽:760
哪裡還可以看查理九世 發布:2024-08-19 07:29:07 瀏覽:143
看電影需要多少幀數 發布:2024-08-19 07:23:14 瀏覽:121