71

ユーザーが Microsoft Word を既に開いているかどうかを確認する必要があるシナリオがあります。彼が持っている場合は、winword.exe プロセスを強制終了して、コードの実行を続行する必要があります。

vb.netまたはc#を使用してプロセスを強制終了するための簡単なコードはありますか?

4

10 に答える 10

97

System.Diagnostics.Process.Killメソッドを使用する必要があります。System.Diagnostics.Process.GetProcessesByNameを使用して、必要なプロセスを取得できます 。

例は既にここに投稿されていますが、非 .exe バージョンの方がうまく機能することがわかったので、次のようにします。

foreach ( Process p in System.Diagnostics.Process.GetProcessesByName("winword") )
{
    try
    {
        p.Kill();
        p.WaitForExit(); // possibly with a timeout
    }
    catch ( Win32Exception winException )
    {
        // process was terminating or can't be terminated - deal with it
    }
    catch ( InvalidOperationException invalidException )
    {
        // process has already exited - might be able to let this one go
     }
}

おそらく に対処する必要はありませんNotSupportedException。これは、プロセスがリモートであることを示唆しています。

于 2008-09-22T17:00:44.063 に答える
28

Word プロセスを完全に強制終了することは可能ですが (他の回答のいくつかを参照してください)、まったく失礼で危険です: ユーザーが開いているドキュメントに重要な変更を保存していない場合はどうなりますか? これが残す古い一時ファイルは言うまでもありません...

これはおそらく、この点で可能な限りです(VB.NET):

    Dim proc = Process.GetProcessesByName("winword")
    For i As Integer = 0 To proc.Count - 1
        proc(i).CloseMainWindow()
    Next i

これにより、開いているすべての Word ウィンドウが順番に閉じられます (該当する場合は、作業内容を保存するようにユーザーに促します)。もちろん、ユーザーはこのシナリオでいつでも [キャンセル] をクリックできるため、このケースも処理できるはずです (できれば、「すべての Word インスタンスを閉じてください。そうしないと続行できません」というダイアログを表示することで... )

于 2008-09-22T17:10:00.517 に答える
15

以下は、すべてのワード プロセスを強制終了する方法の簡単な例です。

Process[] procs = Process.GetProcessesByName("winword");

foreach (Process proc in procs)
    proc.Kill();
于 2008-09-22T17:02:35.260 に答える
5

Wordプロセスが実行されているかどうかを確認し、ユーザーに閉じるように求めてから、アプリの[続行]ボタンをクリックするだけで、セキュリティ上の懸念を回避し、非常に洗練されたアプリケーションを作成できます。これは、多くのインストーラーが採用しているアプローチです。

private bool isWordRunning() 
{
    return System.Diagnostics.Process.GetProcessesByName("winword").Length > 0;
}

もちろん、これはアプリにGUIがある場合にのみ実行できます

于 2008-09-25T20:18:02.723 に答える
5
    public bool FindAndKillProcess(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 by using the StartsWith Method,
            //this prevents us from incluing the .EXE for the process we're looking for.
            //. 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
            if (clsProcess.ProcessName.StartsWith(name))
            {
                //since we found the proccess we now need to use the
                //Kill Method to kill the process. 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
                try 
                {
                    clsProcess.Kill();
                }
                catch
                {
                    return false;
                }
                //process killed, return true
                return true;
            }
        }
        //process not found, return false
        return false;
    }
于 2012-02-22T12:20:07.537 に答える
2

私のトレイ アプリでは、Excel と Word の相互運用をクリーンアップする必要がありました。したがって、この単純な方法はプロセスを一般的に強制終了します。

これは一般的な例外ハンドラーを使用しますが、他の回答に記載されているように、複数の例外に簡単に分割できます。ロギングで多くの誤検知が発生する場合 (つまり、既に殺されたものを殺すことができない場合)、これを行うことがあります。しかし、ここまでは GUID (仕事の冗談) です。

