I need to insert this condition:
# The condition is met if $Context.ConditionIsMet is set to $True.
# $Context.ConditionIsMet = $False
$day = Get-Date -UFormat %V
$Context.ConditionIsMet = (($day -eq 1)-or ($day -eq 5))
The %V form is not accept in adaxes but is correct in powershell. Any suggest?
I need to get week number of month in gregorian calendar.
Thanks in advance,
Simone