<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>즐겁게 살자</title>
    <link>https://blackg.tistory.com/</link>
    <description></description>
    <language>ko</language>
    <pubDate>Sat, 13 Jun 2026 06:34:19 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>홍상길</managingEditor>
    <image>
      <title>즐겁게 살자</title>
      <url>https://tistory1.daumcdn.net/tistory/507118/attach/34e2faa27dbc4d70850b6740a89f4299</url>
      <link>https://blackg.tistory.com</link>
    </image>
    <item>
      <title>프로그램 관리자모드 기본 설정 하기</title>
      <link>https://blackg.tistory.com/410</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;1. 프로젝트 속성 &amp;gt; 애플리케이션 &amp;gt; 리소스에서 매니페스트 추가&lt;/p&gt;
&lt;p&gt;&lt;figure class=&quot;imageblock alignCenter&quot; data-origin-width=&quot;846&quot; data-origin-height=&quot;529&quot; data-filename=&quot;이미지 3.png&quot; data-ke-mobilestyle=&quot;widthOrigin&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/binRV8/btreqKqiQxy/4q3lsvMMIpfCdg5ZP8aBD1/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/binRV8/btreqKqiQxy/4q3lsvMMIpfCdg5ZP8aBD1/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/binRV8/btreqKqiQxy/4q3lsvMMIpfCdg5ZP8aBD1/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbinRV8%2FbtreqKqiQxy%2F4q3lsvMMIpfCdg5ZP8aBD1%2Fimg.png&quot; data-origin-width=&quot;846&quot; data-origin-height=&quot;529&quot; data-filename=&quot;이미지 3.png&quot; data-ke-mobilestyle=&quot;widthOrigin&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;2. app.manifest 설정 추가&lt;/p&gt;
&lt;pre id=&quot;code_1631089114365&quot; class=&quot;java&quot; data-ke-language=&quot;java&quot; data-ke-type=&quot;codeblock&quot;&gt;&lt;code&gt;  &amp;lt;trustInfo xmlns=&quot;urn:schemas-microsoft-com:asm.v2&quot;&amp;gt;
    &amp;lt;security&amp;gt;
      &amp;lt;requestedPrivileges xmlns=&quot;urn:schemas-microsoft-com:asm.v3&quot;&amp;gt;
        &amp;lt;!-- UAC 매니페스트 옵션 --&amp;gt;
        &amp;lt;requestedExecutionLevel level=&quot;requireAdministrator&quot; uiAccess=&quot;false&quot; /&amp;gt;
      &amp;lt;/requestedPrivileges&amp;gt;
    &amp;lt;/security&amp;gt;
  &amp;lt;/trustInfo&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;</description>
      <category>Programming/Winform</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/410</guid>
      <comments>https://blackg.tistory.com/410#entry410comment</comments>
      <pubDate>Wed, 8 Sep 2021 17:21:16 +0900</pubDate>
    </item>
    <item>
      <title>[GridView] 마우스 클릭 으로 Row 다중선택</title>
      <link>https://blackg.tistory.com/395</link>
      <description>&lt;pre id=&quot;code_1578882710331&quot; class=&quot;html xml&quot; data-ke-language=&quot;html&quot; data-ke-type=&quot;codeblock&quot;&gt;&lt;code&gt;private void GridView_MouseDown(object sender, MouseEventArgs e)
{
	GridHitInfo gridHI = (sender as GridView).CalcHitInfo(e.Location);
	if (gridHI != null &amp;amp;&amp;amp; gridHI.InRowCell)
	{
		if ((sender as GridView).IsRowSelected(gridHI.RowHandle))
		{
			(sender as GridView).UnselectRow(gridHI.RowHandle);
		}
		else
		{
			(sender as GridView).SelectRow(gridHI.RowHandle);
		}
		DXMouseEventArgs.GetMouseArgs(e).Handled = true;
	}
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <category>Programming/Devexpress</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/395</guid>
      <comments>https://blackg.tistory.com/395#entry395comment</comments>
      <pubDate>Mon, 13 Jan 2020 11:32:06 +0900</pubDate>
    </item>
    <item>
      <title>[C#] 관리자모드로 프로그램 실행하기</title>
      <link>https://blackg.tistory.com/394</link>
      <description>&lt;pre id=&quot;code_1563248108203&quot; class=&quot;html xml&quot; data-ke-type=&quot;codeblock&quot;&gt;&lt;code&gt;using System;
using System.Diagnostics;
using System.Security.Principal;
using System.Windows.Forms;

namespace HelloWorld
{
    static class Program
    {
        /// &amp;lt;summary&amp;gt;
        /// 해당 응용 프로그램의 주 진입점입니다.
        /// &amp;lt;/summary&amp;gt;
        [STAThread]
        static void Main()
        {
            if (IsAdministrator() == false)
            {
                try
                {
                    ProcessStartInfo processInfo = new ProcessStartInfo();
                    processInfo.UseShellExecute = true;
                    processInfo.FileName = Application.ExecutablePath;
                    processInfo.WorkingDirectory = Environment.CurrentDirectory;
                    processInfo.Verb = &quot;runas&quot;;
                    Process.Start(processInfo);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                }

                return;
            }

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MonitoringForm());
        }

        /// &amp;lt;summary&amp;gt;
        /// 관리자모드 실행 확인
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;returns&amp;gt;&amp;lt;/returns&amp;gt;
        public static bool IsAdministrator()
        {
            WindowsIdentity identity = WindowsIdentity.GetCurrent();

            if (null != identity)
            {
                WindowsPrincipal principal = new WindowsPrincipal(identity);
                return principal.IsInRole(WindowsBuiltInRole.Administrator);
            }

            return false;
        }
    }
}
&lt;/code&gt;&lt;/pre&gt;</description>
      <category>Programming/C#</category>
      <category>c#</category>
      <category>C# 관리자</category>
      <category>관리자모드</category>
      <category>관리자모드실행</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/394</guid>
      <comments>https://blackg.tistory.com/394#entry394comment</comments>
      <pubDate>Tue, 16 Jul 2019 12:35:49 +0900</pubDate>
    </item>
    <item>
      <title>[C#] 확장메소드</title>
      <link>https://blackg.tistory.com/371</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;기존의 Class에 추가로 함수를 추가 하는경우 사용한다.&lt;/p&gt;&lt;p&gt;확장 메소드의 Class는 Static으로 정의 되어야 하며 첫번째 파마메터에 this 기존클래스명 이 들어가야 한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border-style: solid; border-width: 1px; border-color: rgb(243, 197, 52); background-color: rgb(254, 254, 184); padding: 10px;&quot;&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(70, 65, 217);&quot;&gt;public static class&lt;/span&gt; &lt;span style=&quot;color: rgb(47, 157, 39);&quot;&gt;StringExtention&lt;/span&gt;&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: rgb(70, 65, 217);&quot;&gt;public static int&lt;/span&gt; ToInt(&lt;span style=&quot;color: rgb(70, 65, 217);&quot;&gt;this string&lt;/span&gt; str)&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; {&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: rgb(70, 65, 217);&quot;&gt;int &lt;/span&gt;result = 0;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: rgb(70, 65, 217);&quot;&gt;try&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; result = int.Parse(str);&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: rgb(70, 65, 217);&quot;&gt;catch&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: rgb(70, 65, 217);&quot;&gt;return &lt;/span&gt;result;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; }&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;확장 메소드 등록 시 아래처럼 상용이 가능하다.&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border-style: solid; border-width: 1px; border-color: rgb(243, 197, 52); background-color: rgb(254, 254, 184); padding: 10px;&quot;&gt;&lt;p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 471px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22A02F33596FF6D508&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22A02F33596FF6D508&quot; width=&quot;471&quot; height=&quot;55&quot; filename=&quot;1111.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>Programming/C#</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/371</guid>
      <comments>https://blackg.tistory.com/371#entry371comment</comments>
      <pubDate>Thu, 20 Jul 2017 09:19:46 +0900</pubDate>
    </item>
    <item>
      <title>이미지 폴더의 하위 폴더 가져오기</title>
      <link>https://blackg.tistory.com/358</link>
      <description>&lt;p&gt;Android&amp;nbsp;- 이미지 폴더의 하위 폴더 가져오기&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;padding: 10px; border: 1px solid rgb(243, 197, 52); background-color: rgb(254, 254, 184);&quot;&gt;&lt;p&gt;&lt;span style=&quot;background-color: rgb(228, 228, 255);&quot;&gt;String&lt;/span&gt; path2 = Environment.&lt;span style=&quot;font-style: italic;&quot;&gt;getExternalStorageDirectory&lt;/span&gt;().toString()+&lt;span style=&quot;color: rgb(0, 128, 0); font-weight: bold;&quot;&gt;&quot;/Pictures/&quot;&lt;/span&gt;;&lt;br /&gt;Log.&lt;span style=&quot;font-style: italic;&quot;&gt;d&lt;/span&gt;(&lt;span style=&quot;color: rgb(0, 128, 0); font-weight: bold;&quot;&gt;&quot;H_Log&quot;&lt;/span&gt;, &lt;span style=&quot;color: rgb(0, 128, 0); font-weight: bold;&quot;&gt;&quot;Path: &quot; &lt;/span&gt;+ path2);&lt;br /&gt;File f = &lt;span style=&quot;color: rgb(0, 0, 128); font-weight: bold;&quot;&gt;new &lt;/span&gt;File(path2);&lt;br /&gt;File file[] = f.listFiles();&lt;br /&gt;Log.&lt;span style=&quot;font-style: italic;&quot;&gt;d&lt;/span&gt;(&lt;span style=&quot;color: rgb(0, 128, 0); font-weight: bold;&quot;&gt;&quot;H_Log&quot;&lt;/span&gt;, &lt;span style=&quot;color: rgb(0, 128, 0); font-weight: bold;&quot;&gt;&quot;Size: &quot;&lt;/span&gt;+ file.&lt;span style=&quot;color: rgb(102, 14, 122); font-weight: bold;&quot;&gt;length&lt;/span&gt;);&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 0, 128); font-weight: bold;&quot;&gt;for &lt;/span&gt;(&lt;span style=&quot;color: rgb(0, 0, 128); font-weight: bold;&quot;&gt;int &lt;/span&gt;i=&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;0&lt;/span&gt;; i &amp;lt; file.&lt;span style=&quot;color: rgb(102, 14, 122); font-weight: bold;&quot;&gt;length&lt;/span&gt;; i++)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Log.&lt;span style=&quot;font-style: italic;&quot;&gt;d&lt;/span&gt;(&lt;span style=&quot;color: rgb(0, 128, 0); font-weight: bold;&quot;&gt;&quot;H_Log&quot;&lt;/span&gt;, &lt;span style=&quot;color: rgb(0, 128, 0); font-weight: bold;&quot;&gt;&quot;FileName:&quot; &lt;/span&gt;+ file[i].getName());&lt;br /&gt;}&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>Programming/Android</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/358</guid>
      <comments>https://blackg.tistory.com/358#entry358comment</comments>
      <pubDate>Sun, 6 Dec 2015 16:04:09 +0900</pubDate>
    </item>
    <item>
      <title>[Bug Fix] Event Log Service file no found exception</title>
      <link>https://blackg.tistory.com/353</link>
      <description>&lt;p&gt;이벤트 로그 서비스가 시작이 안되고, 파일을 찾을 수 없다고 나올때 &lt;/p&gt;&lt;p&gt;레지스트리 값을 수정하자. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&quot;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventLog&quot;&lt;/p&gt;&lt;p&gt;경로의 &quot;Parameters&quot; 폴더를 삭제!&lt;br /&gt;&lt;/p&gt;</description>
      <category>TIP</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/353</guid>
      <comments>https://blackg.tistory.com/353#entry353comment</comments>
      <pubDate>Sat, 23 Aug 2014 10:40:11 +0900</pubDate>
    </item>
    <item>
      <title>[등산] 북한산 등산코스(왕복 4시간)</title>
      <link>https://blackg.tistory.com/351</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style=&quot;FLOAT: none; TEXT-ALIGN: center; CLEAR: none&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 400px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2471A84552AFF0EA31&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2471A84552AFF0EA31&quot; width=&quot;400&quot; height=&quot;247&quot; filename=&quot;이미지~1.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/P&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;북한산성 입구 &amp;gt;&amp;gt; 법용사 &amp;gt;&amp;gt; 용학사 &amp;gt;&amp;gt; 중성문 &amp;gt;&amp;gt; 용암문 &amp;gt;&amp;gt;&lt;br /&gt;대피소 &amp;gt;&amp;gt; 위문 &amp;gt;&amp;gt; 백운대&lt;br /&gt;&amp;nbsp;&lt;br /&gt;왕복 약 6시간 코스.&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;실제로는 왕복 약 4시간 반쯤 걸린듯.&lt;br /&gt;&lt;/P&gt;</description>
      <category>취미 및 기타등등/등산!</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/351</guid>
      <comments>https://blackg.tistory.com/351#entry351comment</comments>
      <pubDate>Tue, 17 Dec 2013 15:36:40 +0900</pubDate>
    </item>
    <item>
      <title>[Sharepoint] SPListItem Update 종류</title>
      <link>https://blackg.tistory.com/350</link>
      <description>&lt;P&gt;SPListItem 의 Update 속성은 아래 4가지가 있다.&lt;/P&gt;