/// <summary>
/// Kills Processes By Name
/// </summary>
/// <param name="names">List of Process Names</param>
private void killProcesses(List<string> names)
{
    var processes = new List<Process>();
    foreach (var name in names)
        processes.AddRange(Process.GetProcessesByName(name).ToList());
    foreach (Process p in processes)
    {
        try
        {
            p.Kill();
            p.WaitForExit();
        }
        catch (Exception ex)
        {
            // Logging
            RunProcess.insertFeedback("Clean Processes Failed", ex);
        }
    }
}

これは私がそれを呼んだ方法です:

killProcesses((new List<string>() { "winword", "excel" }));
于 2016-12-08T14:27:11.467 に答える
1

このようなものが動作します:

foreach ( Process process in Process.GetProcessesByName( "winword" ) )
{
    process.Kill();
    process.WaitForExit();
}
于 2008-09-22T17:02:42.670 に答える
0

プロセスが実行されているかどうかを検出し、ユーザーに手動で閉じるように指示する方が、より適切で安全で礼儀正しい方法です。もちろん、タイムアウトを追加して、プロセスがなくなった場合はプロセスを強制終了することもできます...

于 2013-11-21T11:30:06.797 に答える
-2

以下の例を参照してください

public partial class Form1 : Form
{
    [ThreadStatic()]
    static Microsoft.Office.Interop.Word.Application wordObj = null;

    public Form1()
    {
        InitializeComponent();
    }

    public bool OpenDoc(string documentName)
    {
        bool bSuccss = false;
        System.Threading.Thread newThread;
        int iRetryCount;
        int iWait;
        int pid = 0;
        int iMaxRetry = 3;

        try
        {
            iRetryCount = 1;

        TRY_OPEN_DOCUMENT:
            iWait = 0;
            newThread = new Thread(() => OpenDocument(documentName, pid));
            newThread.Start();

        WAIT_FOR_WORD:
            Thread.Sleep(1000);
            iWait = iWait + 1;

            if (iWait < 60) //1 minute wait
                goto WAIT_FOR_WORD;
            else
            {
                iRetryCount = iRetryCount + 1;
                newThread.Abort();

                //'-----------------------------------------
                //'killing unresponsive word instance
                if ((wordObj != null))
                {
                    try
                    {
                        Process.GetProcessById(pid).Kill();
                        Marshal.ReleaseComObject(wordObj);
                        wordObj = null;
                    }
                    catch (Exception ex)
                    {
                    }
                }

                //'----------------------------------------
                if (iMaxRetry >= iRetryCount)
                    goto TRY_OPEN_DOCUMENT;
                else
                    goto WORD_SUCCESS;
            }
        }
        catch (Exception ex)
        {
            bSuccss = false;
        }
    WORD_SUCCESS:

        return bSuccss;
    }

    private bool OpenDocument(string docName, int pid)
    {
        bool bSuccess = false;
        Microsoft.Office.Interop.Word.Application tWord;
        DateTime sTime;
        DateTime eTime;

        try
        {
            tWord = new Microsoft.Office.Interop.Word.Application();
            sTime = DateTime.Now;
            wordObj = new Microsoft.Office.Interop.Word.Application();
            eTime = DateTime.Now;
            tWord.Quit(false);
            Marshal.ReleaseComObject(tWord);
            tWord = null;
            wordObj.Visible = false;
            pid = GETPID(sTime, eTime);

            //now do stuff
            wordObj.Documents.OpenNoRepairDialog(docName);
            //other code

            if (wordObj != null)
            {
                wordObj.Quit(false);
                Marshal.ReleaseComObject(wordObj);
                wordObj = null;
            }
            bSuccess = true;
        }
        catch
        { }

        return bSuccess;
    }

    private int GETPID(System.DateTime startTime, System.DateTime endTime)
    {
        int pid = 0;

        try
        {
            foreach (Process p in Process.GetProcessesByName("WINWORD"))
            {
                if (string.IsNullOrEmpty(string.Empty + p.MainWindowTitle) & p.HasExited == false && (p.StartTime.Ticks >= startTime.Ticks & p.StartTime.Ticks <= endTime.Ticks))
                {
                    pid = p.Id;
                    break;
                }
            }
        }
        catch
        {
        }
        return pid;
    }
于 2015-03-25T19:29:48.053 に答える