2 weeks ago - last edited 2 weeks ago
I have a script that shows exenstion attribute for the type of license installed for Office. With the release of the Office 2024 LTSC license does anyone know if the script will be updated to add the information for the 2024 license?
I installed the LTSC 2024 serializer but it still reads 'office 2021 volume license' and from the actual mac end the 'about word' shows 'Office LTSC Standard for Mac 2024'.
Word version is 16.90.2
the script is called Office_License.sh (see below for the script). Looks like an IF statement needs to be added for Office 2024 volume license
2 weeks ago
2 weeks ago
@tcandela I can help update the script for you but I will need your help in testing the same. Feel free to dm me on jamf nation or slack @Samstar777 and we can work together on this.
2 weeks ago
I'm also VERY interested in this. The magic is in interpreting /Library/Preferences/com.microsoft.office.licensingV2.plist but the "data" blocks are not encoded in any way I could easily decode (not that I tried too hard, i.e. it's not straightforward base64 encoded). Happy to provide any info I can.
2 weeks ago
@Samstar777 @JasonEgg let me know when you update the EA script and I'll use it and run a recon to see if my test mac changes from 2021 license to 2024
a week ago
a week ago
I sent some details to @Samstar777
I am going to try to get more examples and find patterns on my own as well
Monday
@JasonEgg @Samstar777 let me know if you need anything to help with trying to figure this out
Tuesday
I added:
if /usr/bin/grep -q "Bozo+MzVxzFzbIo+hhzTl41DwAFJEitHSg5IiCEeuI" "$PERPETUALLICENSE"; then
/bin/echo "Office 2024 Volume License"
return
fi
to our Office License extension attribute. After an inventory update, my test Mac reported having a Office 2024 Volume License instead of the perpetual license. Won't help with reporting the stacked licenses, but it's a start.
Tuesday
Wednesday
@Samstar777 @JasonEgg I'll give the updated EA a test and let you know what happens.
Thursday
Cursory testing reveals it is only accurate for new deployments, that is, fresh installations without a previously existing license file. For instances where license was "updated" from 2021 to 2024, the EA still reports 2021 even after 2024 license is applied. I believe this is is the "stacked" scenario that @RobbEFX is referring to.
The old pbowden script seemed to identify "stacked" instances by the length of the plist file, but perhaps this is no longer accurate?
I'm going to do some more testing
Thursday
@JasonEgg Thanks for your feedback, To Summarise the script works as expected on newly deployed device but does not work on existing office which got upgraded from Office 2021 to Office 2024. let me read the entire script and stacked logic to enhance the script. Thanks for the feedback and i believe together we can do it :)