使用 CMD 关闭多个 windows

Closing multiple windows with CMD

我一直在开发一个批处理文件程序,它可以打开多个 windows 然后同时关闭它们。我可以在 Windows 10 上使用 TASKKILL 命令同时关闭它们。我也想在 Windows XP Home SP3 上使用该程序,但它没有 TASKKILL 命令。所以我的总体问题是:有没有办法在没有任何第 3 方软件的情况下通过命令提示符在 Windows XP 上关闭多个 windows?另外,这是我正在使用的批处理代码:

@echo off
:init
cls
color 0f
title Test A1
start %RandomProgram%
ping localhost -n 10 >nul
start %RandomProgram%
ping localhost -n 10 >nul
start %RandomProgram%
ping localhost -n 10 >nul
start %RandomProgram%
ping localhost -n 10 >nul
start %RandomProgram%
ping localhost -n 15 >nul
::Close all the above windows here::

Squashman 是对的,

Windows XP has TSKILL