Detect-It-Easy/db/PE/library_AppleSoftwareUpdate.4.sg
DosX 2e058cd161 Rename and standardize database file naming for BJNFNE's fules
Renamed numerous files in the db/Binary, db/ELF, db/ISO9660, db/NE, and db/PE directories to use a consistent naming convention with underscores and clearer prefixes (e.g., archive_, audio_, format_, library_, tool_, etc.). This improves clarity, organization, and maintainability of the database file structure.
2026-01-12 15:32:27 +03:00

13 lines
No EOL
305 B
JavaScript

// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// https://www.dllme.com/dll/files/softwareupdatefiles
meta("library", "Apple Software Update");
function detect() {
if (PE.isLibraryPresent("SoftwareUpdateFiles.dll")) {
bDetected = true;
}
return result();
}