No, it's still a Windows bug. There are other known DISM issues with enabling WMIC or VBScript Features in 24H2.
To keep the normal File Explorer, you will have to run a DISM command to disable Recall from Post-Setup (Before logon):
View attachment 12974
Because there's a forced restart after the DISM command, these two lines must be the last two commands called from (Before logon).
Otherwise any lines following them will be ignored, since SetupComplete.cmd doesn't resume unfinished commands after a reboot.
View attachment 12975
Hopefully MS will address the DISM bugs in a future SSU Update, and we can return to using the normal NTLite way to disable Features.
To keep the normal File Explorer, you will have to run a DISM command to disable Recall from Post-Setup (Before logon):
Code:
dism /online /disable-feature /featurename:recall
shutdown /r /t /d 5
View attachment 12974
Because there's a forced restart after the DISM command, these two lines must be the last two commands called from (Before logon).
Otherwise any lines following them will be ignored, since SetupComplete.cmd doesn't resume unfinished commands after a reboot.
View attachment 12975
Hopefully MS will address the DISM bugs in a future SSU Update, and we can return to using the normal NTLite way to disable Features.