본문 바로가기

IT 관련 이야기/SharePoint

(62)
Branding guidance for SharePoint Online portals https://docs.microsoft.com/en-us/sharepoint/dev/solution-guidance/portal-branding theme https://support.office.com/en-us/article/Customize-the-Office-365-theme-for-your-organization-8275da91-7a48-4591-94ab-3123a3f79530
Overview of the SharePoint Framework SharePoint 개발 방법이 변경되어 포스팅합니다. SharePoint 개발 방법의 큰변화는 SPS 2007의 극악의 방법에서 SPS2010 에 개선이 이루어지고 큰변화는 없었습니다. SharePoint Online 개발을 위해 APP Model 개발 방법이 도입되었지만 ServerSide 개발은 큰 변화없이 이어져왔습니다. 지난해 SharePoint Online에 지곤 TeamSite 와는 다른 Communication Site를 생성할수 있도록 변경되어 기존 사이트보다는 좀더 모던한 형태의 포털구성이 가능하도록 지원하게 되었습니다. 사이트가 기존의 팀사이트 형태에서 모던사이트로 변경이 됨으로 SharePoint UX 를 포함한 구성방식, 또한 개발방식 변경은 당연한 결과라고 생각이 되며 Share..
SharePoint PnP PowerShell ? TechNet : PnP PowerShell overview 관련
One or more files in the restored site collection will exceed the maximum supported path length. Please select a shorter destination site address and try again. 복원된 사이트 모음에서 하나 이상의 파일이 지원되는 최대 경로 길이를 초과했습니다 STSADM 명령어를 사용하여 복원중 위 오류 발생 해결은 해당 파일 찾아서 없애야 합니다. 260자를 초과 할 수 없음. 아래 블로그 참조. http://blogs.msdn.com/b/josrod/archive/2009/05/28/one-or-more-files-in-the-restored-site-collection-will-exceed-the-maximum-supported-path-length-please-select-a-shorter-destination-site-address-and-try-again.aspx
SharePoint 2007 Deployment: Custom Action Features http://blogit.create.pt/blogs/andrevala/archive/2008/08/11/SharePoint-2007-Deployment_3A00_-Custom-Action-Features.aspx
Sharepoint EventHandler 사용시 유용한 팁... Itemadding 시 필드값 변경 properties.AfterProperties["필드"]= "......................." ; 이런식으로 update . itemadded /itemupdated 는 properties.ListItem["필드"]= 필드들 ; properties.ListItem.Update(); datetime 필드에 값넣을때는... properties.AfterProperties["starttime"] = SPUtility.CreateISO8601DateTimeFromSystemDateTime(sTime).ToString(); SPListItem.SystemUpdate 를 사용할 경우에는 변경이력안남기고 살짝 업데이트할때...^^
Customizing Sharepoint 2007 Calendar view Sharepoint 2007 Calendar 보기를 수정하는게 쉬운일은 아니다. 특히 달력 부분에 여러가지 정보를 나타나게 하려면 계산된 필드 등을 사용해서 데이터를 어떻게 잘 다루는 게 흔히 사용되는 방식이었다. Calendar 를 직접 수정하는 방법이 설명되어져 있어서 다음과 같이 적어본다. http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomization/thread/179c74de-525c-4236-83cf-91861e9a7aee c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\Templates\Control Templates 에서 DefaultTemplate..
Sharepoint2007 Service Account 비밀번호 변경 Sharepoint 의 서비스 계정 비밀번호를 변경하면 응용프로그램 풀이 자꾸 죽고 오류만 줄창 발생한다. 그렇다고 보안문제로 인해 계정 비밀번호를 변경해야 할때는 변경해야쥐... 다음 KB에서 서비스 계정의 비밀번호 변경을 설명하고 있으니 참고 바람. How to change service accounts and service account passwords in SharePoint Server 2007 and in Windows SharePoint Services 3.0 http://support.microsoft.com/kb/934838/ko
Sharepoint 2007 EventReceiver 관련 링크 Sharepoint 2007에서 Event Receiver 가 리스트,리스트 템플릿이나 콘텐트 타입별로 정의 해 줄 수 있다. 이와 관련하여 특정 리스트, 리스트템플릿, 콘텐트 타입별로 이벤트 리시버를 등록해주는 절차에 대해 잘 정의 되어 있는 사이트를 링크한다. 참조 : http://www.davehunter.co.uk/Blog/Lists/Posts/Post.aspx?List=f0e16a1a%2D6fa9%2D4130%2Dbcab%2Dbaeb97ccc4ff&ID=69 이벤트 리시버 인스톨 툴도 있어서 링크한다. 참고 http://www.entwicklungsgedanken.de/2008/02/29/tool-eventreceiver-installer-for-sharepoint/
Sharepoint 2007 상에서 다른사용자로 로그인 이 정상 작동하지 않을때 Sharepoint 2007에서 다른사용잘로 로그인이 정상작동 하지 않는 경우가 발생하여 여러가지로 찾던중 KB를 발견 포스팅합니다. 해당 KB대로 작업을 진행하면 로그아웃만 진행되므로 js 하단에 location.href 를 현재 location으로 변경해 주는 라인을 추가하였습니다. kb 대로만 하면 다른사용자 로그인을 클릭하면 아무 반응이 없습니다. 그러므로 location 을 움직여 줘야 합니다.. 그건 알아서들 하시길. Sign In as different user does not clear the session and cookie values http://support.microsoft.com/kb/970814 MS는 KB를 잘 찾을 수 있게할 방법을 좀 마련해 줘야 할텐데... 항상 구글링하..