&lt;P&gt;
&lt;TABLE style=&quot;BORDER-COLLAPSE: collapse; WIDTH: 859pt&quot; cellSpacing=0 cellPadding=0 width=1145 border=0&gt;
&lt;COLGROUP&gt;
&lt;COL style=&quot;WIDTH: 124pt; mso-width-source: userset; mso-width-alt: 5280&quot; width=165&gt;
&lt;COL style=&quot;WIDTH: 735pt; mso-width-source: userset; mso-width-alt: 31360&quot; width=980&gt;
&lt;TBODY&gt;
&lt;TR style=&quot;HEIGHT: 16.5pt&quot; height=22&gt;
&lt;TD class=xl65 style=&quot;BORDER-TOP: windowtext 0.5pt solid; HEIGHT: 16.5pt; BORDER-RIGHT: windowtext 0.5pt solid; BORDER-BOTTOM: windowtext 0.5pt solid; BORDER-LEFT: windowtext 0.5pt solid; WIDTH: 124pt; BACKGROUND-COLOR: transparent&quot; height=22 width=165&gt;&lt;A href=&quot;http://msdn.microsoft.com/en-us/library/ms461526.aspx&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc face=&quot;맑은 고딕&quot;&gt;SystemUpdate()&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/TD&gt;
&lt;TD class=xl66 style=&quot;BORDER-TOP: windowtext 0.5pt solid; BORDER-RIGHT: windowtext 0.5pt solid; BORDER-BOTTOM: windowtext 0.5pt solid; BORDER-LEFT: windowtext; WIDTH: 735pt; BACKGROUND-COLOR: transparent&quot; width=980&gt;&lt;FONT color=#000000 size=2 face=&quot;맑은 고딕&quot;&gt;수정자와 수정일자를 업데이트 하지않는고, 신규 버전을 생성 하지 않는다.&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style=&quot;HEIGHT: 16.5pt&quot; height=22&gt;
&lt;TD class=xl65 style=&quot;BORDER-TOP: windowtext; HEIGHT: 16.5pt; BORDER-RIGHT: windowtext 0.5pt solid; BORDER-BOTTOM: windowtext 0.5pt solid; BORDER-LEFT: windowtext 0.5pt solid; WIDTH: 124pt; BACKGROUND-COLOR: transparent&quot; height=22 width=165&gt;&lt;A href=&quot;http://msdn.microsoft.com/en-us/library/ms481195.aspx&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc face=&quot;맑은 고딕&quot;&gt;SystemUpdate(Boolean)&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/TD&gt;
&lt;TD class=xl66 style=&quot;BORDER-TOP: windowtext; BORDER-RIGHT: windowtext 0.5pt solid; BORDER-BOTTOM: windowtext 0.5pt solid; BORDER-LEFT: windowtext; WIDTH: 735pt; BACKGROUND-COLOR: transparent&quot; width=980&gt;&lt;FONT color=#000000 size=2 face=&quot;맑은 고딕&quot;&gt;수정자와 수정일자를 업데이트 하지않고, Boolean이 &quot;true&quot;일 경우 신규 버전을 생성 &quot;false&quot;일 경우 신규 버전을 생성하지 않는다.&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style=&quot;HEIGHT: 16.5pt&quot; height=22&gt;
&lt;TD class=xl65 style=&quot;BORDER-TOP: windowtext; HEIGHT: 16.5pt; BORDER-RIGHT: windowtext 0.5pt solid; BORDER-BOTTOM: windowtext 0.5pt solid; BORDER-LEFT: windowtext 0.5pt solid; WIDTH: 124pt; BACKGROUND-COLOR: transparent&quot; height=22 width=165&gt;&lt;A href=&quot;http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.update.aspx&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc face=&quot;맑은 고딕&quot;&gt;Update&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/A&gt;()&lt;/TD&gt;
&lt;TD class=xl67 style=&quot;BORDER-TOP: windowtext; BORDER-RIGHT: windowtext 0.5pt solid; BORDER-BOTTOM: windowtext 0.5pt solid; BORDER-LEFT: windowtext; BACKGROUND-COLOR: transparent&quot;&gt;&lt;FONT color=#000000 size=2 face=&quot;맑은 고딕&quot;&gt;수정자와 수정일자가 업데이트 되고 신규 버전이 생성 된다.&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style=&quot;HEIGHT: 16.5pt&quot; height=22&gt;
&lt;TD class=xl65 style=&quot;BORDER-TOP: windowtext; HEIGHT: 16.5pt; BORDER-RIGHT: windowtext 0.5pt solid; BORDER-BOTTOM: windowtext 0.5pt solid; BORDER-LEFT: windowtext 0.5pt solid; WIDTH: 124pt; BACKGROUND-COLOR: transparent&quot; height=22 width=165&gt;&lt;A href=&quot;http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.updateoverwriteversion.aspx&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc face=&quot;맑은 고딕&quot;&gt;UpdateOverwriteVersion&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/A&gt;()&lt;/TD&gt;
&lt;TD class=xl66 style=&quot;BORDER-TOP: windowtext; BORDER-RIGHT: windowtext 0.5pt solid; BORDER-BOTTOM: windowtext 0.5pt solid; BORDER-LEFT: windowtext; WIDTH: 735pt; BACKGROUND-COLOR: transparent&quot; width=980&gt;&lt;FONT color=#000000 size=2 face=&quot;맑은 고딕&quot;&gt;수정자와 수정일자가 업데이트 되고 신규 버전은 생성되지 않는다.&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Event Receiver의 ItemUpdated 메소드에서 SPListItem 을 업데이트 하는 경우 아래의 오류가 발생 되는 경우가 있다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class=txc-textbox style=&quot;BORDER-TOP: #f3c534 1px solid; BORDER-RIGHT: #f3c534 1px solid; BORDER-BOTTOM: #f3c534 1px solid; PADDING-BOTTOM: 10px; PADDING-TOP: 10px; PADDING-LEFT: 10px; BORDER-LEFT: #f3c534 1px solid; PADDING-RIGHT: 10px; BACKGROUND-COLOR: #fefeb8&quot;&gt;파일이 ******의 공유 사용을 위해 잠겼습니다. Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;이는&amp;nbsp;owa 또는 다른곳에서 해당 문서를 사용하는&amp;nbsp;경우&amp;nbsp;발생 되며,&amp;nbsp;이때는 SystemUpdate()&amp;nbsp;또는 SystemUpdate(false)를 사용하면 해결 된다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <category>Programming/Sharepoint</category>
      <category>Microsoft.SharePoint.SPGlobal.HandleComException</category>
      <category>SPListItem Update</category>
      <category>SystemUpdate()</category>
      <category>SystemUpdate(Boolean)</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/350</guid>
      <comments>https://blackg.tistory.com/350#entry350comment</comments>
      <pubDate>Tue, 12 Nov 2013 10:14:37 +0900</pubDate>
    </item>
    <item>
      <title>[SP2013 Error Fix] Microsoft.Office.Server.UserProfiles.LMTRepopulationJob</title>
      <link>https://blackg.tistory.com/349</link>
      <description>&lt;P&gt;Microsoft.Office.Server.UserProfiles.LMTRepopulationJob Exception 발생 시 &lt;/P&gt;
