Hi @sudhakar_ypgr ,
You can use Run VBScript action to get Date First Friday of the month as shown in below.

Code:
Please copy the below code to your flow.
@@copilotGeneratedAction: 'True'
Scripting.RunVBScript.RunVBScript VBScriptCode: $'''\' This code has been generated by AI. Original prompt:
\' vbscript to get first friday of the month
Dim dtmDate
dtmDate = DateSerial(Year(Date), Month(Date), 1)
Do Until Weekday(dtmDate) = 6
dtmDate = DateAdd(\"d\", 1, dtmDate)
Loop
WScript.Echo dtmDate''' ScriptOutput=> FirstFriday ScriptError=> ScriptError
Please find the solution To get all the fridays in amonth.

Code:
@@copilotGeneratedAction: 'True'
Scripting.RunVBScript.RunVBScript VBScriptCode: $'''\' This code has been generated by AI. Original prompt:
\' Vbscript to get all the fridays in a month
Dim dtmDate
dtmDate = DateSerial(Year(Date), Month(Date), 1)
Do Until Month(dtmDate) <> Month(Date)
If Weekday(dtmDate) = 6 Then \' 6 = Friday
WScript.Echo dtmDate
End If
dtmDate = DateAdd(\"d\", 1, dtmDate)
Loop''' ScriptOutput=> AllFridays ScriptError=> ScriptError4
If you new and if you dont know how to copy the code to your flow.

(Note:- if you got your solution you can mark as solution and gives kudos)
Thanks & Regards
Vishnu Reddy