julmsy
julmsy
Hello, I think I'm facing the same issue. Initial SP configuration : no User Profile SA. Start-DscConfiguration with the following code (no MySiteHostLocation parameter): ``` SPUserProfileServiceApp UserProfileServiceApp { Name =...
Hi @ykuijs, please find complete verbose logs regarding this resource (SPUserProfileServiceApp without MySiteHostLocation parameter). This log is the second run, meaning that User Profile SA was creating on the first...
Hi @ykuijs, For now the topology is simple: Single-server farm, as I'm working to provision DEVs environments. And yes, I can reproduce the issue consistently when I run DSC scripts...
Yes, these farm are part of an Active Directory, but AD (as well as SQL) are on separate servers. The SharePoint Server only have SharePoint, no other service. No GPO...
``` $Response = Invoke-MgGraphRequest -Uri $uriGraphEndpoint -OutputType HttpResponseMessage $ContentInBytes = $Response.Content.ReadAsByteArrayAsync().GetAwaiter().GetResult() ``` This is not working: ``` $Response = Invoke-MgGraphRequest -Uri 'https://graph.microsoft.com/beta/users/[email protected]/photo/$value' -OutputType HttpResponseMessage Invoke-MgGraphRequest : Request returned Non-Json response...
Hello everyone, Thanks for the suggestion @RayGHeld, it works like a charm. I hadn't thought of encoding in HTTP format. ``` $upn = $_.Value -replace '#','%23' $response = Invoke-MgGraphRequest -Method...