&lt;P&gt;AppFabricCachingService에서 발생 되는 문제로 해당 서비스를 초기화 해주자!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sharepoint Management Shell 에서 아래 명령 실행.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class=txc-textbox style=&quot;BORDER-TOP: #f3c534 1px solid; BORDER-RIGHT: #f3c534 1px solid; BORDER-BOTTOM: #f3c534 1px solid; PADDING-BOTTOM: 10px; PADDING-TOP: 10px; PADDING-LEFT: 10px; BORDER-LEFT: #f3c534 1px solid; PADDING-RIGHT: 10px; BACKGROUND-COLOR: #fefeb8&quot;&gt;&lt;SPAN class=&quot;crayon-r &quot;&gt;Restart-Service&lt;/SPAN&gt;&lt;SPAN class=crayon-h&gt; &lt;/SPAN&gt;&lt;SPAN class=crayon-i&gt;AppFabricCachingService&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <category>Programming/Sharepoint</category>
      <category>LMTRepopulationJob</category>
      <category>sharepoint</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/349</guid>
      <comments>https://blackg.tistory.com/349#entry349comment</comments>
      <pubDate>Wed, 17 Jul 2013 09:29:13 +0900</pubDate>
    </item>
    <item>
      <title>[Sharepoint2013][펌] SP 2013 아티클 모음</title>
      <link>https://blackg.tistory.com/347</link>
      <description>&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;1. Show Off Your Style with SharePoint Theming&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;Theming in SharePoint 2013 makes it easier to drastically change the look of your site and make it your own. That said, the new look of SharePoint sites is great, so why would you want to change it? &lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=1043&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=1043&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;2. Certain Microsoft SharePoint Server 2013 installation scenarios are not supported&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This article describes Microsoft SharePoint Server 2013 installation scenarios that are not supported.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://support.microsoft.com/kb/2764086&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://support.micros&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;oft.com/kb/2764086&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;3. Global Solutions for SharePoint 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This model provides architectural guidance for geographically distributed deployments of SharePoint 2013.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=34975&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.mi&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;crosoft.com/en-us/download/details.aspx?id=34975&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;4. Backup and restore: SharePoint Server 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This model illustrates various ways that you can back up and restore a SharePoint environment.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30365&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30365&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;5. Databases that support SharePoint 2013 Preview&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This model illustrates the databases that that support SharePoint 2013 Preview.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30363&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30363&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;6. Design Sample: Corporate Portal with Host-named Sites for SharePoint Server 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This design sample illustrates the use of host-named site collections with all sites deployed in a single web application on the farm. This method is highly scalable and is flexible in managing URLs.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30362&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.mic&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;rosoft.com/en-us/download/details.aspx?id=30362&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;7. Design Sample: Corporate Portal with Path-based Sites for SharePoint Server 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This design sample illustrates the use of path-based site collections with sites organized into dedicated web applications and a single top-level site collection per web application.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30378&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30378&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;8. Design Sample: Extranet with Dedicated Zones for Authentication for SharePoint 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This design sample illustrates many top-level project sites with vanity URLs by using host-named sites for each project site (instead of organizing project sites underneath a top-level site collection).&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30368&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30368&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;9. Downloadable eBook: Deployment guide for SharePoint 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;Download this free ebook to learn how to install and configure SharePoint Server and SharePoint Foundation.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30384&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30384&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;10. Downloadable eBook: Explore SharePoint 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;Download this free eBook to learn more about what's new in SharePoint 2013.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30368&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30368&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;11. Enterprise search architectures for SharePoint Server 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This design sample shows the search architecture for a variety of sizes of server farms.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30383&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30383&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;12. Incoming email planning worksheet&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This worksheet helps you record information to help you plan for incoming email in a SharePoint deployment. &lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=34805&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=34805&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;13. Microsoft SharePoint Products and Technologies Protocol Documentation&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;The Microsoft SharePoint Products and Technologies protocol documentation provides technical specifications for Microsoft proprietary protocols that are implemented and used in SharePoint Products and Technologies.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=25255&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=25255&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;14. Multi-farm architectures with SharePoint Server 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This model provides architectural guidance for multi-farm deployments of SharePoint Server 2013.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=34973&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=34973&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;15. Search architectures for SharePoint Server 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This design sample shows the search architecture for a medium size server farm.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30374&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.a&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;spx?id=30374&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;16. Services in SharePoint Server 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This illustration provides information about services that are available in SharePoint Server 2013.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30402&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/e&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;n-us/download/details.aspx?id=30402&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;17. SharePoint 2013 Upgrade Process&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This model explains the process that you use when you upgrade from SharePoint Foundation 2010 or SharePoint Server 2010 to SharePoint Foundation 2013 or SharePoint Server 2013.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30371&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30371&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;18. SharePoint 2013: App Overview for IT Pro&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;The app model in SharePoint 2013 enables SharePoint environments to add functionality quickly and securely.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30373&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30373&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;19. SharePoint 2013: How to Test Upgrade&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This model explains how to create a test environment to use when you upgrade from SharePoint Server 2010 or SharePoint Foundation 2010 to SharePoint 2013 Products &lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30366&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=303&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;66&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;20. Test Lab Guide: Configure SharePoint Server 2010 in a Three-Tier Farm&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This paper contains step-by-step instructions for creating a test lab containing a three-tier SharePoint farm.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=29420&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=29420&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;21.Topologies for SharePoint 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;The versatility of SharePoint 2013 provides opportunities to develop a topology that satisfies your business goals. &lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30377&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30377&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;22.User profile properties and profile synchronization planning worksheets for SharePoint Server 2013&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;The following planning worksheets can assist you when planning user profiles or planning and configuring profile synchronization.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=35404&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=35404&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;B&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;23.White Paper: Office 2013--Access Services Setup for an On-Premises Installation&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT color=#000000&gt;&lt;SPAN lang=EN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN&quot;&gt;This white paper provides instructions that will help you configure SQL Server 2012 for Access Services in SharePoint Server 2013. It includes instructions for an on-premises installation and configuration of Access Services on a server that is running SharePoint Server 2013.&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=30445&quot;&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Calibri','sans-serif'; COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=3&gt;http://www.microsoft.com/en-us/download/details.aspx?id=30445&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;FONT color=#000000 size=2 face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P  style=&quot;MARGIN: 0cm 0cm 0pt&quot;&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;FONT color=#000000 size=2 face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P  style=&quot;MARGIN: 0cm 0cm 0pt&quot;&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;FONT color=#000000 size=2 face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P  style=&quot;MARGIN: 0cm 0cm 0pt&quot;&gt;&lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;출처 : &lt;SPAN lang=EN style=&quot;mso-ansi-language: EN&quot;&gt;&lt;A href=&quot;http://msmvps.com/blogs/sundar_narasiman/default.aspx&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;SPAN style=&quot;COLOR: black; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%&quot;&gt;&lt;U&gt;&lt;FONT size=2 face=&quot;Times New Roman&quot;&gt;http://msmvps.com/blogs/sundar_narasiman/default.aspx&lt;/FONT&gt;&lt;/U&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <category>Programming/Sharepoint</category>
      <author>홍상길</author>
      <guid isPermaLink="true">https://blackg.tistory.com/347</guid>
      <comments>https://blackg.tistory.com/347#entry347comment</comments>
      <pubDate>Fri, 26 Apr 2013 11:37:37 +0900</pubDate>
    </item>
  </channel>
</rss>