only took three tries, only… 1. Install Windows Server 2016 R5 a. renames computer, create domain, join domain, install .Net 3.5, install IIS $domainName = “domain.com” $safeModeAdminPassword = ConvertTo-SecureString “password” -asPlainText -force Rename-Computer -NewName “Server01” –DomainCredential domainadmin -Restart Add-Windowsfeature AD-Domain-Services -IncludeManagementTools Install-WindowsFeature –name NET-Framework-Core –Source E:Sourcessxs Install-WindowsFeature -Name Web-Server -IncludeAllSubFeature -ComputerName Server01 -WhatIf Install-ADDSForest -DomainName $domainName -SafeModeAdministratorPassword $safeModeAdminPassword -Confirm:$false 2. Install SQL Server 2016 a. Go through setup, install prerequisites, then need to create instance where SharePoint Database will be stored…
Category: SharePoint
SharePoint Online doesn’t allow public access anymore, so either pay $100+ for hosting or try host myself using VM and Server/SharePoint 2016. Figured out how to deploy SharePoint farm and got blog setup, however I’m stuck on port forwarding and hosting using my ryansmccoy.com domain. Try it later.