(私たちは同様のことをしています)あなたはPostgres
このバッチファイルを使用してサービスにスターを付けます
"C:\Program Files\PostgreSQL\9.0\bin\pg_ctl.exe" -D "C:\Program Files\PostgreSQL\9.0\data" start
および[停止]サービスの場合
"C:\Program Files\PostgreSQL\9.0\bin\pg_ctl.exe" -D "C:\Program Files\PostgreSQL\9.0\data" stop
uが取得できるC:\Program Files\PostgreSQL\9.0\bin\pg_ctl.exe
インストールの場所はどこですかPostgreSQl
HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0
バッチファイルを実行してサービスが実際に実行されているかどうかを確認するときに、プロセス実行中のこのコードを使用して、実行されているかどうかを
確認postgres.exe
できます。
また、1。checking-if-windows-application-is-running
2.how -can-i-know-if-a-process-is-running
public bool IsProcessOpen(string name)
{
//here we're going to get a list of all running processes on
//the computer
foreach (Process clsProcess in Process.GetProcesses()) {
//now we're going to see if any of the running processes
//match the currently running processes. Be sure to not
//add the .exe to the name you provide, i.e: NOTEPAD,
//not NOTEPAD.EXE or false is always returned even if
//notepad is running.
//Remember, if you have the process running more than once,
//say IE open 4 times the loop thr way it is now will close all 4,
//if you want it to just close the first one it finds
//then add a return; after the Kill
if (clsProcess.ProcessName.Contains(name))
{
//if the process is found to be running then we
//return a true
return true;
}
}
//otherwise we return a false
return false;
}