Hello @Fresher,
There is a thread similar to this one. I would advice you go through it as well. There are workarounds to achieve this but no straight forward way.
If you find the documentation at UiPath difficult to understand while building cron expressions, you can use the link posted by @Maneesha_de_silva and build expressions in Quartz format. Why this particular link? Because UiPath has used the same library “Quartz” to implement the cron expression in orchestrator using the .Net version. The expression you build in the link will be valid in UiPath orchestrator as well.
But why is this difficult?
The limitation with quartz library is that it does not allow two simultaneous filters at the same time (day of month (number) and day of week (number / number range or string / string array)). You can either run on the 28 of every month or run on specific days of the week, not both. The “W” parameter is a remedy for some situations, but not in your case. That said, even a normal cron expression in Linux will need to have additional logic to get the result you are looking for.
Hope this clears some doubts.