Windows command line process killer written in Microsoft Macro Assembler (MASM)
- MASM => http://www.masm32.com/
- Microsoft Visual C++ 2005 Express Edition => https://www.microsoft.com/en-us/download/details.aspx?id=804
- Current MASM version apparently have a bug in ASCII versions of kernel32.lib entries such as Process32First or Process32Next. Therefore, make sure that you use kernel32.lib from libraries that belong to Visual C++ not MASM.
$ ml /c /coff /Cp killproc.asm
$ link /SUBSYSTEM:CONSOLE /LIBPATH:c:\masm32\lib killproc.obj
$ killproc [ProcessName].exe
$ killproc notepad.exe