2011-07-25 40 views
5

我的重點是Web服務器。如何使用命令行更改啓動類型的Windows服務

Apache Web服務器確實在自動類型(httpd -k install)中安裝服務,並且Apache沒有提供用於以手動類型安裝服務的參數(如MySQL:)。

我讀了一些關於SCC:\Windows\System32\sc.exe),並試圖用SC改變它,但我不能。那麼解決方案是什麼?

回答

12

SC應該能夠處理這個問題,你會得到任何錯誤?

這將啓動類型設置爲手動,一個叫「阿帕奇」服務:

SC \\computername CONFIG apache start= demand 
+2

是的,它的工作原理。我的錯誤是在_start = demand_部分,我沒有在等號後放置空格。謝謝。 – Mamadex

0

我只是套用同樣的目的--change WIN服務啓動METHOD--在遠程機器上..

C:\MrCMD> REG QUERY \\RemoteHostName\HKLM\SYSTEM\CurrentControlSet\Services\WUAUServ 

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WUAUServ 
    Type REG_DWORD 0x20 
    Start REG_DWORD 0x2 
    ErrorControl REG_DWORD 0x1 
    ImagePath REG_EXPAND_SZ %systemroot%\system32\svchost.exe -k netsvcs 
    DisplayName REG_SZ Automatic Updates 
    ObjectName REG_SZ LocalSystem 
    Description REG_SZ Enables the download and installation of Windows updates. If this service is disabled, this computer will not be able to use the Automatic Updates feature or the Windows Update Web site. 

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WUAUServ\Parameters 
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WUAUServ\Security 
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WUAUServ\Enum 

┌─────────────────────────────────────┐ 
│ Executed Mon 01/14/2013 14:27:15.31 │ As [MrCMD] 
└─────────────────────────────────────┘ 

C:\MrCMD> REG ADD \\RemoteHostName\HKLM\SYSTEM\CurrentControlSet\Services\wuauserv /V Start /T REG_DWORD /d 0x3 
Value Start exists, overwrite(Yes/No)? y 
The operation completed successfully. 

┌─────────────────────────────────────┐ 
│ Executed Mon 01/14/2013 14:29:57.72 │ As [MrCMD] 
└─────────────────────────────────────┘ 

C:\MrCMD> REG QUERY \\RemoteHostName\HKLM\SYSTEM\CurrentControlSet\Services\WUAUServ 

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WUAUServ 
    Type REG_DWORD 0x20 
    Start REG_DWORD 0x3 
    ErrorControl REG_DWORD 0x1 
    ImagePath REG_EXPAND_SZ %systemroot%\system32\svchost.exe -k netsvcs 
    DisplayName REG_SZ Automatic Updates 
    ObjectName REG_SZ LocalSystem 
    Description REG_SZ Enables the download and installation of Windows updates. If this service is disabled, this computer will not be able to use the Automatic Updates feature or the Windows Update Web site. 

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WUAUServ\Parameters 
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WUAUServ\Security 
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WUAUServ\Enum 

┌─────────────────────────────────────┐ 
│ Executed Mon 01/14/2013 14:30:37.80 │ As [MrCMD] 
└─────────────────────────────────────┘ 

這就是所有人.. :)

相關問題