I have a website and I need to create sub-sites dynamically because they are many clients and I tried using powershell for this, but I can only create a site collection. Example:
new-SPOSite -url httl://url.sharepoint.com/douglas -owner [email protected]
This makes my site all right, but I need to create sub-sites, for example:
httl://url.sharepoint.com/douglas/cliente1
httl://url.sharepoint.com/douglas/cliente2
httl://url.sharepoint.com/douglas/cliente3
httl://url.sharepoint.com/douglas/cliente4
That way it does not work and I can not find an explanation or a way to do this. Manually creating is out of the question as there are many clients and more and more requests come in.
I have not found a solution yet on google. Can someone help?
Thank you.