Skip to main content
Question

CodeSignSummary.md appearing in Applications

  • March 15, 2023
  • 10 replies
  • 37 views

Forum|alt.badge.img+7

I'm seeing a CodeSignSummary-xxxxxxxxx-xxxx-xxxx-xxxxxxxxx.md appearing in Applications on my computers. File content shows something about wdav-upgrade.zip, which has to do with Defender. Any idea why this file is getting generated?

10 replies

Corey_Nechkash
Forum|alt.badge.img+12
  • Contributor
  • 25 replies
  • March 16, 2023

I can confirm that I've been seeing this as well. It does look to be associated with Defender (as noted by the wdav-upgrade.zip file). The file doesn't exist on the machine until Defender is installed then it does its first update and this file shows up.


Forum|alt.badge.img+7
  • Author
  • Contributor
  • 33 replies
  • March 16, 2023

I can confirm that I've been seeing this as well. It does look to be associated with Defender (as noted by the wdav-upgrade.zip file). The file doesn't exist on the machine until Defender is installed then it does its first update and this file shows up.


The thing is, we've been using Defender for a long time, this file just started popping up a month or so ago. 


Corey_Nechkash
Forum|alt.badge.img+12
  • Contributor
  • 25 replies
  • March 16, 2023

The thing is, we've been using Defender for a long time, this file just started popping up a month or so ago. 


Same here. I thought it was only happening on Ventura machines but I've confirmed its happening on the Monterey machines now as well. 


dvasquez
Forum|alt.badge.img+16
  • Valued Contributor
  • 318 replies
  • March 18, 2023

Same here. I thought it was only happening on Ventura machines but I've confirmed its happening on the Monterey machines now as well. 


If you can access the end-point manager tenant console create an MS support case and see what they say. Also from the security portal, you can send MS support requests. Others will want to know what is happening in this case. Anyway, thank you!


Jay_007
Forum|alt.badge.img+7
  • Valued Contributor
  • 56 replies
  • May 9, 2023

Was there any new info on this? It's still happening.


GraemeU
Forum|alt.badge.img+3
  • New Contributor
  • 10 replies
  • May 18, 2023

Same here on our devices, have been testing Defender for several months and this has only recently started happening, not sure around which release though!


ImAMacGuy
Forum|alt.badge.img+23
  • Esteemed Contributor
  • 1310 replies
  • May 19, 2023

I've got a few of these on my device too, going back to Feb 3rd.  Just opened a ticket with MS about it.  I'm sure it's a feature or something.

 


GraemeU
Forum|alt.badge.img+3
  • New Contributor
  • 10 replies
  • May 20, 2023

Update: Microsoft are aware and have a fix for this. You can get it now via the insider fast ring, assume it will be added to the next release for current channel


Jay_007
Forum|alt.badge.img+7
  • Valued Contributor
  • 56 replies
  • May 23, 2023

Update: Microsoft are aware and have a fix for this. You can get it now via the insider fast ring, assume it will be added to the next release for current channel


Nice! My temporary fix is to just hide the file from users lol (sudo chflags -h hidden "$file")


Forum|alt.badge.img+7
  • Contributor
  • 37 replies
  • May 25, 2023

Here is a script to hide them:

#!/bin/sh if [ "$(id -u)" != "0" ]; then echo "Error: This script must be run as root" 1>&2 exit 1 fi ## CAPTURE THE CODESIGNSUMMARY FILES CODESIGNFILES=$(ls /Applications | grep CodeSignSummary) ## PARSE AND WORK WITH THE CAPTURE OIFS=$IFS # CAPTURE OLD SYSTEM DELIMITER IFS=$'\\n' # IN FIELD DELIMITER IS SET TO CARRIAGE RETURN for FILE in ${CODESIGNFILES}; do echo "--- Hiding ${FILE}" chflags hidden "/Applications/${FILE}" done IFS=$OIFS # RETURN SYSTEM DELIMITER TO OLD