Forum Discussion
Mark_Wahl
Microsoft
Aug 15, 2019Example how to create Azure AD access reviews using Microsoft Graph app permissions with PowerShell
The Azure AD access reviews feature is part of Microsoft Graph, with a list of methods at https://docs.microsoft.com/en-us/graph/api/resources/accessreviews-root?view=graph-rest-beta. An earlier blo...
ilik0
Nov 22, 2022Brass Contributor
For me it says ##[error]Invalid schedule recurrence type provided : never
Update:
I had to change to this to make it work:
$RecurrenceSettings = @{
RecurrenceType = "onetime"
RecurrenceEndType = "endBy"
DurationInDays = 30
RecurrenceCount = 180
}
MikeCrowley
Dec 01, 2022Iron Contributor
ilik0, those types are imported with the modules, sorry I forgot to mention this.
- ilik0Dec 12, 2022Brass ContributorThanks, Mike. Do you know how to add an AAD group to the review created by the code above?