Close all the windows of an application at once

C V Horie 20 Reputation points
2025-08-12T11:27:12.7766667+00:00

I have opened ca 25 files/windows to view them in WordPerfect. They were all obsolete file formats (ca 20 years old) so have been updated when opened. Each one is listed in TaskManager as a separate process.

I now want to close them all without changing the original files.

When I go Taskbar>Wordperfect>close all windows, I am asked if I want to save the file, for each one.

How can I tell Windows that I do want to close all windows without saving?

Windows for home | Windows 11 | Files, folders, and storage
0 comments No comments
{count} votes

Accepted answer
  1. Kimberly Olaño 4,560 Reputation points Independent Advisor
    2025-08-12T12:02:55.91+00:00

    Hi C, this is Kimberly. I'm glad to assist you today.

    Unfortunately, Windows itself doesn’t have a built-in “close all without saving” command, the prompt is coming from WordPerfect, not from Windows, and it’s deliberately there to prevent data loss.

    That means the only ways to bypass it are:

    1. Use WordPerfect’s own settings (if available) to disable the prompt

    Some older versions of WordPerfect have an option in Tools → Settings → Environment or Files to control the "Confirm save on close" behavior.

    If your version has such a setting, you could temporarily turn off the confirmation prompt, close all documents, then turn it back on.

    However, many versions don’t have this feature.

    2. Force-quit the processes from Task Manager

    If you’re absolutely sure you don’t want to save anything, you can:

    Open Task Manager (Ctrl + Shift + Esc)

    Go to the Details or Processes tab (depending on Windows version)

    Find each wpwin*.exe or WordPerfect process (you’ll see ~25 of them)

    Select them all (Ctrl-click or Shift-click), then press End Task.

    This will terminate WordPerfect instantly without saving changes — no prompts will appear.

    Warning: This is the software equivalent of yanking the power cord — you will lose any unsaved changes (which in your case is the goal).

    3. Command-line kill (faster for many windows)

    Instead of ending them one by one in Task Manager, you can run in Command Prompt or PowerShell:

    Command Prompt

    taskkill /IM wpwin*.exe /F

    PowerShell

    Stop-Process -Name "wpwin*" -Force

    This closes all running instances of WordPerfect instantly.

    4. Future prevention tip

    If you’ll do this again, consider opening such files in read-only mode (many programs, including WordPerfect, have “File → Open → Read-Only” checkboxes) so they won’t be marked as changed, and you can close them without prompts.

    Should you have more questions, please let me know.

    Best regards,

    Kimberly

    You found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.