Forum Discussion
Hi everyone, when i create a new pwa site in project online. I am getting error?
- Jul 05, 2022
I got off the phone with Microsoft
I just got off the phone with Microsoft support.
Seemed that the GUI for setting this up didn't work and after running a few PowerShell commands it showed that PWA was disabled - PWAEnabled : Disabled
We ran these in PowerShell (we changed the name here to YOUR tenant name, and YOUR site):
Connect-SPOService -url https://m365tenantnamehere-admin.sharepoint.com/
Get-SPOSite -Identity https://m365tenantnamehere.sharepoint.com/sites/PWASiteNameHere |fl
#PWAEnabled : Disabled
Set-SPOSite -Enable $true -identity https://m365tenantnamehere.sharepoint.com/sites/PWASiteNameHere
I got off the phone with Microsoft
I just got off the phone with Microsoft support.
Seemed that the GUI for setting this up didn't work and after running a few PowerShell commands it showed that PWA was disabled - PWAEnabled : Disabled
We ran these in PowerShell (we changed the name here to YOUR tenant name, and YOUR site):
Connect-SPOService -url https://m365tenantnamehere-admin.sharepoint.com/
Get-SPOSite -Identity https://m365tenantnamehere.sharepoint.com/sites/PWASiteNameHere |fl
#PWAEnabled : Disabled
Set-SPOSite -Enable $true -identity https://m365tenantnamehere.sharepoint.com/sites/PWASiteNameHere
Slight correction to the Powershell script... the last line shoud read
Set-SPOSite -EnablePWA $true -identity https://M365TenantNameHere.sharepoint.com/sites/PWASiteNameHere
:-)