mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
13 lines
No EOL
304 B
JavaScript
13 lines
No EOL
304 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: BJNFNE <bjnfne@web.de>
|
|
|
|
// https://windows10dll.nirsoft.net/dwmapi_dll.html
|
|
meta("library", "Microsoft Desktop Window Manager API");
|
|
|
|
function detect() {
|
|
if (PE.isLibraryPresent("dwmapi.dll")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |