Hi @Punkasur ,
maybe this helps - Not tested by myself / use on your own risk!:
#Try one user first
Get-ADUser -Identity "<testUser-samAccountName>" -Properties ProfilePath | Set-ADUser -Clear ProfilePath
# Not tested by myself - use on your own risk!
Get-ADGroupMember -Identity "<YourGroupContainingUsers-Name>" | Where-Object {$_.objectClass -eq "user"} | Set-ADUser -Clear ProfilePath
----------
(If the reply was helpful please don't forget to upvote and/or accept as answer, thank you)
Regards
Andreas Baumgarten