Add Sharepoint Admin URI as parameter
Tested an Entra ID Tenant, was Sharepoint Admin but somehow it didnt find the Sharepoint and just put out some basic "Info"
After I manually performed the CIS Microsoft 365 Foundations v5 I had 13 non-compliant medium findings
Hi @Schurik97,
If SharePoint online was moved to another domain, you can use the ScanSites param in Monkey365. The following should do the trick:
$param = @{
TenantId = '00000000-0000-0000-0000-000000000000';
Instance = 'Microsoft365';
Collect = @('SharePointOnline');
ExportTo = @("HTML");
SaveProject = $true;
ScanSites = "https://yourdomain.sharepoint.com"
Environment = 'AzurePublic';
InformationAction = 'Continue';
IncludeEntraId = $true;
Verbose = $true;
}
Invoke-Monkey365 @param
The ScanSites param is not documented yet, so thanks for remind me that I need to further update docs!
Thanks,
This issue has been automatically marked as stale because it has not had recent activity. We kindly ask you to check again if the issue you reported is still relevant in the current version of Monkey365. If it is, update this issue with a comment, otherwise it will be automatically closed if no further activity occurs. Thank you for your contributions.
This issue was closed because it has been inactive for 14 days since being marked as stale. If the issue is still relevant, feel free to re-open it or open a new one.