標籤:powershell new-service
舊伺服器要淘汰,上面的自訂的Windows服務要遷移:
一、建立服務
(1)將自訂的Windows服務所需要的檔案複製到新伺服器上;
(2)使用powershell在新伺服器上建立新的Windows服務,命令如下:
new-service –Name OrderService –DisplayName OrderService –BinaryPathName “D:\order\OrderService.exe” –StartupType Automatic
650) this.width=650;" style="border-bottom:0px;border-left:0px;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://img1.51cto.com/attachment/201407/31/907015_1406789319Tm8e.png" height="123" />
(3)檢查建立成功;
650) this.width=650;" style="border-bottom:0px;border-left:0px;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://img1.51cto.com/attachment/201407/31/907015_14067893205gjx.png" height="39" />
二、刪除服務
(1)如果發現在建立的過程中有誤,可以使用以下的命令對建立的服務進行刪除並重建;
sc delete OrderService
New-Service命令的詳細介紹,參見網址:http://technet.microsoft.com/zh-cn/library/hh849830.aspx
本文出自 “緣隨心愿” 部落格,請務必保留此出處http://281816327.blog.51cto.com/907015/1533269