문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. =SharePointServer 개발을 위한 준비= *[http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx Setting Up the Development Environment for SharePoint 2010 on Windows Vista, Windows 7, and Windows Server 2008] *[http://sharepoint.egloos.com/2592890 Windows 7 에서 SharePoint 2010 개발환경 만들기] ==Windows 7 에서 SharePoint 개발== ===SharePointServer 설치파일 복사=== \SPS_설치파일\Files\Setup\Config.xml 파일을 수정하기 위해 로컬디스크에 설치파일 전체를 복사해둔다. <syntaxhighlight lang="xml"><Setting Id="AllowWindowsClientInstall" Value="True"/></syntaxhighlight> ===SharePointServer 설치에 필요한 컴포넌트 설치=== # Microsoft FilterPack 2.0 설치 (C:\SharePointFiles\PrerequisiteInstallerFiles\FilterPack) # [http://go.microsoft.com/fwlink/?LinkID=141237 Microsoft Sync Framework 설치] (파일명 : Synchronization.msi) # [http://go.microsoft.com/fwlink/?LinkId=123718 SQL Server Native Client 설치] (파일명 : sqlncli.msi) # [http://www.microsoft.com/downloads/details.aspx?FamilyID=eb9c345f-e830-40b8-a5fe-ae7a864c4d76&displaylang=en Windows Identity Foundation 설치] <strike>Microsoft Genevar Framework Beta 1 Runtime for x64 설치</strike> (파일명 : Windows6.1-KB974405-x64.msu) # [http://www.microsoft.com/downloads/details.aspx?FamilyID=a71060eb-454e-4475-81a6-e9552b1034fc ADO.NET Data Service v1.5 설치] (파일명 : ADONETDataServices_v15_CTP2.exe) # [http://go.microsoft.com/fwlink/?LinkID=122517 Chart Controls 설치] (파일명 : MSChart.exe) # [http://download.microsoft.com/download/A/D/0/AD021EF1-9CBC-4D11-AB51-6A65019D4706/SQLSERVER2008_ASADOMD10.msi SQL Server Analysis Services – ADOMD.NET 설치] (파일명 : SQLSERVER2008_ASADOMD10.msi) Windows 8 의 경우 Windows Identity Foundation 이 포함되어져 있다. '''Windows 기능 켜기/끄기'''에서 Windows Identity Foundation 3.5 기능을 선택하면된다. (Windows6.1-KB974405-x64.msu 파일로 설치할 수는 없다.) ===IIS 설정=== <syntaxhighlight lang="dos">start /w pkgmgr /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-ApplicationDevelopment;IIS-ASPNET;IIS-NetFxExtensibility;IIS-ISAPIExtensions;IIS-ISAPIFilter;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-HttpTracing;IIS-CustomLogging;IIS-Security;IIS-BasicAuthentication;IIS-WindowsAuthentication;IIS-DigestAuthentication;IIS-RequestFiltering;IIS-Performance;IIS-HttpCompressionStatic;IIS-HttpCompressionDynamic;IIS-WebServerManagementTools;IIS-ManagementConsole;IIS-IIS6ManagementCompatibility;IIS-Metabase;IIS-WMICompatibility;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI;WCF-HTTP-Activation;WCF-NonHTTP-Activation</syntaxhighlight> ===Database=== [http://social.technet.microsoft.com/wiki/contents/articles/9305.how-to-install-sharepoint-2010-with-sql-server-2012-on-windows-server-8.aspx SPS2010 on SQL Server 2012] ===SPS Configuration Database 생성=== <syntaxhighlight lang="dos">psconfig -cmd configdb -create -server "<서버이름>" -database "SPS_Config" -passphrase "<복잡도를 만족하는 비밀번호>" -admincontentdatabase "SPS_Admin"</syntaxhighlight> === SPS Central Administration 설치 === <syntaxhighlight lang="dos">psconfig -cmd adminvs -provision -port "3323"</syntaxhighlight> 최초 실행시 오류가 발생하면 Site Pool의 ASP.NET 버젼을 ASP.NET 2.0 으로 변경한다. [[분류:Dev]] SharePoint Server 문서로 돌아갑니다.