Sharepoint Foundation 2010 Development Environment Installation Issues
I am having problems installing a development machine for Sharepoint (Foundation) 2010. This is what I have been doing so far on the same machine:
- Installed clean Windows 7 x64 with 4GB of RAM without being part of any domain. Just an autonomous car.
- Included IIS related features as described here , excluding IIS6 related features (two of them)
- Installed SQL Server 2008 R2 Developer Edition (Database Engine and Writer are enabled, but SQL Agent is not enabled)
- Installed Visual Studio 2010 Premium
- Started the Sharepoint Foundation 2010 installation by first extracting the files, changing the configuration to include a Windows 7 installation and then setting it up as a server farm (then complete) to avoid installing SQL Express.
- A separate local user SPF_CONFIG has been created with the right
Logon on as a service
. - Opened the SPF Management Shell and launched
New-SPConfigurationDatabase
so that I can use a non-domain username (SPF_CONFIG which I created in the previous step)
Result after this error:
- Database
Sharepoint2010Config
created - The SPF_CONFIG user is added to SQL Server and joins this newly created database as
dbowner
- By checking the security logins of the SQL server, this user has the following rights:
dbcreator
securityadmin
public
+2
a source to share
1 answer
Solved it myself by trying all sorts of things
The main thing is that I did not give up and installed the stadalone installation. I followed two guides:
The step-by-step instructions I followed (might be useful for someone else too):
- Then I removed SPF2010
- Setting up all accounts as described in the first document
- Reinstalled all prerequisites and KBs described in MSDN resource.
- Configuration Wizard Canceled and Sharpoint PowerShell Launched
- Completed
New-SPConfigurationDatabase -AdministrationContentDatabaseName "SomeDBName"
- The team than asked me about all the other missing information
- Waiting for the command to complete (several minutes)
- And it succeeded
- FINALLY!
- Rerun
psconfigui
and completed configuration - SPF Admin website launched successfully.
clap clap clap
+2
a source to share


