Hi
Okay, I have found the following works, but it actually deletes the DRM folder, not the files in it. The difference to the path is 'ProgramData' doesn;t have a space between the 2 words when you check the properties of the DRM folder.
Can you make it delete just the files in the DRM folder knowing what this one below does?
@echo off
cls
del "C:\ProgramData\Microsoft\Windows/DRM\*.*" /Q /F /S
rd "C:\ProgramData\Microsoft\windows/DRM" /S /Q
ping localhost -n 5 > nul
Pause