createservice(100分)

  • 主题发起人 主题发起人 bin_star
  • 开始时间 开始时间
B

bin_star

Unregistered / Unconfirmed
GUEST, unregistred user!
请教NT中createservice,startservice等的用法。<br>我想将我的应用程序(.exe)加入NT的服务中。
 
Delphi 4中有相应的类和向导
 
如果仅仅是要API的用法,帮助里已经很详细,各个参数的用法也很清楚.<br>
 
*先在New中選Service Application來建立應用程式<br>*這時它會自動產生一個NT資料模組。<br>&nbsp;若是要用MIDAS請記得另外再建立遠端資料模組。<br>*接著像撰寫一般應用程式伺服器一樣,再編譯完成。<br>*最後要註冊,請在DOS BOX之中鍵入下面的命令<br>&nbsp;"應用程式伺服器程式名稱-install"。<br>&nbsp;例: 名稱: PDBServer 則鍵入 PDBServer-install。<br>*這樣就行了!
 
谢谢各位,我的本意是将一个程序设为服务。如把c:/winnt/notepad.exe加入到<br>SERVICE中,有没有办法?
 
I don't thin it is possible to put notepad.exe into a service. A <br>service program must support net work and support multithreads.<br><br>Notepad.exe is not a service application. If you really want to make<br>it a service app, you have to write a Service program which can <br>communicate with Notepad.exe.<br><br>It is easier to write a new application to simulate the notepade <br>functions than wrap a notepade.exe.
 
谢谢各位。
 
多人接受答案了。
 
后退
顶部