├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── ActionCard.ps1 ├── Applications.ps1 ├── Authentication.ps1 ├── Blank.xlsx ├── ChangeLog.md ├── Examples ├── CloudDriveExport-log-and-readback.ps1 ├── Data-XLSx-Drive-dlChart.ps1 ├── Data-XLSx-Drive.ps1 ├── Demo_1-Azure Logon.ps1 ├── Demo_2-CredLogon.ps1 ├── Demo_Main.ps1 ├── Link.png ├── New-BcAuthContext.ps1 ├── OneDrive.gif ├── PlannerImportExport │ ├── Create_Planner_Template.ps1 │ ├── Export-planner-to-xlsx.ps1 │ ├── Import-Planner-From-Xlsx.ps1 │ └── Planner-Export.xlsx ├── SQL Group roles to members.ps1 ├── Team.gif ├── Template_groups.csv ├── Template_membership.csv ├── Template_users.csv └── whatsinyaml.ps1 ├── Groups.ps1 ├── Identity.DirectoryManagement.ps1 ├── Identity.SignIns.ps1 ├── LICENSE ├── Microsoft.Graph.PlusPlus.format.ps1xml ├── Microsoft.Graph.PlusPlus.psd1 ├── Microsoft.Graph.PlusPlus.psm1 ├── Microsoft.Graph.PlusPlus.settings.ps1 ├── Microsoft.Graph.PlusPlus.types.ps1xml ├── Notes.ps1 ├── OneDrive.ps1 ├── PersonalContacts.ps1 ├── Planner.ps1 ├── README.md ├── Reports.ps1 ├── Sharepoint.ps1 ├── Users.Actions.ps1 ├── Users.Functions.ps1 ├── Users.ps1 ├── docs ├── AAD-Admin-Consent-At-Logon.png ├── AAD-Admin-Consent-Needed.png ├── AAD-AppOverview.png ├── AAD-AppSecrets.png ├── App Configuration.md ├── AppPermSummary.png ├── AuthSettings.png ├── DeviceLogon.png ├── InteractiveConsent.png ├── Logon options.docx ├── Logon options.pdf ├── Relationships.pdf ├── Relationships.vsdx ├── UsersGroupsDirObjects.jpg └── VaultPerms.png └── quick_publish.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | Old/* -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ActionCard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/ActionCard.ps1 -------------------------------------------------------------------------------- /Applications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Applications.ps1 -------------------------------------------------------------------------------- /Authentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Authentication.ps1 -------------------------------------------------------------------------------- /Blank.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Blank.xlsx -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Examples/CloudDriveExport-log-and-readback.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/CloudDriveExport-log-and-readback.ps1 -------------------------------------------------------------------------------- /Examples/Data-XLSx-Drive-dlChart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Data-XLSx-Drive-dlChart.ps1 -------------------------------------------------------------------------------- /Examples/Data-XLSx-Drive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Data-XLSx-Drive.ps1 -------------------------------------------------------------------------------- /Examples/Demo_1-Azure Logon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Demo_1-Azure Logon.ps1 -------------------------------------------------------------------------------- /Examples/Demo_2-CredLogon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Demo_2-CredLogon.ps1 -------------------------------------------------------------------------------- /Examples/Demo_Main.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Demo_Main.ps1 -------------------------------------------------------------------------------- /Examples/Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Link.png -------------------------------------------------------------------------------- /Examples/New-BcAuthContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/New-BcAuthContext.ps1 -------------------------------------------------------------------------------- /Examples/OneDrive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/OneDrive.gif -------------------------------------------------------------------------------- /Examples/PlannerImportExport/Create_Planner_Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/PlannerImportExport/Create_Planner_Template.ps1 -------------------------------------------------------------------------------- /Examples/PlannerImportExport/Export-planner-to-xlsx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/PlannerImportExport/Export-planner-to-xlsx.ps1 -------------------------------------------------------------------------------- /Examples/PlannerImportExport/Import-Planner-From-Xlsx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/PlannerImportExport/Import-Planner-From-Xlsx.ps1 -------------------------------------------------------------------------------- /Examples/PlannerImportExport/Planner-Export.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/PlannerImportExport/Planner-Export.xlsx -------------------------------------------------------------------------------- /Examples/SQL Group roles to members.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/SQL Group roles to members.ps1 -------------------------------------------------------------------------------- /Examples/Team.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Team.gif -------------------------------------------------------------------------------- /Examples/Template_groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Template_groups.csv -------------------------------------------------------------------------------- /Examples/Template_membership.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Template_membership.csv -------------------------------------------------------------------------------- /Examples/Template_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/Template_users.csv -------------------------------------------------------------------------------- /Examples/whatsinyaml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Examples/whatsinyaml.ps1 -------------------------------------------------------------------------------- /Groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Groups.ps1 -------------------------------------------------------------------------------- /Identity.DirectoryManagement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Identity.DirectoryManagement.ps1 -------------------------------------------------------------------------------- /Identity.SignIns.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Identity.SignIns.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.Graph.PlusPlus.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Microsoft.Graph.PlusPlus.format.ps1xml -------------------------------------------------------------------------------- /Microsoft.Graph.PlusPlus.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Microsoft.Graph.PlusPlus.psd1 -------------------------------------------------------------------------------- /Microsoft.Graph.PlusPlus.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Microsoft.Graph.PlusPlus.psm1 -------------------------------------------------------------------------------- /Microsoft.Graph.PlusPlus.settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Microsoft.Graph.PlusPlus.settings.ps1 -------------------------------------------------------------------------------- /Microsoft.Graph.PlusPlus.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Microsoft.Graph.PlusPlus.types.ps1xml -------------------------------------------------------------------------------- /Notes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Notes.ps1 -------------------------------------------------------------------------------- /OneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/OneDrive.ps1 -------------------------------------------------------------------------------- /PersonalContacts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/PersonalContacts.ps1 -------------------------------------------------------------------------------- /Planner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Planner.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/README.md -------------------------------------------------------------------------------- /Reports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Reports.ps1 -------------------------------------------------------------------------------- /Sharepoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Sharepoint.ps1 -------------------------------------------------------------------------------- /Users.Actions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Users.Actions.ps1 -------------------------------------------------------------------------------- /Users.Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Users.Functions.ps1 -------------------------------------------------------------------------------- /Users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/Users.ps1 -------------------------------------------------------------------------------- /docs/AAD-Admin-Consent-At-Logon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/AAD-Admin-Consent-At-Logon.png -------------------------------------------------------------------------------- /docs/AAD-Admin-Consent-Needed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/AAD-Admin-Consent-Needed.png -------------------------------------------------------------------------------- /docs/AAD-AppOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/AAD-AppOverview.png -------------------------------------------------------------------------------- /docs/AAD-AppSecrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/AAD-AppSecrets.png -------------------------------------------------------------------------------- /docs/App Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/App Configuration.md -------------------------------------------------------------------------------- /docs/AppPermSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/AppPermSummary.png -------------------------------------------------------------------------------- /docs/AuthSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/AuthSettings.png -------------------------------------------------------------------------------- /docs/DeviceLogon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/DeviceLogon.png -------------------------------------------------------------------------------- /docs/InteractiveConsent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/InteractiveConsent.png -------------------------------------------------------------------------------- /docs/Logon options.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/Logon options.docx -------------------------------------------------------------------------------- /docs/Logon options.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/Logon options.pdf -------------------------------------------------------------------------------- /docs/Relationships.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/Relationships.pdf -------------------------------------------------------------------------------- /docs/Relationships.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/Relationships.vsdx -------------------------------------------------------------------------------- /docs/UsersGroupsDirObjects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/UsersGroupsDirObjects.jpg -------------------------------------------------------------------------------- /docs/VaultPerms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/docs/VaultPerms.png -------------------------------------------------------------------------------- /quick_publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhoneill/MsftGraph/HEAD/quick_publish.ps1 --------------------------------------------------------------------------------