<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>벌크랜드</title>
		<link>http://bulkdisk.tistory.com/</link>
		<description>컴퓨터 관련정보나 개인글 올리는 곳입니다.</description>
		<language>ko</language>
		<pubDate>Fri, 27 Apr 2012 18:23:15 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<managingEditor>벌커덕스</managingEditor>
		<image>
			<title>벌크랜드</title>
			<url>http://cfile2.uf.tistory.com/image/153E5E1049B00DAE0137FB</url>
			<link>http://bulkdisk.tistory.com</link>
			<description>컴퓨터 관련정보나 개인글 올리는 곳입니다.</description>
		</image>
		<item>
			<title>Unity3D 일일 자동 빌드 하기</title>
			<link>http://bulkdisk.tistory.com/88</link>
			<description>&lt;p&gt;현재 프로젝트가 Unity3D를 이용하여 개발을 진행하다 보니 일일 자동 빌드의 필요성이 있어 해당 기능을 적용하였다.
&lt;/p&gt;&lt;p&gt;우선 자동 빌드를 하기 위한 시스템에는 유니티 에디터가(빌더,컴파일러) 설치되어 있어야 한다.
&lt;/p&gt;&lt;p&gt;SCM은 SVN 대신 UnityAsset Server 를 쓰고 있으며 기본 플로우는 다음과 같다.
&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;ol style=&quot;margin-left: 38pt&quot;&gt;&lt;li&gt;AssetServer에서 최신 리소스 및 코드 다운로드.
&lt;/li&gt;&lt;li&gt;&lt;div&gt;빌드 진행. 
&lt;/div&gt;&lt;p&gt;(너무심플하다)
&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;물론 SVN이나 다른 것을 사용한다면 1번과정을 대체하면 된다.
&lt;/p&gt;&lt;p&gt;유니티에서는 명령줄 입력을 지원하므로 AssetServer에서 최신데이터 다운로드 및2번 빌드 과정은 unity.exe 를 이용한다.
&lt;/p&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;우선 배치파일을 아래와 같은 내용으로 작성한다. 명령줄에 대한 설명은 유니티 도움말 참조!!
&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Unity_build.bat
&lt;/p&gt;&lt;div&gt;&lt;table style=&quot;border-collapse:collapse&quot; border=&quot;0&quot;&gt;&lt;colgroup&gt;&lt;col style=&quot;width:638px&quot;&gt;&lt;/colgroup&gt;&lt;tbody valign=&quot;top&quot;&gt;&lt;tr style=&quot;height: 172px&quot;&gt;&lt;td style=&quot;padding-left: 7px; padding-right: 7px; border-top:  solid #f79646 1.0pt; border-left:  solid #f79646 1.0pt; border-bottom:  solid #f79646 2.25pt; border-right:  solid #f79646 1.0pt&quot;&gt;&lt;p&gt;@echo off
&lt;/p&gt;&lt;p&gt;net use x: \\fileserver\Project /user:user pass
&lt;/p&gt;&lt;p&gt;Echo [Process batchjob]=====================================================  &amp;gt;&amp;gt; unitybuild.log
&lt;/p&gt;&lt;p&gt;Echo %date% %time% [START] Update  &amp;gt;&amp;gt; unitybuild.log
&lt;/p&gt;&lt;p&gt;@&quot;D:\Program(x86)\Unity\Editor\Unity.exe&quot; -batchmode  -projectPath D:\Work\TalesStory -assetServerUpdate 175.211.69.106 TalesStory user pass -quit -nographics &amp;gt;&amp;gt; unitybuild.log
&lt;/p&gt;&lt;p&gt;Echo %date% %time% [BUILD] Unity batch build &amp;gt;&amp;gt; unitybuild.log
&lt;/p&gt;&lt;p&gt;@&quot;D:\Program(x86)\Unity\Editor\Unity.exe&quot; -quit -batchmode -projectPath D:\Work\TalesStory  -nographics -executeMethod MyEditorScript.PerformBuild &amp;gt;&amp;gt; unitybuild.log
&lt;/p&gt;&lt;p&gt;Echo %date% %time% [END]  &amp;gt;&amp;gt; unitybuild.log&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;net use 를 하는 것은 상기 배치파일을 서비스스케줄러에서 돌리게 되어 결과물이 저장될 서버에 미리 로그인해두는 것이다. 
&lt;/p&gt;&lt;p&gt;다음은 명령줄에서 실행할 스크립트 메서드(Batchbuild.cs)를 작성하여 Asset/Editor 폴더에 복사한다.
&lt;/p&gt;&lt;p&gt;UnityEditor.MenuItem 을 이용해서 유니티 메뉴에 등록하여 빌드 테스트도 가능하다.
&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/1752723C4F9A5B1130100C&quot; /&gt;
	&lt;/p&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;Batchbuild.cs
&lt;/p&gt;&lt;div&gt;&lt;table style=&quot;border-collapse:collapse&quot; border=&quot;0&quot;&gt;&lt;colgroup&gt;&lt;col style=&quot;width:638px&quot;&gt;&lt;/colgroup&gt;&lt;tbody valign=&quot;top&quot;&gt;&lt;tr style=&quot;height: 172px&quot;&gt;&lt;td style=&quot;padding-left: 7px; padding-right: 7px; border-top:  solid #f79646 1.0pt; border-left:  solid #f79646 1.0pt; border-bottom:  solid #f79646 2.25pt; border-right:  solid #f79646 1.0pt&quot;&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;using UnityEngine;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;using UnityEditor;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;using System;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt; 
&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;class MyEditorScript:  ScriptableObject
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;{
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static string version = PlayerSettings.bundleVersion;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;private static string version_template = &quot;public class Version  {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static string version = \&quot;$$version$$\&quot;;}&quot;;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//-----------------------------------------------------------------------------------------------------------------
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[UnityEditor.MenuItem(&quot;Tools/G Studio/About G Studio&quot;)]
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;static void About(){
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//요기다 디버그 찍어보자.
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Debug.Log(&quot;Application.dataPath=&quot;+Application.dataPath);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Debug.Log(&quot;version=&quot;+version);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Debug.Log(&quot;Version.version=&quot;+Version.version);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;WriteVersionFile(Application.dataPath+@&quot;\Source\GUIScripts\Version.cs&quot;,version_template.Replace(&quot;$$version$$&quot;,&quot;adfasdfasdf&quot;));
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;EditorUtility.DisplayDialog(&quot;G Studio v&quot; + version, &quot;G Studio Test Script Version &quot; + version + &quot;\n\nCopyright 2012 NEOCYON G Studio\nAll rights reserved.&quot;, &quot;OK&quot;);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;} 
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//-----------------------------------------------------------------------------------------------------------------
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[UnityEditor.MenuItem(&quot;Tools/G Studio/PerformBuild&quot;)]
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;     static void PerformBuild()
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;     {
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string dt = String.Format(@&quot;{0:yyyyMMdd}&quot;, DateTime.Now);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PlayerSettings.Android.bundleVersionCode +=1;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PlayerSettings.bundleIdentifier = &quot;com.neocyon.talesstory&quot;;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PlayerSettings.bundleVersion  = &quot;1.0.&quot; +PlayerSettings.Android.bundleVersionCode+&quot;.&quot;+ dt;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;WriteVersionFile(Application.dataPath+@&quot;\Source\GUIScripts\Version.cs&quot;,
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;version_template.Replace(&quot;$$version$$&quot;,PlayerSettings.bundleVersion));
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Debug.Log(&quot;PerformBuild()-Debug.Log&quot;);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;        //Console.WriteLine(&quot;PerformBuild()-Console&quot;);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//요건 안찍힘.
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;         string output = &quot;X:/40.배포/배치빌드/tailstory_&quot; + dt + &quot;-&quot; + PlayerSettings.Android.bundleVersionCode+&quot;.apk&quot;;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;         string[] scenes = { 
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Application.dataPath+&quot;/Scenes/LoadScene.unity&quot;,
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Application.dataPath+&quot;/Scenes/GameScene.unity&quot;
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;        BuildPipeline.BuildPlayer(scenes, output, BuildTarget.Android ,BuildOptions.None );
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;     }
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//-----------------------------------------------------------------------------------------------------------------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[UnityEditor.MenuItem(&quot;Tools/G Studio/Update Asset Server Data&quot;)]
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;     static void UpdateAssetfromServer()
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;     {
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Debug.Log(&quot;UpdateAssetfromServer()-Debug.Log&quot;);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;AssetDatabase.Refresh(ImportAssetOptions.Default);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;        //Console.WriteLine(&quot;PerformBuild()-Console&quot;);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//요건 안찍힘.
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//업데이트 수행하는 메서드 못찾음.
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;     }
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//-----------------------------------------------------------------------------------------------------------------
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private static void WriteVersionFile(string filePathname, string version)
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;using (System.IO.FileStream fs = System.IO.File.Create(filePathname))
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;byte[] info = new System.Text.UTF8Encoding(true).GetBytes(version);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fs.Write(info, 0, info.Length);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//fs.WriteText(version);
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;코드에 필요한 게 있다면 편집하면 된다. 
&lt;/p&gt;&lt;p&gt;프로젝트명-빌드날짜.apk로 빌드 되도록 구성하였다.
&lt;/p&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;여기에다가 빌드시 자동으로 빌드일자를 프로그램 내에 삽입하기 위하여 Version 클래스를 작성하고 참조하고 빌드전에 version.cs를 자동 생성시켜 내부에 버전정보를 표시토록 한다.
&lt;/p&gt;&lt;p&gt;
&amp;nbsp;&lt;/p&gt;&lt;p&gt;이후 윈도우 작업 스케줄러 에 해당 배치파일을 등록하면 끝. 
&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/114DF0414F9A5B130F7AB7&quot; /&gt;
	&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;매일 새벽 5시에 빌드가 된다. 자~알 된다. 아 물론 5시에 시스템 켜있어야한다. 그리고 유니티는 실행중이면 안된다. process 검사해서 kill 해주고 빌드 돌리는거 만들려다가 구차니즘으로 걍 pass!~&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-88-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-88-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-88-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=28584787&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/88&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/프로그래밍&quot;&gt;프로그래밍&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/88&quot; &gt;Unity3D 일일 자동 빌드 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
17:38:46&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/78&quot; &gt;C#  worker 스레드에서 UI 스레드 Dispatcher 이용하기.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/23&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/74&quot; &gt;VS2010 커맨드 라인 시스템 환경변수 요약&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/47&quot; &gt;#progma 지시어&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/12/17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/39&quot; &gt;VS 2005 편집창 검정톤 색상 스키마.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/38&quot; &gt;VB6 이나 VBA 윈도우에서 휠이 안먹는 경우&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>프로그래밍</category>
			<category>유니티</category>
			<category>한번만들고편하자</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/88</guid>
			<comments>http://bulkdisk.tistory.com/88#entry88comment</comments>
			<pubDate>Fri, 27 Apr 2012 17:38:46 +0900</pubDate>
		</item>
		<item>
			<title>어쩌다가 찾아볼일 생기는 메인보드 비프음 판독하기</title>
			<link>http://bulkdisk.tistory.com/87</link>
			<description>집에 컴퓨터가 많다보니 이런저런 수리할일이 생기는데 비프음가지고 장애유무를 판단해야한다.&lt;br /&gt;
그때마다 구글링하기도 불편하고..&lt;br /&gt;
&lt;br /&gt;바이오스 종류별로 잘 정리해논 사이트가 있다. 이거하나면 비프음이 뭔뜻인지 알수 있다.&lt;br /&gt;
&lt;br /&gt;&lt;a href=&quot;http://www.5starsupport.com/info/beep_codes.htm&quot;&gt;http://www.5starsupport.com/info/beep_codes.htm&lt;/a&gt;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;table border=&quot;1&quot; bgcolor=&quot;#9E0000&quot; cellpadding=&quot;4&quot; width=&quot;100%&quot; cellspacing=&quot;1&quot; style=&quot;font-family: Gulim; background-color: rgb(33, 33, 67); &quot;&gt;&lt;tbody&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; colspan=&quot;2&quot; height=&quot;19&quot; style=&quot;background-color: rgb(4, 9, 55); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#F3E9CD&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;AMI (American Megatrends') BIOS&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;DRAM refresh failure (Problem with memory)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Parity circuit failure&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Base 64K RAM failure&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;System Timer failure&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;five short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Processor failure&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;six short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Keyboard Controller / Gate A20 failure&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;seven short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Virtual Mode Exception error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;eight short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Display Memory Read/Write failure (fault with video card)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;nine short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;ROM BIOS Checksum error (fault with BIOS chip)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;ten short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;CMOS Shutdown Read/Write error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;eleven short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Cache memory&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Passed (no errors)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Video failure&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, three short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Base / Extended Memory failure&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, eight short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Display / Retrace Test failure&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; height=&quot;19&quot; colspan=&quot;2&quot; style=&quot;background-color: rgb(4, 9, 55); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#F3E9CD&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;AST Research BIOS&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Low level processor verification test failed (POST 1)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Clearing keyboard controller buffers failed (POST 2)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Keyboard controller reset failed (POST 3)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Low level keyboard controller interface test (POST 4)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;five short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Reading data from keyboard controller failed (POST 5)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;six short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;System board support chip initialization failed (POST 6)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;seven short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Processor register read/write verify test failed (POST 7)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;eight short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;CMOS timer initialization failed (POST 8)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;nine short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;ROM BIOS checksum test failed (POST 9)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;ten short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Initialize primary video (POST 10)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;eleven short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;8254 timer channel 0 test failed (POST 11)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;twelve short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;8254 timer channel 1 test failed (POST 12)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;thirteen short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;8254 timer channel 2 test failed (POST 13)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;fourteen short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;CMOS power-on and time test failed (POST 14)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;fifteen short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;CMOS shutdown byte test failed (POST 15)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;DMA channel 0 test failed (POST 16)&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, one short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;DMA channel 1 test failed (POST 17)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;DMA page register test failed (POST 18)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, three short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Keyboard controller interface test failed (POST 19)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, four short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Memory refresh toggle test failed (POST 20)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, five short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;First 64 KB memory test failed (POST 21)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, six short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Setup interrupt vector table failed (POST 22)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, seven short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Video initialization failed (POST 23)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, eight short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Video memory test failed (POST 24)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; colspan=&quot;2&quot; height=&quot;19&quot; style=&quot;background-color: rgb(4, 9, 55); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#F3E9CD&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Award BIOS&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Passed (no errors)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Any non-fatal error&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Video failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, three short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Keyboard Controller failure (applies to 286, 386 and 486)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; colspan=&quot;2&quot; height=&quot;19&quot; style=&quot;background-color: rgb(4, 9, 55); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#F3E9CD&quot;&gt;Compaq BIOS&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Indicates that the system is booting properly&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;General BIOS error - remedy unknown&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;one short, two long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;Memory Module&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, one short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;BIOS ROM checksum error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;Video error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;7 Beeps: one long, one short, one long, one short, pause, one long, two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;AGP Video&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;one long continuous tone&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;Memory Module&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; colspan=&quot;2&quot; height=&quot;19&quot; style=&quot;background-color: rgb(4, 9, 55); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#F3E9CD&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;IBM BIOS&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;none&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Power Supply or System Board failure (possible short)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one short&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Passed (no errors)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one short (blank screen)&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Video error (check cable)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one short (no boot)&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Floppy Drive error&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Configuration Error (displayed on screen)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;repeating short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Power Supply or System Board failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;continuous&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Power Supply or System Board / Keyboard stuck&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, one short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;System Board failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Video (Mono/CGA) failure (check cable)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, three short&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Video (EGA) failure (check cable)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Keyboard Card error&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; colspan=&quot;2&quot; height=&quot;19&quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#F3E9CD&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Mylex BIOS&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Normal boot&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;two&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Video adapter error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Keyboard controller error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Keyboard error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;five&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;PIC 0 error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;six&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;PIC 1 error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;seven&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;DMA page register error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;eight&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;RAM refresh error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;nine&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;RAM data error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;ten&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;RAM parity error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;eleven&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;DMA controller 0 error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;twelve&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;CMOS RAM error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;thirteen&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;DMA controller 1 error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;fourteen&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;CMOS RAM battery error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;fifteen&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;CMOS RAM checksum error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;sixteen&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;BIOS ROM checksum error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; colspan=&quot;2&quot; height=&quot;19&quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#F3E9CD&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Mylex 386 BIOS&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Normal boot&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;two long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Video adapter error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, one short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Keyboard controller error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, two short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Keyboard error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, three short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;PIC 0 error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long four short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;PIC 1 error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, five short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;DMA page register error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, six short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;RAM refresh error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, seven short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;RAM data error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, eight short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;RAM parity error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, nine short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;DMA controller 0 error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, ten short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;CMOS RAM error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, eleven short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;DMA controller 1 error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, twelve short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;CMOS RAM battery error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, thirteen short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;CMOS RAM checksum error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long fourteen short, one long&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;BIOS ROM checksum error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; colspan=&quot;2&quot; height=&quot;19&quot; style=&quot;background-color: rgb(4, 9, 55); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#F3E9CD&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Phoenix BIOS&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, one, three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;CMOS Read/Write&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, one, four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;ROM BIOS Checksum failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, two, one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Programmable Interval Timer failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, two, two&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;DMA Initialisation failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, two, three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;DMA Page Register Read/Write failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, three, one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;RAM Refresh Verification error&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, three, three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;First 64K RAM Chip/Data Line failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, three, four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;First 64K RAM Odd/Even Logic&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;17&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, four, one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;17&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;First 64K RAM: Address Line&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, four, two&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;First 64K RAM: Parity failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, four, three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Fail-Safe Timer Feature (EISA only)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one, four, four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Software NMI Port failure (EISA only)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;38&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;two (followed by various combinations)&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;38&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;First 64K RAM Chip/Data Line failure (combinations indicate which bit)&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three, one, one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Slave DMA Register failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three, one, two&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Master DMA Register failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three, one, three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Master Interrupt Mask Register failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three, one, four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Slave Interrupt Mask Register failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three, two, four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Keyboard Controller failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three, three, four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Display Memory failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three, four, one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Display Retrace failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;three, four, two&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Video ROM search proceeding&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, two, one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Timer Tick failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, two, two&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Shutdown failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, two, three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Gate A20 failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, two, four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Unexpected Interrupt in Protected Mode&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, three, one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;RAM test above 64K failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, three, two/three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Programmable Interval Timer, Channel 2 failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, three, four&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Realtime Clock failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, four, one&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Serial Port error&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, four, two&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Parallel Port error&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;four, four, three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Math Co-processor failure&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;(tone) one, one, two&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;System Board Select&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;(tone) one, one, three&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Extender CMOS RAM&amp;nbsp;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;102%&quot; colspan=&quot;2&quot; height=&quot;19&quot; style=&quot;background-color: rgb(4, 9, 55); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#F3E9CD&quot;&gt;Quadtel BIOS&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Beep Codes&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(192, 192, 192); &quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;b&gt;&lt;font color=&quot;#212143&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;Message&amp;nbsp;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;Indicates that the system is booting properly&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;CMOS IC error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font color=&quot;#004080&quot; size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;one long, two short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;Video error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td width=&quot;38%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot; color=&quot;#004080&quot;&gt;one long, three short&lt;/font&gt;&lt;/td&gt;
&lt;td width=&quot;64%&quot; height=&quot;19&quot; style=&quot;background-color: rgb(245, 245, 245); &quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot; color=&quot;#004080&quot;&gt;Peripheral controller error&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-87-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-87-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-87-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24464885&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/87&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/파워컴퓨팅/컴퓨터활용&quot;&gt;컴퓨터활용&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/87&quot; &gt;어쩌다가 찾아볼일 생기는 메인보드 비프음 판독하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2012/01/11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/86&quot; &gt;EXCEL VBA - 다른파일 스크립트 호출 및 종료&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2012/01/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/85&quot; &gt;ER Studio Entity Name to Clipboard Sample Code&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/12/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/84&quot; &gt;윈도 비스타이상 관리자에서 C$, D$, ... 공유활성화 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/11/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/69&quot; &gt;Bcd 저장소에 리얼모드 부팅 지정하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/61&quot; &gt;해상도 비교용 월페이퍼&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/07&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>컴퓨터활용</category>
			<category>BIOS</category>
			<category>메인보드</category>
			<category>비프음</category>
			<category>하드웨어</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/87</guid>
			<comments>http://bulkdisk.tistory.com/87#entry87comment</comments>
			<pubDate>Wed, 11 Jan 2012 12:10:55 +0900</pubDate>
		</item>
		<item>
			<title>EXCEL VBA - 다른파일 스크립트 호출 및 종료</title>
			<link>http://bulkdisk.tistory.com/86</link>
			<description>VBA코드의 재사용및 관리를 위하여 해당 데이터가 들어있는 엑셀에서는 비지니스 로직이 들어있는 코드를 생성하지 않는다.&lt;br /&gt;
하나의 엑셀파일에 모든 VBA코드를 작성/관리하고 데이터가 있는 엑셀파일에서 해당 기능을 호출하는 것.&lt;br /&gt;
&lt;br /&gt;이전에는 데이터엑셀이 열릴때 스크립트들어있는 엑셀을 같이 열도록 매크로를 지정하였으나&lt;br /&gt;
스크립트가 필요한경우만 스크립트엑셀파일을 로딩. 작업후 닫도록 함.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;1. 폼에 양식을 이용해서 버튼 생성&lt;br /&gt;
2. 버튼에 매크로를 생성하여 지정&lt;br /&gt;
3. 매크로에 아래 코드 수정하여 기입.&lt;br /&gt;
&lt;br /&gt;&lt;div&gt;
Sub Macro1()&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; 'Application.Run ThisWorkbook.Path &amp;amp; &quot;\..\테이블관리\VBA_Script.xls!Menu&quot;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&amp;nbsp; &amp;nbsp; 'Application.Run &quot;'D:\Work\테이블관리\VBA_Script.xls'!Menu&quot;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; Dim strPathName As String&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; Dim strFIleName As String&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; Dim strMethod As String&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; Dim varParam1 As Variant&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; strPathName = &quot;D:\Work\테이블관리\&quot; 'ActiveWorkbook.Path&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; strFIleName = &quot;VBA_Script.xls&quot;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; strMethod = &quot;buildscript&quot;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; varParam1 = 1&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; Application.Run &quot;'&quot; &amp;amp; strPathName &amp;amp; strFIleName &amp;amp; &quot;'!&quot; &amp;amp; strMethod, varParam1&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; 'ActiveWindow.ActivateNext&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; Windows(strFIleName).Activate&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; ActiveWindow.Close&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
End Sub&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-86-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-86-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-86-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=24187972&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/86&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/파워컴퓨팅/컴퓨터활용&quot;&gt;컴퓨터활용&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/87&quot; &gt;어쩌다가 찾아볼일 생기는 메인보드 비프음 판독하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2012/01/11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/86&quot; &gt;EXCEL VBA - 다른파일 스크립트 호출 및 종료&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2012/01/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/85&quot; &gt;ER Studio Entity Name to Clipboard Sample Code&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/12/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/84&quot; &gt;윈도 비스타이상 관리자에서 C$, D$, ... 공유활성화 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/11/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/69&quot; &gt;Bcd 저장소에 리얼모드 부팅 지정하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/61&quot; &gt;해상도 비교용 월페이퍼&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/07&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>컴퓨터활용</category>
			<category>VBA</category>
			<category>엑셀</category>
			<category>한번만들고편하자</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/86</guid>
			<comments>http://bulkdisk.tistory.com/86#entry86comment</comments>
			<pubDate>Tue, 03 Jan 2012 17:08:17 +0900</pubDate>
		</item>
		<item>
			<title>ER Studio Entity Name to Clipboard Sample Code</title>
			<link>http://bulkdisk.tistory.com/85</link>
			<description>&lt;div&gt;
Sub Main&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Dim mdl As Model&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Dim ent As Entity&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Dim attr As AttributeObj&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Dim strResult As String&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Set mdl = DiagramManager.ActiveDiagram.ActiveModel&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Set sm = mdl.ActiveSubModel&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;strResult =&quot;&quot;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;For Each ent In mdl.Entities&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;strResult = strResult &amp;amp; &amp;nbsp;ent.EntityName &amp;amp; vbCrLf&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;For Each attr In ent.Attributes&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt;strResult = strResult &amp;amp; vbTab &amp;amp; attr.ColumnName &amp;amp; vbCrLf 'vbTab &amp;amp;&quot; [&quot; &amp;amp; attr.Datatype &amp;amp; &quot;]&quot; &amp;amp; vbCrLf&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;Next&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;strResult = strResult &amp;amp; &amp;nbsp;vbCrLf&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; Next&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Clipboard strResult&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;MsgBox &quot;Set Clipboard&quot;&lt;/div&gt;
&lt;div&gt;End Sub&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-85-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-85-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-85-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=23902551&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/85&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/파워컴퓨팅/컴퓨터활용&quot;&gt;컴퓨터활용&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/87&quot; &gt;어쩌다가 찾아볼일 생기는 메인보드 비프음 판독하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2012/01/11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/86&quot; &gt;EXCEL VBA - 다른파일 스크립트 호출 및 종료&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2012/01/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/85&quot; &gt;ER Studio Entity Name to Clipboard Sample Code&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/12/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/84&quot; &gt;윈도 비스타이상 관리자에서 C$, D$, ... 공유활성화 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/11/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/69&quot; &gt;Bcd 저장소에 리얼모드 부팅 지정하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/61&quot; &gt;해상도 비교용 월페이퍼&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/07&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>컴퓨터활용</category>
			<category>code</category>
			<category>ER</category>
			<category>sample</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/85</guid>
			<comments>http://bulkdisk.tistory.com/85#entry85comment</comments>
			<pubDate>Mon, 26 Dec 2011 12:20:41 +0900</pubDate>
		</item>
		<item>
			<title>윈도 비스타이상 관리자에서 C$, D$, ... 공유활성화 하기</title>
			<link>http://bulkdisk.tistory.com/84</link>
			<description>원래 윈도에서는 루트드라이브가 $ 기호가 붙여 기본공유로 설정이 되어있는데 이것이 활성화가 되지 않아 관리가 불편할때가 있다. &amp;nbsp;활성화 위해서는&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
레지스트리에 아래 키값 추가. 재부팅 안해도 됨.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;p id=&quot;more84_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, '84_0','더보기','접기'); return false;&quot;&gt;더보기&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content84_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Windows Registry Editor Version 5.00&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&quot;LocalAccountTokenFilterPolicy&quot;=dword:00000001&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;;http://www.howtogeek.com/howto/windows-vista/enable-mapping-to-hostnamec-share-on-windows-vista/&lt;/p&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-84-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-84-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-84-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=22242404&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/84&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/파워컴퓨팅/컴퓨터활용&quot;&gt;컴퓨터활용&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/86&quot; &gt;EXCEL VBA - 다른파일 스크립트 호출 및 종료&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2012/01/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/85&quot; &gt;ER Studio Entity Name to Clipboard Sample Code&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/12/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/84&quot; &gt;윈도 비스타이상 관리자에서 C$, D$, ... 공유활성화 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/11/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/69&quot; &gt;Bcd 저장소에 리얼모드 부팅 지정하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/61&quot; &gt;해상도 비교용 월페이퍼&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/51&quot; &gt;SBS 라디오 초간단 청취하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(2)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/03/13&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>컴퓨터활용</category>
			<category>레지</category>
			<category>모아두자</category>
			<category>윈도우</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/84</guid>
			<comments>http://bulkdisk.tistory.com/84#entry84comment</comments>
			<pubDate>Mon, 07 Nov 2011 14:51:09 +0900</pubDate>
		</item>
		<item>
			<title>엑셀에서 VBA 활용하여 UTF8 CSV로 저장하기</title>
			<link>http://bulkdisk.tistory.com/83</link>
			<description>매크로의 ADODB Stream 을 이용.&lt;br /&gt;
&lt;br /&gt;---------------------------------------------------------&lt;br /&gt;
&lt;div&gt;Sub test1()&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&amp;nbsp; Set fs = CreateObject(&quot;ADODB.Stream&quot;)&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; fs.Type = 2&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; fs.Charset = &quot;utf-8&quot;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; fs.Open&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; For i = 1 To 10&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; For j = 1 To 10&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fs.writetext Cells(i, j) &amp;amp; &quot;,&quot;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Next&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fs.writetext vbCrLf&lt;/div&gt;
&lt;div&gt;&amp;nbsp; &amp;nbsp; Next&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&amp;nbsp; &amp;nbsp; fs.SaveToFile &quot;d:\temp\excel_utf8_1.csv&quot;, 2&lt;br /&gt;
&amp;nbsp;&lt;/div&gt;
&lt;div&gt;End Sub&lt;/div&gt;
------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;위의 예제중 행과 열의 맥스치는 적당히 조절.. &amp;nbsp;마지막 태그를 두어도 상관없음.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&amp;nbsp;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-83-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-83-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-83-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=19135449&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/83&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/83&quot; &gt;엑셀에서 VBA 활용하여 UTF8 CSV로 저장하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/08/01&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/11&quot; &gt;폴더안의 파일을 텍스트로 만들기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(4)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/31&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/10&quot; &gt;USB 메모리를 이용한 컴퓨터 활용방법&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/27&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>파워컴퓨팅</category>
			<category>excel</category>
			<category>UTF-8</category>
			<category>VBA</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/83</guid>
			<comments>http://bulkdisk.tistory.com/83#entry83comment</comments>
			<pubDate>Mon, 01 Aug 2011 11:36:55 +0900</pubDate>
		</item>
		<item>
			<title>싸이월드 미니라이프 서비스 종료.</title>
			<link>http://bulkdisk.tistory.com/82</link>
			<description>예전 커뮤니티게임 개발할당시 많이 염두해 두었던 싸이월드 미니라이프가 종료한다고 한다..&lt;br /&gt;
몇달전 피망의 데뷰도 종료 했는데.. &lt;br /&gt;
&lt;br /&gt;시장성 없다는 얘기.... &amp;nbsp;좋은 보기가 된듯..&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;----------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;&amp;nbsp;미니라이프 서비스 종료 안내&lt;div class=&quot;notice_contents_title&quot;&gt;
&lt;p class=&quot;list_info&quot;&gt;&lt;em class=&quot;number&quot;&gt;번호 0&lt;/em&gt; &lt;em&gt;작성일 2011.07.27&lt;/em&gt; &lt;em class=&quot;count&quot;&gt;조회수 192&lt;/em&gt; &lt;/p&gt;
&lt;/div&gt;
&lt;p style=&quot;MARGIN: 27px 0px 0px&quot;&gt;
&lt;/p&gt;
&lt;p&gt;안녕하세요. 사이좋은 사람들, 싸이월드입니다.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;그 동안 미니라이프 서비스를 이용해 주신 회원님께 진심으로 감사 드립니다.&lt;/p&gt;
&lt;p&gt;아바타와 공간에서 즐기는 3D 커뮤니티 서비스인 미니라이프 서비스는  &lt;/p&gt;
&lt;p&gt;회원 감소로 운영/유지에 어려움이 있어 부득이 서비스를 종료하게 되는 점 양해 부탁 드립니다.&lt;/p&gt;
&lt;p&gt;서비스 종료 및 환불에 대한 자세한 내용을 다음과 같이 안내해드립니다.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://minilife.cyworld.com/&quot; target=&quot;blank&quot;&gt;&lt;font color=&quot;#0000ff&quot;&gt;&lt;u&gt;▶ 
미니라이프 바로가기&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#0000ff&quot;&gt; &lt;br /&gt;
&lt;/font&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font color=&quot;#0078e1&quot;&gt;1. 미니라이프 종료 일정&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;- 2011년 8월 24일(수) : 선물 받기 승인을 하지 않은 미니라이프 선물 일괄 회수(선물하신 회원님께 도토리로 환불), &lt;/p&gt;
&lt;p&gt;                                선물가게 및 미니홈피 내 미니라이프 관련 메뉴 삭제&lt;/p&gt;
&lt;p&gt;- 2011년 8월 31일(수) : 미니라이프 서비스 종료&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font color=&quot;#0078e1&quot;&gt;2. 미니라이프 환불 안내&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;- 환불 대상 : 미니라이프 종료 시점을 기준으로 유효한 유료 아이템&lt;/p&gt;
&lt;p&gt;- 환불 수단 : 도토리&lt;/p&gt;
&lt;p&gt;- 환불 방법 : 회원님의 싸이월드 계정으로 환불 일 내에 도토리로 자동 지급&lt;/p&gt;
&lt;p&gt;- 환불 액 = (서비스를 제공 받지 못 한 일 수 ÷ 총 서비스 제공 일 수) × 해당 유료 아이템 결제 금액&lt;/p&gt;
&lt;p&gt;               &lt;font color=&quot;#747474&quot;&gt; * 서비스를 제공받지 못 한 일 수 = 총 서비스 제공 일 수 - 서비스 
제공 일 수&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;- 환불 일 : 2011년 9월 15(목)&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font color=&quot;#0078e1&quot;&gt;3. 백업 시스템 운영 안내&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;- 백업 대상 : 미니라이프 뽐내기 게시판 (카툰 뽐내기, 사진 뽐내기, 아바타 콘테스트)&lt;/p&gt;
&lt;p&gt;- 백업 방식 : 백업 시스템에서 원하는 게시판 백업 신청 후, 회원님의 PC에 백업 파일이 생성되는 방식&lt;/p&gt;
&lt;p&gt;- 백업 기간 : 2011년 8월 31일 ~ 2011년 10월 31일&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font color=&quot;#0078e1&quot;&gt;4. 기타 사항&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;- 아이템을 선물 받은 회원님들 중, 수락 및 거절을 하지 않은 회원님들의 선물은 &lt;/p&gt;
&lt;p&gt;  선물을 하신 회원님께 일괄적으로 반환됩니다. (2011년 8월 24일 ~ 2011년 8월 30일)&lt;/p&gt;
&lt;p&gt;- 회원 탈퇴 시 환불이 불가합니다.&lt;/p&gt;
&lt;p&gt;- 선물 일괄 반환 기간에 선물가게 및 미니홈피 내 미니라이프 관련 메뉴가 삭제됩니다.&lt;/p&gt;
&lt;p&gt;- 미니홈피 꾸미기룸 설정에서, 설정상태가 미니라이프로 선택되어 있는 경우, 미니룸으로 자동 변경됩니다.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;기타 문의 사항은 &lt;a href=&quot;http://helpdesk.nate.com/&quot; target=&quot;_blank&quot;&gt;&lt;u&gt;&lt;font color=&quot;#575757&quot;&gt;네이트/싸이월드 고객센터&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;로 문의해 주시면 친절하게 안내해 드리겠습니다.&lt;/p&gt;
&lt;p&gt;그동안 미니라이프를 이용해 주신 회원님께 다시 한번 깊은 감사의 말씀을 올리며, 차후 보다 좋은 서비스로 찾아 뵙겠습니다. &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;고맙습니다.&lt;/p&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-82-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-82-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-82-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=19050121&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/82&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/끄적끄적.&quot;&gt;끄적끄적.&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/82&quot; &gt;싸이월드 미니라이프 서비스 종료.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/07/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/70&quot; &gt;백업용 미디어 단가 비교해보니..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/64&quot; &gt;백업용 미디어 단가 비교해보니 차라리 HDD를 쓰자&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(1)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/7&quot; &gt;MS의 IE8 정식버전 출시...과연 쓸만할지...&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/20&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/4&quot; &gt;포터블 프로그램&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/3&quot; &gt;마구잡이식 설치프로그램에 관하여..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/09&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>끄적끄적.</category>
			<category>벤치마크</category>
			<category>소셜게임</category>
			<category>역시 안따라하길 잘했다</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/82</guid>
			<comments>http://bulkdisk.tistory.com/82#entry82comment</comments>
			<pubDate>Thu, 28 Jul 2011 19:36:21 +0900</pubDate>
		</item>
		<item>
			<title>Total commander for android 정보.</title>
			<link>http://bulkdisk.tistory.com/81</link>
			<description>그동안 CBT를 하던 Total commander for Android 가 OBT로 전환되었군요...&lt;br /&gt;
&lt;br /&gt;
포럼 주소는&amp;nbsp;&lt;br /&gt;
&lt;a href=&quot;http://www.ghisler.ch/board/viewforum.php?f=22&quot;&gt;http://www.ghisler.ch/board/viewforum.php?f=22&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.ghisler.ch/board/viewtopic.php?t=29772&quot;&gt;

&lt;/a&gt;&lt;br /&gt;
히스토리는 &amp;nbsp;&lt;br /&gt;
&lt;a href=&quot;http://ghisler.fileburst.com/android/history.txt&quot;&gt;http://ghisler.fileburst.com/android/history.txt&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
현재 등록된 다운로드 주소는&amp;nbsp;&lt;br /&gt;
&lt;a href=&quot;http://ghisler.fileburst.com/android/tc_b9.apk &quot;&gt;http://ghisler.fileburst.com/android/tc_b9.apk &lt;/a&gt;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
플러그인 다운로드 주소는&lt;br /&gt;
&lt;a href=&quot;http://www.ghisler.com/androidplugins/&quot;&gt;http://www.ghisler.com/androidplugins/&lt;/a&gt;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-81-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-81-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-81-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=18061717&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/81&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/81&quot; &gt;Total commander for android 정보.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/80&quot; &gt;안드로이드 환경변수 및 JAVA 환경변수&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/73&quot; &gt;갤럭시U 서비스 코드 바이너리 데이터&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/72&quot; &gt;갤럭시U(SHW-M130L) 시스템 기본어플 정리&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/04/29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<category>Android</category>
			<category>Total Commander</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/81</guid>
			<comments>http://bulkdisk.tistory.com/81#entry81comment</comments>
			<pubDate>Tue, 28 Jun 2011 12:07:30 +0900</pubDate>
		</item>
		<item>
			<title>안드로이드 환경변수 및 JAVA 환경변수</title>
			<link>http://bulkdisk.tistory.com/80</link>
			<description>&lt;div&gt;
java 환경변수 세팅 &amp;nbsp;-- bybulker 오전 10:50 2011-06-28&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;JAVA_HOME=D;\SDK\jdk1.6.0_26&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
- CLASSPATH 아래와 같이 기본경로만 넣어도 되지만 뭔가 동작이 이상할때는 아래처럼 더 추가해본다.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
CLASSPATH=.;&lt;/div&gt;
&lt;div&gt;CLASSPATH=.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tool.jar;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;PATH=%path%;JAVA_HOME%\bin;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;*JRE 같은 경우는 원래 JAVA_HOME 아래 jre\bin 에 런타임이 있다. &amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;간혹 JRE_HOME 이라는 환경변수도 필요할수 있다.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
-----------------------------------------------------------------------------------------&lt;/div&gt;
&lt;div&gt;* 안드로이드SDK를 사용하기 위한 path&lt;/div&gt;
&lt;div&gt;안드로이드 SDK 내의 tools 폴더와 platform-tools 를 같이 추가해주어야함&lt;/div&gt;
&lt;div&gt;ANDROID_SDK_HOME= &amp;nbsp; 요건 .android 라는 폴더가 생길 상위 폴더 지정 (SDK User data AVD 경로) d:\documnets&lt;/div&gt;
&lt;div&gt;ANDRIOD_SDK_ROOT= SDK 설치경로 지정 &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;PATH=%path%;%ANDROID_SDK_ROOT%\tools;%ANDROID_SDK_ROOT%\flatform-tools&lt;br /&gt;
&lt;br /&gt;* 에뮬레이터 쪽에서는 ANDROID_SDK_HOME 내의 AVD를 이용하는 듯하다.&lt;br /&gt;
* &amp;nbsp;%temp% 아래에&amp;nbsp;d:\Temp\temp-android-tool\ 처럼 폴더가 생기고 프로그램도 구동 된다.&lt;br /&gt;
&lt;br /&gt;&amp;nbsp;&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-80-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-80-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-80-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=18061184&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/80&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/81&quot; &gt;Total commander for android 정보.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/80&quot; &gt;안드로이드 환경변수 및 JAVA 환경변수&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/73&quot; &gt;갤럭시U 서비스 코드 바이너리 데이터&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/72&quot; &gt;갤럭시U(SHW-M130L) 시스템 기본어플 정리&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/04/29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<category>Android</category>
			<category>java</category>
			<category>JRE</category>
			<category>SDK</category>
			<category>환경변수</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/80</guid>
			<comments>http://bulkdisk.tistory.com/80#entry80comment</comments>
			<pubDate>Tue, 28 Jun 2011 11:54:40 +0900</pubDate>
		</item>
		<item>
			<title>C#  worker 스레드에서 UI 스레드 Dispatcher 이용하기.</title>
			<link>http://bulkdisk.tistory.com/78</link>
			<description>UI 스레드에 갱신요청하기 위해 아래처럼 대리자, 콜러, 본체로 나눠서 코딩하다가 간단하게 할수 있는 방법을 발견 !!&lt;br /&gt;
&lt;br /&gt;
&lt;pre style=&quot;font-family:DotumChe;font-size:13;color:black;background:white;&quot;&gt;&lt;span style=&quot;color:blue;&quot;&gt;public&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;delegate&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;void&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#2b91af;&quot;&gt;ShowButtonDelegate&lt;/span&gt;(&lt;span style=&quot;color:blue;&quot;&gt;bool&lt;/span&gt;&amp;nbsp;IsShow);
&lt;span style=&quot;color:blue;&quot;&gt;public&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;void&lt;/span&gt;&amp;nbsp;ShowButtonCaller(&lt;span style=&quot;color:blue;&quot;&gt;bool&lt;/span&gt;&amp;nbsp;IsShow)
{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;if&lt;/span&gt;&amp;nbsp;(canvasButtonGroup.Dispatcher.CheckAccess())
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ShowButtonBody(IsShow);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;else&lt;/span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Dispatcher.Invoke(&lt;span style=&quot;color:blue;&quot;&gt;new&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#2b91af;&quot;&gt;ShowButtonDelegate&lt;/span&gt;(ShowButtonBody),&amp;nbsp;IsShow);
}
&lt;span style=&quot;color:blue;&quot;&gt;private&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;void&lt;/span&gt;&amp;nbsp;ShowButtonBody(&lt;span style=&quot;color:blue;&quot;&gt;bool&lt;/span&gt;&amp;nbsp;IsShow)
{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;DebugWrite(&lt;span style=&quot;color:#a31515;&quot;&gt;&quot;ShowButtonBody&amp;nbsp;=&quot;&lt;/span&gt;&amp;nbsp;+&amp;nbsp;IsShow.ToString());&lt;br /&gt;
}&lt;/pre&gt;------------------------------------&lt;br /&gt;
윈폼 ----------------------------&lt;br /&gt;
&lt;pre style=&quot;font-family:DotumChe;font-size:13;color:black;background:white;&quot;&gt;&lt;span style=&quot;color:blue;&quot;&gt;this&lt;/span&gt;.Invoke(&lt;span style=&quot;color:blue;&quot;&gt;new&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#2b91af;&quot;&gt;MethodInvoker&lt;/span&gt;(&lt;span style=&quot;color:blue;&quot;&gt;delegate&lt;/span&gt;()
{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mnuConnectServer.Enabled&amp;nbsp;=&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;true&lt;/span&gt;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mnuStartServer.Enabled&amp;nbsp;=&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;true&lt;/span&gt;;
}));&lt;br /&gt;
&lt;/pre&gt;------------------------------------&lt;br /&gt;
WPF&amp;nbsp;----------------------------&lt;br /&gt;
&lt;pre style=&quot;font-family:DotumChe;font-size:13;color:black;background:white;&quot;&gt;MainUI.Dispatcher.BeginInvoke(System.Windows.Threading.&lt;span style=&quot;color:#2b91af;&quot;&gt;DispatcherPriority&lt;/span&gt;.Normal,&amp;nbsp;&lt;br /&gt;
&lt;span style=&quot;color:blue;&quot;&gt;new&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#2b91af;&quot;&gt;DispatcherOperationCallback&lt;/span&gt;(&lt;span style=&quot;color:blue;&quot;&gt;delegate&lt;/span&gt;
{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;MainUI.ResetGame(user.m_nID);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;return&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:blue;&quot;&gt;null&lt;/span&gt;;&amp;nbsp;&lt;br /&gt;
}),&amp;nbsp;&lt;span style=&quot;color: blue; &quot;&gt;null&lt;/span&gt;);&amp;nbsp;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51); font-family: 굴림; white-space: normal; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
------------------------------------&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: DotumChe; white-space: pre; background-color: rgb(255, 255, 255); &quot;&gt;Invoke : 동기&lt;br /&gt;
&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: DotumChe; white-space: pre; background-color: rgb(255, 255, 255); &quot;&gt;BeginInvoke : 비동기&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: DotumChe; white-space: pre; background-color: rgb(255, 255, 255); &quot;&gt;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
------------------------------------&lt;br /&gt;
&amp;nbsp;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-78-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-78-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-78-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=17907597&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/78&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/프로그래밍&quot;&gt;프로그래밍&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/88&quot; &gt;Unity3D 일일 자동 빌드 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
17:38:46&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/78&quot; &gt;C#  worker 스레드에서 UI 스레드 Dispatcher 이용하기.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/23&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/74&quot; &gt;VS2010 커맨드 라인 시스템 환경변수 요약&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/47&quot; &gt;#progma 지시어&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/12/17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/39&quot; &gt;VS 2005 편집창 검정톤 색상 스키마.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/38&quot; &gt;VB6 이나 VBA 윈도우에서 휠이 안먹는 경우&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>프로그래밍</category>
			<category>c#</category>
			<category>팁</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/78</guid>
			<comments>http://bulkdisk.tistory.com/78#entry78comment</comments>
			<pubDate>Thu, 23 Jun 2011 10:31:21 +0900</pubDate>
		</item>
		<item>
			<title>bcdedit.exe Document</title>
			<link>http://bulkdisk.tistory.com/77</link>
			<description>bcdedit.exe 를 이용해서 이런저런 작업을 하다 보면 제일 자주 하는게 /? 입력해서 확인하는거다. 정리를 한번 해둘 필요는 느끼긴하지만 그것도 차일피일 미루다가..&lt;br /&gt;
&lt;br /&gt;우선 웹검색을 해보니 커맨드 관련해서 마이크로소프트에서 나온 문서가 있다.&lt;br /&gt;
docx 파일이라 간단하게 보긴 어렵고 해서 붙여놓는다. &lt;br /&gt;
따로 정리하지 않고 docx문서 통채 붙여놓는거라 찾기로 찾아봐야한다.&lt;br /&gt;
필요시 열어서 보도록 하자.. &lt;br /&gt;
원본링크는&amp;nbsp;&lt;a href=&quot;http://msdn.microsoft.com/en-us/windows/hardware/gg463064.aspx&quot;&gt;http://msdn.microsoft.com/en-us/windows/hardware/gg463064.aspx&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;그래도 /? 는 앞으로 죽을때까지 애용될거 같은 느낌이...&lt;br /&gt;
&lt;br /&gt;&lt;p id=&quot;more77_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, '77_0','더보기','접기'); return false;&quot;&gt;더보기&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content77_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Reference&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;January 31, 2008&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Abstract&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;In Windows Vista® and later versions, the boot configuration data (BCD) store contains the boot configuration parameters and controls the computer’s boot environment. BCDEdit is a Windows Vista command-line tool that can be used to add, delete, edit, and modify data in a BCD store. This paper is a reference for BCDEdit commands, data types, and well-known identifiers.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This information applies for the following operating systems:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Windows Server® 2008&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Windows Vista&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;For the latest information, see:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;http://www.microsoft.com/whdc/system/platform/firmware/bcdeditref.mspx&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;References and resources discussed here are listed at the end of this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Disclaimer: This is a preliminary document and may be changed substantially prior to final commercial release of the software described herein.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of publication. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This White Paper is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Complying with all applicable copyright laws is the responsibility of the user. Without limiting the rights under copyright, no part of this document may be reproduced, stored in or introduced into a retrieval system, or transmitted in any form or by any means (electronic, mechanical, photocopying, recording, or otherwise), or for any purpose, without the express written permission of Microsoft Corporation.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Microsoft may have patents, patent applications, trademarks, copyrights, or other intellectual property rights covering subject matter in this document. Except as expressly provided in any written license agreement from Microsoft, the furnishing of this document does not give you any license to these patents, trademarks, copyrights, or other intellectual property.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Unless otherwise noted, the example companies, organizations, products, domain names, e-mail addresses, logos, people, places and events depicted herein are fictitious, and no association with any real company, organization, product, domain name, email address, logo, person, place or event is intended or should be inferred.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;© 2007–2008 Microsoft Corporation. All rights reserved.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Microsoft, MSDN, Windows, Windows NT, Windows Server, and Windows Vista are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The names of actual companies and products mentioned herein may be the trademarks of their respective owners.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Document History&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Date&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Change&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;				&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;1/31/08&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Added /clean option to the /import command.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;6/13/2007&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Created&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Contents&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Introduction&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;4&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Terminology&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;5&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Commands&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;7&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bootems&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;7&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bootdebug&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;8&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bootsequence&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;8&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;copy&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;10&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;create&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;10&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;createstore&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;12&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;dbgsettings&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;12&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;debug&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;14&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;default&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;14&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;delete&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;14&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;deletevalue&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;15&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;displayorder&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;16&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ems&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;17&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;emssettings&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;17&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;18&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;export&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;19&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;import&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;20&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;set&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;20&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;store&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;21&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;sysstore&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;22&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;timeout&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;23&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;toolsdisplayorder&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;23&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;v&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;24&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Identifiers&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;24&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Data Formats&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;25&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Data Types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;26&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;All Entry Types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;27&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Applications&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;27&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Windows Boot Manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;28&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Windows Boot Loader&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;29&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Memory Diagnostic Application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;31&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Resume Application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;31&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Firmware Boot Manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;31&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Ntldr&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;32&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Sector Application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;32&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Device Additional Options&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;32&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Custom Data Types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;32&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Resources&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;32&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Introduction&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The boot configuration data store (BCD) contains boot configuration parameters and controls how the operating system is booted for Windows Vista® and later versions. With earlier versions of Windows®, the way in which boot configuration data was handled depended on the system’s firmware:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;For BIOS-based systems, boot configuration data was contained in a text file named Boot.ini.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;For Extensible Firmware Interface (EFI)–based systems, boot configuration data was contained in nonvolatile RAM (NVRAM).&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCD abstracts the underlying firmware and provides a common programming interface that can be used to manipulate the boot environment for all systems running Windows Vista or later versions of Windows. Every such system has a system BCD store that contains the data that controls the boot environment. Systems can have additional BCD stores, but only one store at a time can be designated as the system store.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Unlike Boot.ini, BCD stores data in a binary format and cannot be edited with a text editor. Instead, Windows Vista provides several ways to access a computer’s BCD stores:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The Windows Vista user interface (UI)&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;MSConfig and the Shell’s Control Panel System application provide end users with access to a limited subset of the data in the BCD system store, including the Windows Boot Manager’s time-out setting, and the debug and safe-mode settings.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit is a command-line editor—included with Windows Vista and later versions—that provides complete access to all BCD stores on the system. BCDEdit can be used to create or delete BCD data stores, designate a new system store, and add, delete, or modify the data in an individual store.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The BCD Windows Management Instrumentation (WMI) provider&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This component exposes an API that provides management tools with complete access to all BCD stores on the system.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This paper is a complete reference for the Windows Vista BCDEdit commands, identifiers, formats, and data types. For a quick reference while using BCDEdit, you can run the /? help command.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To display a list of commands, run:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit.exe /?&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To display details for a particular command, run:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit.exe /? command&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;For example, to display information about the /createstore command, run:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit.exe /? /createstore&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To display a list of well-known boot entry identifiers, run:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit.exe /? id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To display a list of formats, run:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit.exe /? formats&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;For a general discussion of the BCD store and the Windows boot environment, see “Boot Configuration Data in Windows Vista” on the WHDC Web site. For more information on the BCD WMI API, see “BCD Reference” on MSDN®.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Note: You should run BCDEdit from a command window with elevated privileges. To do so:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;On the Start menu, click All Programs, Accessories, and then Command Prompt.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Right-click Command Prompt and click Run as administrator on the context menu.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A User Account Control dialog box appears. Click Continue to run the command window with administrative privileges.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Terminology&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following list defines the key BCDEdit terms that are used in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCD store&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A binary file that contains boot configuration data in Windows Vista and later versions. Boot applications use the system BCD store—which is on the system partition—during the boot process. You can also create additional BCD stores in separate files by using the /export command or by copying a BCD file.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;boot application&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A boot entry that represents a boot environment application, such as Windows Boot Manager, the Windows boot loader, or the Windows resume-from-hibernate application.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;boot entry&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;An object in the BCD store. BCD stores can contain several types of boot entries, including the following boot applications:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Manager, which controls boot flow. In a dual-boot system, Boot Manager displays a boot selection menu to the user.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The Windows boot loader, which loads a particular version or configuration of Windows Vista or later versions of Windows.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Ntldr, which is the boot loader for versions of Windows earlier than Windows Vista.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The resume application, which restores Windows to its running state when a computer resumes from hibernation.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The memory diagnostics application, which runs a set of memory diagnostics.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot entries can also be used for other purposes, such as the global RAM defect list or the global boot loader settings.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;command&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A BCDEdit command. Commands are arguments to BCDEdit that consist of a ‘/’ character followed by the command name. Most commands also have one or more arguments that are listed following the command. To run a command, type:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /command [arguments...]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;boot loader&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A loader that loads Windows Vista and later versions of Windows.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;data type/element&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;One or more data values that each boot entry has. Because elements have two characteristics—a name and an associated data type, they are also referred to as data types. For example, Boot Manager has a Timeout element that controls how long Boot Manager waits before automatically selecting the default boot entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;firmware boot manager&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;On EFI-based systems, the entry in NVRAM that the firmware uses to locate Windows Boot Manager.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;identifier&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;An associated globally unique identifier (GUID) that each boot entry has and that BCDEdit uses as an identifier for the entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;memory diagnostic application&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A boot environment tool that runs memory diagnostic tests, often referred to as Memdiag.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Ntldr&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The legacy Windows boot loader, which loads versions of Windows earlier than Windows Vista.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;resume application&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A boot application that handles the resume-from-hibernation operation.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;system BCD store&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The BCD store that Windows Boot Manager uses to control boot flow.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;well-known identifiers&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Identifiers for commonly used boot entries that serve as readable aliases for the full GUIDs. For example, Boot Manager’s well-known identifier is {bootmgr}. There are also virtual identifiers, where the associated GUID can vary from one boot to the next. For example, {current} is the well-known identifier for the currently booted operating system. For a complete list of well-known identifiers, see “BCDEdit Identifiers” later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Windows Boot Manager&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A boot environment application that initiates the boot process. With a multiboot system, Boot Manager displays an operating system selection menu. It uses the BCD store to locate the Windows loader to continue loading a specific version of Windows.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Commands&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following table summarizes the BCDEdit commands by category. The sections that follow the table provide detailed references for each command, presented in alphabetical order.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Command&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Commands that operate on a store&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/createstore&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Creates a new empty BCD store.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/export&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Exports the contents of the system BCD store to a specified file. &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/import &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Restores the state of the system BCD store from a specified file.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Commands that operate on boot entries in a store&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/copy &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Makes copies of boot entries.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/create &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Creates new boot entries.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/delete &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Deletes boot entries.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Commands that operate on elements&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/deletevalue &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Deletes elements from a boot entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/set &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Creates or modifies a boot entry’s elements.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Commands that control output&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/enum &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Lists the boot entries in a store. &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Commands that control Boot Manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/bootsequence &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Specifies a one-time boot sequence.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/default &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Specifies the default boot entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/displayorder &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Specifies the order in which Boot Manager displays its menu.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/timeout &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Specifies the Boot Manager Timeout value.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/toolsdisplayorder &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Specifies the order in which Boot Manager displays the tools menu.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Commands that control Emergency Management Services&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/bootems &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Enables or disables Emergency Management Services (EMS) for a specified boot application.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/ems&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Enables or disables EMS for an operating system boot entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/emssettings &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Specifies global EMS parameters.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Commands that control debugging&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/bootdebug &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Enables or disables boot debugging for a boot application.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/dbgsettings &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Specifies global debugger parameters.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/debug &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Enables or disables kernel debugging for an operating system boot entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Commands that modify other commands&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Specifies the BCD store upon which a command acts.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/v &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Displays boot entry identifiers in full, rather than using well-known identifiers.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/bootems&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Enables or disables EMS for a specified boot application:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /bootems [id] { ON | OFF }&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The identifier of the boot application to be modified. The default value is the current operating system entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ON | OFF&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. ON enables EMS, and OFF disables EMS.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command enables EMS for Boot Manager:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /bootems {bootmgr} ON&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This command runs without errors for any boot entry, but affects only boot applications.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/bootdebug&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Enables or disables the boot debugger for a specified boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /bootdebug [id] { ON | OFF }&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The identifier of the boot entry to be modified. The default value is the current operating system entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ON | OFF&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. ON enables boot debugging, and OFF disables boot debugging.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command enables boot debugging for the Windows boot loader for the current operating system:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /bootdebug ON&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command disables boot debugging for Boot Manager:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /bootdebug {bootmgr} OFF&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This command runs without errors for any boot entry, but affects only boot applications.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/bootsequence&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Specifies the boot entries and display order for a one-time boot sequence:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /bootsequence id [...] [ /addfirst | /addlast | /remove ]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id [...]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. A list of identifiers for the entries to be added or removed. You must specify at least one entry. To specify multiple entries, list the identifiers on the command line in the order in which they should appear in the boot sequence, separated by a space.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addfirst | /addlast | /remove&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. You can specify one of the commands from this set. They apply to only a single boot entry, so if you use them, the identifier list must contain only one value.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addfirst&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Adds the specified boot entry to the beginning of the one-time boot sequence. If the boot entry is already in the sequence, it is moved to the beginning.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addlast&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Adds the specified boot entry to the end of the one-time boot sequence. If the identifier is already in the sequence, it is moved to the end.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/remove&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Removes the specified boot entry from the one-time boot sequence. If the one-time boot sequence has only one entry, then the one-time boot sequence value is deleted from the Boot Manager entry. If the specified boot entry is not in the one-time boot sequence, the /bootsequence command has no effect.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command specifies a one-time boot sequence with three entries. The first two are Windows boot loaders, identified by their GUIDS, followed by the well-known identifier for Ntldr:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /bootsequence {802d5e32-0784-11da-bd33-000476eba25f} {cbd971bf-b7b8-4885-951a-fa03044f5d71} {ntldr}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command adds a Windows boot loader entry, specified by its GUID, to the end of the one-time boot sequence:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /bootsequence {802d5e32-0784-11da-bd33-000476eba25f} /addlast&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This command creates a display order to be used only for the next boot. By default, the boot sequence specified by the identifier list replaces the existing sequence. To modify an existing sequence, use the /addfirst | /addlast | /remove arguments.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This command is similar to /displayorder, except that a one-time boot sequence is used only once: the next time the system is booted. After that has occurred, the system reverts to the regular display order.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/copy&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Creates a copy of a specified boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /copy id /d description&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. The identifier of the boot entry to be copied.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/d description&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. A string that contains the description to be associated with the new boot entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command creates a copy of Windows boot loader entry in the system BCD store:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /copy {cbd971bf-b7b8-4885-951a-fa03044f5d71} /d &quot;Copy of entry&quot;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This command creates a new GUID for the copy. When the command returns, BCDEdit displays the new GUID in the command window.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/create&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Creates a new boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /create [id] /d description [/application apptype | /inherit [apptype] | /inherit DEVICE | /device]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The new boot entry identifier:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you set id to a well-known identifier, such as {ntldr}, you cannot use the /application, /inherit, and /device options.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you set id to a GUID that does not correspond to a well-known identifier, you must use /application, /inherit, or /device to specify the boot entry type. BCEdit checks the GUID to ensure that it is not equal to the identifier of an existing entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you do not specify an identifier, BCDEdit creates a new GUID to serve as the entry’s identifier. You must use /application, /inherit, or /device to specify the boot entry type.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/d description&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. A string that contains the new boot entry’s description.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/application apptype&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If id is not set to a well-known identifier, the option that is used to specify the new boot entry as an application entry, with an application type of apptype, which must be set to one of the values in the following table:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Apptype&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTSECTOR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The boot sector application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;OSLOADER&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The Windows boot loader&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RESUME&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A resume application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;You cannot use the /application option for other types of applications. Instead, you must set id to the application’s well-known identifier.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/inherit [apptype]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If id is not set to a well-known identifier, the option that is used to specify the new boot entry as an inherit entry that can be inherited by the application type specified by apptype. The application type can be one of the values in the following table:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Apptype&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTMGR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boot Manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTSECTOR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The boot sector application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;FWBOOTMGR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The firmware boot manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;MEMDIAG&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The memory diagnostics application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NTLDR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Ntldr&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;OSLOADER&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The Windows boot loader&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RESUME&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The resume application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you do not specify an apptype value, any boot entry can inherit the new boot entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/inherit DEVICE&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If id is not set to a well-known identifier, the option that is used to specify the new boot entry as an inherit entry that only a device options boot entry can inherit.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/device&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If id is not set to a well-known identifier, the option that is used to specify the new boot entry as an additional device options entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command creates an Ntldr boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /create {ntldr} /d &quot;Legacy OS Loader&quot;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command creates a RAM disk additional options boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /create {ramdiskoptions} /d &quot;Ramdisk options&quot;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command creates a new Windows boot loader entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /create /d &quot;Windows Vista&quot; /application osloader&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command creates a new debugger settings boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /create {dbgsettings} /d &quot;Debugger Settings&quot;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you set id set to a well-known identifier, such as {ntldr} or {dbgsettings}, you cannot use the /application, /inherit, and /device options. Those options are already defined for well-known identifiers. If you set id to something other than a well-known identifier or if you do not specify an id value, you must specify the boot entry’s inheritance characteristics by using one of the /application, /inherit, or /device options.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/createstore&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Creates a new empty BCD store:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /createstore [filename]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The file name of the new BCD store. If the file name contains spaces, it must be enclosed in quotation marks (&quot;&quot;).&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you do not specify a file name, BCDEdit creates a new empty system BCD store.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you specify just the file name, BCDEdit creates the file in the current default folder.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To have the file placed in a specific folder, set filename to the fully qualified path. You can use environment variables as part of the path. The path must end in a valid file name, such as c:\temp\mystore. The command fails if the path ends in the name of a folder, such as c:\temp, or the name of an existing file.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command creates a BCD store named C:\Data\BCD:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /createstore C:\DATA\BCD&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/dbgsettings&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Sets or displays the global debugger settings:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /dbgsettings [debugtype [DEBUGPORT:port] [BAUDRATE:baud] [CHANNEL:channel] [TARGETNAME:targetname] /start startpolicy /noemux]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;debugtype&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The type of debugger. debugtype can be set one of the following:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;SERIAL&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;1394&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;USB&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;There is no default debugging type. If you omit debugtype, /dbgsettings displays the current settings.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEBUGPORT:port&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If debugtype is set to SERIAL, the option that is used to specify which serial port to use as the debugging port. Set port to 1 for COM1, and so on.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BAUDRATE:baud&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If debugtype is set to SERIAL, the option that is used to specify the baud rate to be used for debugging. Set baud to 57600 for a baud rate of 57,600, and so on. Valid baud rates are 9600, 19200, 38400, 57600, and 115200, and the default value is 9600. If you assign any other value to baud, BCDEdit returns an “Invalid baud rate” error.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;CHANNEL:channel&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If debugtype is set to 1394, the option that is used to specify the 1394 channel to be used for debugging. Set channel to the appropriate 1394 channel.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TARGETNAME:targetname&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If debugtype is set to USB, the option that is used specifies the USB target name to be used for debugging.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/start startpolicy&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The debugger start policy for all debugger types. startpolicy can be set to one of the following:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ACTIVE&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;AUTOENABLE&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DISABLE&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;By default, startpolicy is set to ACTIVE.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/noumex&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The option that causes the kernel debugger to ignore user-mode exceptions.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command displays the current global debugger settings:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /dbgsettings&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the global debugger settings to serial debugging over COM1 at 115,200 baud:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /dbgsettings SERIAL DEBUGPORT:1 BAUDRATE:115200&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the global debugger settings to 1394 debugging on channel 23:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /dbgsettings 1394 CHANNEL:23&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the global debugger settings to use USB debugging with a target named DEBUGGING:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /dbgsettings USB TARGETNAME:DEBUGGING&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To set an individual global debugger setting, use the /set command, as follows:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /set {dbgsettings} debugtype value&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The /debugsettings command does not enable or disable the debugger. You must use /debug for that purpose.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/debug&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Enables or disables the kernel debugger for a specified boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /debug [id] { ON | OFF }&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The identifier of the boot entry for which kernel debugging is to be enabled or disabled. This value can be set only to Windows boot loader entries. By default, id is set to {current}.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ON | OFF&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. ON enables kernel debugging, and OFF disables kernel debugging.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command enables kernel debugging for the current Windows boot loader entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /debug ON&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command disables kernel debugging for the specified Windows boot loader entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /debug {cbd971bf-b7b8-4885-951a-fa03044f5d71} OFF&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/default&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Specifies the boot entry to be used by default if the user does not select an entry before the time out expires:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /default id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. The default boot entry’s identifier.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the specified Windows boot loader as the default Boot Manager entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /default {cbd971bf-b7b8-4885-951a-fa03044f5d71}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets Ntldr as the default boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /default {ntldr}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/delete&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Deletes a boot entry from a BCD store:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /delete id [/f] [/cleanup | /nocleanup]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. The identifier of the boot entry to be deleted.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/f&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. Force deletion. You must use this option to delete boot entries that have a well-known identifier. It is not required for other boot entries.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/cleanup | /nocleanup&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. These options specify whether the boot entry should be removed from the display order. The default value is /cleanup.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/cleanup&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Removes the boot entry from the display order. If you delete an operating system boot loader entry, the associated resume-from-hibernation boot entry is also deleted, as long as it is not referenced by any other operating system loaders.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/nocleanup&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;Deletes the specified boot entry without removing it from the display order.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command deletes the specified Windows boot loader entry from the system BCD store and from the display order:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /delete {cbd971bf-b7b8-4885-951a-fa03044f5d71}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command deletes the specified Windows boot loader entry from the system BCD store and from the display order:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /delete {cbd971bf-b7b8-4885-951a-fa03044f5d71} /cleanup&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command deletes the specified Windows boot loader entry from the system BCD store without removing the boot entry from the display order:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /delete {cbd971bf-b7b8-4885-951a-fa03044f5d71} /nocleanup&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command deletes the Ntldr boot entry from the system BCD store:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /delete {ntldr} /f&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/deletevalue&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Deletes an element from a boot entry in a BCD store:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /deletevalue [id] datatype&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The identifier of the boot entry that owns the element to be deleted. By default, id is set to {current}.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;datatype&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. The element to be deleted. The elements and data formats that are available for the various boot entry types are listed in “BCDEdit Data Types” later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command deletes the bootsequence element from the Boot Manager entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /deletevalue {bootmgr} bootsequence&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command deletes the Windows Preinstallation Environment (WinPE) element from the current operating system boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /deletevalue winpe&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command deletes the WinPE element from the specified Windows boot loader entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /deletevalue {cbd971bf-b7b8-4885-951a-fa03044f5d71} winpe&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;For more information on BCD elements and data formats, see “BCDEdit Data Types” and “BCDEdit Data Formats” later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/displayorder&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Specifies the Boot Manager’s display order:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /displayorder id [...] [ /addfirst | /addlast | /remove ]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id [...]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. A list of identifiers for the entries to be added or removed. You must specify at least one entry. To specify multiple entries, list the identifiers on the command line in the order in which they should appear in the boot sequence, separated by a space.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addfirst | /addlast | /remove&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. You can specify one of the commands from this set. They apply to only a single boot entry, so if you use one of these options, the identifier list must contain only one value.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addfirst&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Adds the specified boot entry to the beginning of the display order. If the boot entry is already in the display order, it is moved to the beginning.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addlast&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Adds the specified boot entry to the end of the display order. If the identifier is already in the display order, it is moved to the end.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/remove&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Removes the specified boot entry from the display order. If the display order has only one entry, then the display order value is deleted from the Boot Manager boot entry. If the specified boot entry is not in the in the display order, the /displayorder command has no effect.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command creates a display order that consists of two Windows loader boot entries, identified by their GUIDS, followed by Ntldr:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /displayorder {802d5e32-0784-11da-bd33-000476eba25f} {cbd971bf-b7b8-4885-951a-fa03044f5d71} {ntldr}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command adds a Windows boot loader entry to the end of the existing display order:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /displayorder {802d5e32-0784-11da-bd33-000476eba25f} /addlast&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/ems&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Enables or disables EMS for a specified Windows boot loader entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /ems [id] { ON | OFF }&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The identifier of the boot entry to be modified. id can be set only to Windows boot loader boot entries. By default, id is set to {current}.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ON | OFF&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. ON enables EMS, and OFF disables EMS.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command enables EMS for the current Windows boot loader entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /ems ON&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/emssettings&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Sets the global EMS settings for the system:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /emssettings BIOS | EMSPORT:port [EMSBAUDRATE:baudrate]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BIOS | EMSPORT:port&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. Options that specify the EMS configuration:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BIOS. Uses BIOS settings for the EMS configuration. This option works only on systems that have BIOS support for EMS.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;EMSPORT. Uses the specified serial port. To specify a port value, set port to 1 for COM1, and so on.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;EMSBAUDRATE:baudrate&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The baud rate to use for the specified serial port. To use EMSBAUDRATE, you must also set the EMSPORT option to specify the serial port. Set baudrate to 57600 for a baud rate of 57,600, and so on. By default, baudrate is set to 9600. Do not use this option if you have set the BIOS option.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the EMS parameters to BIOS settings:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /emssettings BIOS&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the EMS parameters to use COM2 at 115,200 baud:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /emssettings EMSPORT:2 EMSBAUDRATE:115200&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The /emssettings command does not enable or disable EMS. Use /ems for that purpose.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/enum&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Lists boot entries in a specified BCD store:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /enum [type | id] [/v]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;type&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The type of boot entries to be listed. type can be set to one of the values in the following table. The values are not case sensitive. By default, type is set to ACTIVE.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Type&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ACTIVE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;All boot entries in the store in Boot Manager display order&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ALL&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;All boot entries&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTAPP&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;All boot environment applications&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTMGR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boot Manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;FIRMWARE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;All firmware applications&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;INHERIT&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;All inherit entries&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;OSLOADER&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;All operating system boot entries&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RESUME&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;All resume-from-hibernation boot entries&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The identifier of the boot entry to be listed. If id is specified, then /enum lists only that object. Otherwise, /enum lists all boot entries that are consistent with the type setting.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;/v&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. Display boot entry identifiers in full, rather than using names for well-known identifiers.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command lists all Windows boot loader entries:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /enum OSLOADER&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command lists all Boot Manager entries:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /enum BOOTMGR&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command lists all firmware entries:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /enum FIRMWARE&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command lists only the default boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /enum {default}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command lists only the specified operating system boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /enum {b38a9fc1-5690-11da-b795-e9ad3c5e0e3a}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/enum is the default BCDEdit command. Running BCDEdit without arguments is equivalent to running bcdedit /enum ACTIVE.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/export&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Exports the contents of the system store to a specified file, which can be used later to restore the state of the system store:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /export filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The name of the file that is to contain the exported store. If filename contains spaces, it must be enclosed in quotation marks (&quot;&quot;):&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you specify just the file name, BCDEdit creates the file in the current default folder.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To have the file placed in a specific folder, set filename to the fully-qualified path. The path must end in a valid file name, such as c:\temp\mystore. If the path ends in the name of a folder (such as c:\temp) or the name of an existing file, the command fails.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;You can use valid environment variables in the path. For example, if %TEMP% is defined as c:\Temp, setting filename to %TEMP%\MyStore creates an exported store named MyStore in c:\Temp.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command exports the system store to C:\Data\BCD Backup:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /export &quot;C:\Data\BCD Backup&quot;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This command can be used only to export data from the system store. The system store itself is not affected.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/import&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Reinitializes the system store or NVRAM by using data from a temporary BCD store.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /import [/clean] filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. The name of the temporary BCD store—usually one previously created by the /export command—that is to be imported into the system store. If filename contains spaces, it must be enclosed in quotation marks (&quot;&quot;):&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you specify just the file name, BCDEdit looks for the file in the current default folder.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To import from a file in a specific folder, set filename to the fully-qualified path. The path must end in a valid file name, such as c:\temp\mystore. If the path ends in the name of a folder (such as c:\temp) or the name of an existing file, the command fails.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;You can use valid environment variables in the path. For example, if %TEMP% is defined as c:\Temp, setting filename to %TEMP%\MyStore imports a store named MyStore in c:\Temp.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;clean&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The /clean option is used only for UEFI systems. It directs BCDEdit to delete all NVRAM entries and then re-initialize NVRAM based on the firmware namespace objects in filename.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command imports the data from C:\Data\BCD Backup into the system store:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /import &quot;C:\Data\BCD Backup&quot;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The /import filename command deletes any existing boot entries in the system store and then imports the data from filename into the system store.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The /import command imports data only from a temporary store into the system store. It cannot be used to import data from one temporary store to another.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/set&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Creates a new element or modifies an existing element for a specified boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /set [id] datatype value [ /addfirst | /addlast | /remove ]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The identifier of the boot entry to be modified. By default, id is set to {current}.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;datatype&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. The data type of the element to be created or modified. The elements and data types that are available for the various boot entry types are listed in “BCDEdit Data Types” later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;value&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. The value to be assigned to the element. The format of value depends on datatype. The format associated with each data type is listed in “BCDEdit Data Types,” and the details of the formats are given in “BCDEdit Data Formats” later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Beta Disclaimer: The following options are available only on Windows Server 2008, Beta 3, and later.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addfirst | /addlast | /remove&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. If the element to be set is a list, you can specify one of the following commands. They apply to only a single list element, so if you use one of these options, value must contain only a single object.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addfirst&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Adds the specified element to the beginning of the list. If the boot entry is already in the list, it is moved to the beginning.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addlast&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Adds the specified element to the end of the list. If the identifier is already in the list, it is moved to the end.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/remove&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Removes the specified element from the list. If the list has only one entry, then the element is deleted from the Boot Manager boot entry. If the specified value is not in the in the list, the /displayorder command has no effect.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the application device to partition C for the specified operating system boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /set {cbd971bf-b7b8-4885-951a-fa03044f5d71} device partition=C:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the application path to \windows\system32\winload.exe for the specified operating system boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /set {cbd971bf-b7b8-4885-951a-fa03044f5d71} path \windows\system32\winload.exe&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the NX policy to OptIn for the current operating system boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /set nx optin&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;For more information on how to use the /set command, see “BCDEdit Data Types” and “BCDEdit Data Formats” later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Specifies the BCD store upon which a command should act:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /store filename [...]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The file name of a BCD store. If filename contains spaces, it must be enclosed in quotation marks (&quot;&quot;):&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you specify just the file name, BCDEdit looks for the file in the current default folder.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To refer to a file placed in a specific folder, set filename to the fully-qualified path. The path must end in a valid file name, such as c:\temp\mystore. If the path ends in the name of a folder )such as c:\temp) or the name of an existing file, the command fails.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;You can use valid environment variables in a path. For example, if %TEMP% is defined as c:\Temp, setting filename to %TEMP%\MyStore uses the store named MyStore in c:\Temp.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command lists the active boot entries in the specified data store file:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /store C:\DATA\BCD /enum ACTIVE&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;You can run bcdedit /store as a standalone command; it is equivalent to running bcdedit /enum ACTIVE.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;You cannot use /store with the /createstore, /import, and /export commands.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If a BCD command does not use the /store argument, then filename is set to the system store.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Beta Disclaimer: The following command is available only on Windows Server 2008, Beta 3, and later.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/sysstore&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Specifies the partition that contains the system store, for EFI-based systems:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /sysstore partition&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;partition&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. The partition, such as C:, that contains the system store.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the system store to the C: partition:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /sysstore C:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;An EFI system typically has only EFI system partition (ESP), and the system BCD store is located on that partition. However, EFI systems can have multiple ESPs on multiple hard drives, only one of which can contain the system BCD store. In that case, you must use the /sysstore command to inform Boot Manager which ESP contains the system BCD store.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This command is not used with BIOS-based systems.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/timeout&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Specifies how long Boot Manager should wait before selecting the default boot entry:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /timeout timeout&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed earlier in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;timeout&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. How long Boot Manager should wait, in seconds, before selecting the default boot entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets the Boot Manager’s time out to 30 seconds:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /timeout 30&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;To specify the default boot entry, run the /default command.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/toolsdisplayorder&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Specifies the entries and display order that Boot Manager should use for the tools menu:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit [/store filename] /toolsdisplayorder id [...] [ /addfirst | /addlast | /remove ]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Parameters&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/store filename&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. The BCD store to be used. The default value is the system store. /store is discussed later in this paper.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id [...]&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Required. A list of identifiers for the tools to be added to or removed from the tools display. You must specify at least one identifier. Additional identifiers must be separated by spaces.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addfirst | /addlast | /remove&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Optional. You can specify one of the commands from this set. They apply to only a single tool, so the identifier list must contain only one value.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addfirst&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Adds the specified tool to the beginning of the tools display order. If the tool is already in the list, it is moved to the top of the list.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/addlast&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Adds the specified tool to the end of the tools display order. If the tool is already in the list, it is moved to the end of the list.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/remove&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Removes the specified tool from the tools display order. If the list contains only one tool, BCDEdit deletes the tools display order from the Boot Manager boot entry. If the specified tool is not in the in the list, /toolsdisplayorder has no effect.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Examples&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command sets two tools boot entries and the memory diagnostic in the Boot Manager’s tools display order:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /toolsdisplayorder {802d5e32-0784-11da-bd33-000476eba25f} {cbd971bf-b7b8-4885-951a-fa03044f5d71} {memdiag}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command adds the specified tool to the end of the tools display order:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /toolsdisplayorder {802d5e32-0784-11da-bd33-000476eba25f} /addlast&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Manager displays a list of available operating systems and a list of tools. By default, the only tool is the memory diagnostics application. You can use /toolsdisplayorder to add other tools to the list.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;/v&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Display all identifiers in full:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /v ...&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Example&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following command lists the active boot entries in the system store with all boot entry identifiers displayed in full:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /enum ACTIVE /v&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Remarks&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;GUIDs are used to identify all boot entries. However, by default, BCDEdit displays the readable form of well-known identifiers, such as {current} or {bootmgr}. /v directs BCDEdit to display all identifiers as GUIDs. Running bcdedit /v by itself is equivalent to running bcdedit /enum ACTIVE /v.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Identifiers&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Many of the BCDEdit commands require id values to uniquely identify boot entries in the store. An id value is the string form of a GUID, which has the following value, where each ‘x’ corresponds to a hexadecimal digit:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The values of each digit vary for different GUIDS, but braces at the beginning and the end of the string are required and the dashes must be in the indicated locations in the string. The string cannot contain any white space. For example:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{d2b69192-8f14-11da-a31f-ea816ab185e9}&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Several commonly used boot entries can also be identified by well-known identifiers, which are simpler to use than the corresponding GUIDs. BCDEdit displays well-known identifiers in output unless you include a /v argument. In that case, BCDEdit displays the GUID. The following table contains the well-known identifiers.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Well-Known Identifiers&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Identifier&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{badmemory} &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The global RAM defect list. This list can be inherited by any boot application boot entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{bootloadersettings} &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A collection of global settings that should be inherited by all Windows boot loader entries.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{bootmgr} &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Windows Boot Manager.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{current}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A virtual identifier that represents the currently running operating system.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{dbgsettings}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The global debugger settings. Any boot application entry can inherit these settings.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{default}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A virtual identifier that represents the default boot entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{emssettings}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The global EMS settings. These settings can be inherited by any boot application entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{fwbootmgr}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The firmware boot manager boot entry. This is the Boot Manager entry that is stored in NVRAM for EFI-based systems.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{globalsettings} &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A collection of global settings that should be inherited by all boot application entries.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{memdiag}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The memory diagnostic application.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{ntldr}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The Windows legacy loader, Ntldr. It is used for versions of Windows earlier than Windows Vista.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{ramdiskoptions}&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Additional options required for RAM disk devices.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;{resumeloadersettings} &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A collection of global settings that should be inherited by all Windows resume-from-hibernation application entries.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Data Formats&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following table describes the data format values that can be assigned to the /set command’s datatype argument.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boolean &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A Boolean value that can be set to TRUE or FALSE. You can also use the following values instead of TRUE or FALSE:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TRUE: 1, ON, YES&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;FALSE: 0, OFF, NO,&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;device&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A device data type that can be set to one of the following:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOT&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;PARTITION=drive&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;FILE=[parent]path&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RAMDISK=[parent]path,optionsid&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The options for these types are as follows:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;drive. Required. A drive letter with a colon but without a trailing backslash, such as c:.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;parent. Required. Can be set to either [BOOT] or a drive letter with a colon but no trailing backslash. The square brackets are a required part of the syntax, not the usual convention indicating an optional value.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;path. Required. A path to the file from the root of the parent device.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;optionsid. Optional. The identifier of the device options boot entry that contains the system deployment image (SDI) options for the RAM disk. This value is usually set to {ramdisksdioptions}.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The data type that takes a value from an enumerated list. For example, the NX data type can be set to one of four enumerated values: OPTIN, OPTOUT, ALWAYSON, or ALWAYSOFF.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;id &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The identifier for a boot entry. This is typically the string form of the GUID that is associated with a boot entry. Commonly used boot entries have well-known IDs that can be used in place of a GUID. For example, the well-known ID for the current operating system is {current}.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;integer &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A 64-bit integer. &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;list &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A boot entry identifier list that contains one or more boot entry identifiers separated by spaces. The list should not be enclosed in quotation marks.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;string &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A literal string. If it contains spaces, it should be surrounded by quotation marks (&quot;&quot;).&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCDEdit Data Types&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The /set and /deletevalue commands require a datatype argument, followed by a value for the data type. Most data types are identified by a name, but you can also define custom data types. Each data type is associated with a data format, such as string or integer. The available data formats are listed in the previous section, “BCDEdit Data Formats.”&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;For example, the Windows boot loader has an NX element that can be set to one of four enumerated values: OPTIN, OPTOUT, ALWAYSON, or ALWAYSOFF. The following /set command sets the NX policy to OptIn for the current operating system:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit /set {current} NX OPTIN&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This section is a complete reference for the data types associated with the various boot entry types. To display information about data types when you are using BCDEdit, type the following command:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;bcdedit.exe /? TYPES Apptype&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;where Apptype is one of the items in the following table:&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Apptype&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTAPP&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;All boot applications&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTMGR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boot Manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTSECTOR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The boot sector application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;CUSTOMTYPES&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Custom data types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEVOBJECT&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Device objects&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;FWBOOTMGR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The firmware boot manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;MEMDIAG&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The memory diagnostics application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NTLDR&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Ntldr&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;OSLOADER&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The Windows boot loader&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RESUME&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The resume application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The sections in the following table list data types and formats that are used by the different boot entry types.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Entry type&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;All Entry Types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply to any boot entry types.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot application types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Applications&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply to all boot applications.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply only to Boot Manager.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Windows Boot Loader&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply only to the Windows boot loader.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Memory Diagnostic Application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply only to the memory diagnostic application.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Resume Application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply only to resume applications.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Firmware Boot Manager&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply only to the firmware boot manager.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Ntldr&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply only to Ntldr.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Sector Application&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply only to boot sector applications.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Other types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Device Additional Options&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Data types that apply to device additional options.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Custom Data Types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;How to define custom data types.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;All Entry Types&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The data types in the following table are valid for any boot entry.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Data type name&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;PATH &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The path to the application.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEVICE &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;device&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The device on which the application resides.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DESCRIPTION &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A boot entry’s description.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;INHERIT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;list&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A space-delimited list of boot entries to be inherited.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Applications&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The data types in the following table apply to all boot applications. Data types that are specific to a particular application are listed in the following sections.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Type name&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Display&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;GRAPHICSMODEDISABLED&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE disables graphics mode.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NOVESA&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE disables VESA display modes.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Debugging&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;			&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BAUDRATE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The baud rate for serial debugging.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTDEBUG&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables the boot debugger.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;CHANNEL&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The channel for 1394 debugging.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEBUGADDRESS&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The address of the serial port for serial debugging.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEBUGPORT&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The serial port number for serial debugging.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEBUGSTART&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The debug start type: ACTIVE, AUTOENABLE, or DISABLE.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEBUGTYPE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The debugging type: SERIAL, 1394, or USB.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NOUMEX&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE causes user-mode exceptions to be ignored.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TARGETNAME&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The target name for USB debugging.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Memory&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BADMEMORYACCESS&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables an application to use the memory described by the bad memory list.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BADMEMORYLIST&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integerlist&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A space-delimited list of page frame numbers that describe faulty memory in the system.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TRUNCATEMEMORY&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A physical memory address. All memory at or above the specified address is disregarded.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Emergency Management Services&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTEMS&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables EMS.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;EMSBAUDRATE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The EMS baud rate&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;EMSPORT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The EMS serial port number.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Devices and Hardware&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;CONFIGACCESSPOLICY&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The access policy: DEFAULT or DISALLOWMMCONFIG.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;FIRSTMEGABYTEPOLICY&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;First megabyte policy: USENONE, USEALL, or USEPRIVATE.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;LOCALE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The boot application’s locale.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NOUMEX&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE causes user-mode exceptions to be ignored.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Recovery&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RECOVERYENABLED&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables the recovery sequence.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RECOVERYSEQUENCE &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;list&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A space-delimited list of identifiers that defines the recovery sequence.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Verification&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TESTSIGNING&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables prerelease test code signing certificates.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Windows Boot Manager&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The following table lists the types that apply only to Windows Boot Manager. They can be used in addition to the standard boot applications types.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Data type name&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTSEQUENCE &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;list&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A space-separated list of identifiers that defines a one-time boot sequence.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEFAULT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;id&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The default boot entry identifier.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TIMEOUT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The Boot Manager’s wait time, in seconds, after which Boot Manager selects the default boot entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Resume&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RESUME &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE indicates that a resume operation should be attempted.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RESUMEOBJECT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;id&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The resume application identifier.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Display&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DISPLAYBOOTMENU&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables the boot menu display.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DISPLAYORDER &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;list&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A space-separated list of identifiers that defines Boot Manager’s display order.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TOOLSDISPLAYORDER &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;list&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A space-separated list of identifiers that defines the Boot Manager tools display order.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Windows Boot Loader&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The types in the following table can be used only for Windows boot loader entries. They can be used in addition to the standard boot application types.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Data type name&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTLOG &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables the system initialization log.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTSTATUSPOLICY&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boot status policy: DISPLAYALLFAILURES, IGNOREALLFAILURES, IGNORESHUTDOWNFAILURES, or IGNOREBOOTFAILURES.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;LASTKNOWNGOOD &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables the system to boot to the last known good configuration.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NOCRASHAUTOREBOOT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE disables automatic restart on crash.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;QUIETBOOT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE disables the boot screen display.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RESUMEOBJECT&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;id&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The identifier for the resume application that is associated with this operating system.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;SAFEBOOT&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The safe boot option: MINIMAL, NETWORK, or DSREPAIR.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;SAFEBOOTALTERNATESHELL &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE specifies that the alternate shell should be used when the system is booted into Safe mode.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;STAMPDISK&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Enables stamping of RAW disks during a WinPE boot.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Available only on Windows Server 2008 Beta 3 and later.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;SOS &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE displays additional boot information.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;WINPE &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables the computer to boot to WinPE.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Debugging and performance types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DBGTRANSPORT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The file name for a private debugger transport.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEBUG &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables kernel debugging.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;PERFMEM &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The size, in megabytes, of the buffer to be allocated for performance data logging.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Drivers, kernel, and system root types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DRIVERLOADFAILUREPOLICY&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Driver load failure policy: FATAL or USEERRORCONTROL.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;EMS&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables kernel EMS.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;KERNEL&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The file name for a private kernel.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;OSDEVICE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;device&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The device that contains the system root.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;SYSTEMROOT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The fully-qualified path to the system root folder. It cannot contain environment variables.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Hardware abstraction layer (HAL) types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DETECTHAL &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables HAL and kernel detection.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;HAL &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The file name for a private HAL.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;HALBREAKPOINT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables the special HAL breakpoint.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;KERNEL&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The file name for a private kernel.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Memory types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;INCREASEUSERVA &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The size of the user-mode address space for 32-bit versions of Windows. The default value is 2 GB. To specify a larger value, set INCREASEUSERVA to the size of the address space, in MB. The valid range for INCREASEUSERVA is 2048 to 3072. This data type is not used for 64-bit versions of Windows. &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NOLOWMEM &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE disables the use of low memory.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NX &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;NX options: OPTIN, OPTOUT, ALWAYSON, or ALWAYSOFF.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;PAE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;PAE options: DEFAULT, FORCEENABLE, or FORCEDISABLE.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;REMOVEMEMORY &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The amount of memory to be removed from the total memory available to Windows.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Options&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ADVANCEDOPTIONS&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables advanced options.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;LOADOPTIONS&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Any additional load options that are not covered by other data types.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;OPTIONSEDIT&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables the options editor.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Processors and APICs types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;CLUSTERMODEADDRESSING &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The maximum number of processors to include in a single Advanced Programmable Interrupt Controller (APIC) cluster.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;CONFIGFLAGS &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Processor-specific configuration flags.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;MAXPROC &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE reports the maximum number of processors in the system.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;NUMPROC &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The number of processors to be used.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ONECPU &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE forces only the boot CPU to be used.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RESTRICTAPICCLUSTER &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The largest APIC cluster number that the system can use.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;USEPHYSICALDESTINATION &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE forces the physical APIC to be used.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;VESA, PCI, and VGA types&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;MSI&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Message signaled interrupt (MSI) settings: DEFAULT or FORCEDISABLE.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;USEFIRMWAREPCISETTINGS &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE uses BIOS-configured PCI resources.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;VGA &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE forces the VGA display driver to be used.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Memory Diagnostic Application&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The types in the following table apply only to memory diagnostic application boot entries. They can be used in addition to the standard boot application types.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Data type name&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;PASSCOUNT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The number of iterations that to run.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TESTMIX&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The text mix: BASIC or EXTENDED.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Resume Application&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The types in the following table apply to boot entries for the resume application. Boot application types can also apply to boot entries for the resume application.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Resume Application Types&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Type name&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Hibernation file&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;FILEDEVICE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;device&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The device that contains the hibernation file.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;FILEPATH&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The path of the hibernation file.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Other&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;ASSOCIATEDOSDEVICE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;device&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A Microsoft MS-DOS® device with a resume application.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;CUSTOMSETTINGS&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE allows resume loader to use custom settings.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;PAE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;enum&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;PAE settings: DEFAULT, FORCEENABLE, or FORCEDISABLE.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Firmware Boot Manager&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The types in the following table apply only to boot entries for the firmware boot manager. There are no additional BCDEdit options for the firmware boot manager.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Data type name&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BOOTSEQUENCE&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;list&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A space-separated list of identifiers that defines a one-time boot sequence.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DEFAULT&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;id&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The default boot entry’s identifier.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;TIMEOUT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The firmware boot manager’s wait time, in seconds, after which Boot Manager selects the default boot entry.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Display&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;DISPLAYORDER&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;list&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;A space-separated list of boot entry identifiers that defines the firmware boot manager’s display order.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Ntldr&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Ntldr is the legacy boot loader for earlier versions of Windows. Boot configuration options for Ntldr are defined in the boot.ini file. There are no additional BCDEdit options for Ntldr.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Sector Application&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot sector application allows the Windows Boot Manager to start a 16-bit real-mode loader application associated with a non-Windows operating system. There are no additional BCDEdit options for boot sector applications.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Device Additional Options&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;The types in the following table apply to device additional options boot entries.&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Data type name&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Format&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Description&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;EXPORTASCD &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Boolean&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;TRUE enables exporting the RAM disk as a CD.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RAMDISKIMAGELENGTH &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The RAM disk image length.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RAMDISKIMAGEOFFSET &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The RAM disk image offset.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RAMDISKSDIDEVICE &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;device&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The device on which the SDI file is located.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RAMDISKSDIPATH &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;string&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The path to the SDI file.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;RAMDISKTFTPCLIENTPORT &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;integer&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;The RAM disk WIM file’s Trivial File Transfer Protocol (TFTP) client port.&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Custom Data Types&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;An element in a BCD store consists of two parts:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A 4-byte integer that serves as the elements identifier. Options in BCDEdit such as DEBUG, BAUDRATE, or LOCALE are “friendly equivalents” to the integer that represents that element.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A data payload. The type of data in the payload is encoded in the identifier.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;A custom data type is a mechanism for specifying an option that does not have a friendly name equivalent. A custom type has the following format:&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;custom:xxxxxxxx&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;This is a custom type, with the format and meaning encoded in the specified 8digit hex number.&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Resources&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;Boot Configuration Data in Windows Vista&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;http://go.microsoft.com/fwlink/?LinkId=93005&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;BCD Reference&lt;/p&gt;
&lt;p style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;http://go.microsoft.com/fwlink/?LinkId=93006&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;&amp;nbsp;&lt;br /&gt;
아 그러고보니 bcdedit 관련해서는 여러 툴들이 존재하는데 그중 visualbcd 라는 놈이 제일이란다.&lt;br /&gt;
다른툴은 bcdedit.exe 에서 제공하는 모든 기능을 다 쓸수없고 자주 쓰는 기능만 사용한다는데 visualbcd 는 개발자가 마이크로 소프트에서 제공하는 bcd 관련 WMI Provider를 이용하여 개발한듯하다. 닷넷프레임웍 4 이상이 필요하다고 하니 배보다 배꼽이 더 클수도 있겠다.&lt;br /&gt;
&amp;nbsp;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-77-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-77-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-77-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=17379942&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/77&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/프로그래밍&quot;&gt;프로그래밍&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/프로그래밍/표준문서&quot;&gt;표준문서&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/77&quot; &gt;bcdedit.exe Document&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/06&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/9&quot; &gt;GRUB 명령어 정의 문서&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/24&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>표준문서</category>
			<category>BCD</category>
			<category>BCDEDIT</category>
			<category>가끔쓰지만 찾으려면 일</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/77</guid>
			<comments>http://bulkdisk.tistory.com/77#entry77comment</comments>
			<pubDate>Mon, 06 Jun 2011 18:24:44 +0900</pubDate>
		</item>
		<item>
			<title>스마트폰에 교통신용카드 이식하면 지갑이 필요없다.</title>
			<link>http://bulkdisk.tistory.com/75</link>
			<description>&lt;p&gt;보통 대중교통을 많이 이용하는 필자는 후불식 교통신용카드 를 이용한다.&lt;/p&gt;
&lt;p&gt;선불식 카드는 충전하는 번거로움도 있고 해서 잘 사용하지 않는다.&lt;/p&gt;
&lt;p&gt;예전엔 카드를 녹여 RF칩을 빼낸후 안테나 코일을 작은 지름으로 감아 납땜한뒤 휴대폰 뒤에 붙이고 다녔으나 &lt;/p&gt;
&lt;p&gt;그렇게 되면 신용카드를 사용할수 없는 단점이 생겼다.&lt;/p&gt;
&lt;p&gt;그러던중 요즘 들어 스마트폰의 대중화로 전화단말기의 크기가 신용카드보다 상대적으로 커지게 되었고 &lt;/p&gt;
&lt;p&gt;슬라이드방식이 아닌 바타입의 단말이 많아서 젤리케이스를 많이 사용한다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;젤리케이스를 개조하여 교통신용카드를 넣고 다니면 되겠다는 생각이 들었단 말씀..&lt;/p&gt;
&lt;p&gt;아 물론 요즘폰의 배터리커버에 T-Money기능이 내장된 기종도 있지만 결정적으로 선불식이기 때문에 충전해야 한다는 번거로움 때문에 패스..&lt;/p&gt;
&lt;p&gt;갤럭시S 의 경우는 폭이 넓어서 카드의 마그네틱 반대편 하단을 약간 도려내면 폰과 케이스사이에 그냥 카드를 넣을수 있다.&lt;/p&gt;
&lt;p&gt;하지만 내가 쓰는 갤럭시U는 폭이 S에 비해 다소 좁기 때문에 카드를 많이 커팅 해야하고 그렇게된다면 RF안테나를 건드릴수 있는 위험성도 있다.&lt;/p&gt;
&lt;p&gt;마그네틱 부위를 잘라내는 것이 아니기 때문에 술집에가서 술먹고 결재하는것도 전혀 문제가 없다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;어차피 폭이 좁은 갤럭시U 이기 때문에 그냥 케이스만 커팅하기로 했다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;카드가 들어갈 위치를 정한후 아래사진처럼 커팅했다.&lt;/p&gt;
&lt;p&gt;갤럭시S는 스피커의 위치가 카메라 옆이라 간섭이 없지만 갤럭시U는 스피커가 하단에 있어서 카드를 삽입시 스피커 구멍을 막게된다.&lt;/p&gt;
&lt;p&gt;그렇지만 소리는 카드를 타고 울리기 때문에 전혀 지장이 없다. &lt;/p&gt;
&lt;p&gt;한가지 단점이라면 갑자기 소리를 죽일 때 손가락으로 스피커를 막으면 거의 소리가 안들렸지만 카드가 삽입되면 손가락으로 막아도 소리는 들린다.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/1467464C4DCCA92612B296&quot; width=&quot;640&quot; height=&quot;480&quot; /&gt;	&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/126897484DCCA92B1F20CF&quot; width=&quot;640&quot; height=&quot;480&quot; /&gt;	&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/136AF0524DCCA92B1311CB&quot; width=&quot;640&quot; height=&quot;480&quot; /&gt;	&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/14307C4E4DCCA92C0F93F1&quot; width=&quot;640&quot; height=&quot;480&quot; /&gt;	&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/146C22484DCCA92E217A55&quot; width=&quot;640&quot; height=&quot;480&quot; /&gt;	&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/1552A64D4DCCA92E0ED565&quot; width=&quot;640&quot; height=&quot;480&quot; /&gt;	&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;장점: 지갑없이 폰만 들고 다녀도 무서울게 없다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;그립감이 쏠쏠하다.&lt;/p&gt;
&lt;p&gt;단점: 모양이 맘에 안들수 있다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-75-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=16656705&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/75&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/콜럼버스의%20달걀&quot;&gt;콜럼버스의 달걀&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/75&quot; &gt;스마트폰에 교통신용카드 이식하면 지갑이 필요없다.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(4)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/13&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>콜럼버스의 달걀</category>
			<category>갤럭시U</category>
			<category>잔머리</category>
			<category>젤리</category>
			<category>케이스</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/75</guid>
			<comments>http://bulkdisk.tistory.com/75#entry75comment</comments>
			<pubDate>Fri, 13 May 2011 12:44:47 +0900</pubDate>
		</item>
		<item>
			<title>VS2010 커맨드 라인 시스템 환경변수 요약</title>
			<link>http://bulkdisk.tistory.com/74</link>
			<description>Visual Studio 는 도구로 명령프롬프트를 별도의 배치파일로 제공을 한다.&lt;br /&gt;
&lt;br /&gt;
Visual Studio 2010을 사용하면서 간단한 코드들은 Notepad++을 이용하여 소스코드 컴파일 및 테스트를 해보는데&lt;br /&gt;
Notepad++ 에서 컴파일 환경을 세팅하기위해서는 명령프롬프트에서 제공하는 것처럼 시스템 환경변수가 필요하다.&lt;br /&gt;
&lt;br /&gt;
이는 모든 텍스트 편집기에서 컴파일하기위한 환경이라고 보면 될듯..&lt;br /&gt;
&lt;br /&gt;
환경변수는 아래와 같은 것들이 추가가 되는데 시스템에 맞는 경로로 추가해주거나 편집해주면 됨.&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;hr style=&quot;height: 7px; border-right-width: 0px; border-left-width: 0px; border-right-style: none; border-left-style: none; border-color: initial; border-top-width: 1px; border-top-style: solid; border-bottom-width: 3px; border-bottom-style: solid; border-top-color: black; border-right-color: black; border-bottom-color: black; border-left-color: black; display: block; &quot;&gt;&lt;/div&gt;
&amp;nbsp;&lt;br /&gt;
&lt;div&gt;
DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
Framework35Version=v3.5&lt;/div&gt;
&lt;div&gt;
FrameworkDir=C:\Windows\Microsoft.NET\Framework\&lt;/div&gt;
&lt;div&gt;
FrameworkDIR32=C:\Windows\Microsoft.NET\Framework\&lt;/div&gt;
&lt;div&gt;
FrameworkVersion=v4.0.30319&lt;/div&gt;
&lt;div&gt;
FrameworkVersion32=v4.0.30319&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &amp;nbsp; &amp;nbsp;C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\ATLMFC\INCLUDE;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\include;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
LIB=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\LIB;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\ATLMFC\LIB;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\lib;&lt;/div&gt;
&lt;div&gt;
LIBPATH=C:\Windows\Microsoft.NET\Framework\v4.0.30319;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;C:\Windows\Microsoft.NET\Framework\v3.5;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\LIB;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\ATLMFC\LIB;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
Path=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VSTSDB\Deploy;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\BIN;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Windows\Microsoft.NET\Framework\v4.0.30319;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Windows\Microsoft.NET\Framework\v3.5;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\VCPackages;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Program Files (x86)\HTML Help Workshop;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Performance Tools;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\NETFX 4.0 Tools;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\&lt;/div&gt;
&lt;div&gt;
VS100COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\&lt;/div&gt;
&lt;div&gt;
VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio 10.0\&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
WindowsSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;hr style=&quot;height: 7px; border-right-width: 0px; border-left-width: 0px; border-right-style: none; border-left-style: none; border-color: initial; border-top-width: 1px; border-top-style: solid; border-bottom-width: 3px; border-bottom-style: solid; border-top-color: black; border-right-color: black; border-bottom-color: black; border-left-color: black; display: block; &quot;&gt;&lt;/div&gt;
&amp;nbsp;&lt;br /&gt;
&amp;nbsp;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-74-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-74-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-74-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=16531018&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/74&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/프로그래밍&quot;&gt;프로그래밍&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/88&quot; &gt;Unity3D 일일 자동 빌드 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
17:38:46&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/78&quot; &gt;C#  worker 스레드에서 UI 스레드 Dispatcher 이용하기.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/23&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/74&quot; &gt;VS2010 커맨드 라인 시스템 환경변수 요약&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/47&quot; &gt;#progma 지시어&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/12/17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/39&quot; &gt;VS 2005 편집창 검정톤 색상 스키마.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/38&quot; &gt;VB6 이나 VBA 윈도우에서 휠이 안먹는 경우&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>프로그래밍</category>
			<category>VS2010</category>
			<category>환경변수</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/74</guid>
			<comments>http://bulkdisk.tistory.com/74#entry74comment</comments>
			<pubDate>Mon, 09 May 2011 16:29:15 +0900</pubDate>
		</item>
		<item>
			<title>갤럭시U 서비스 코드 바이너리 데이터</title>
			<link>http://bulkdisk.tistory.com/73</link>
			<description>&lt;p style=&quot;margin:0&quot;&gt;&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;보통 모든 휴대폰에는 A/S 용도로 특별한 키모음이 숨겨져 있다.&lt;br /&gt;
*#123124# 같은걸 누르면 설정메뉴가 나타난다던지... 물론 이것은 폰의 사후관리를 위해서 존재하지만 일부 유저들은 그것을&lt;br /&gt;
알아내어 초기화를 한다던지 하는 경우가 종종 있다.&lt;br /&gt;
&lt;br /&gt;갤럭시 U 의 파일을 구경하다가 아래사진과 같은 문자열을 발견했다.&lt;br /&gt;
##xxxxxx# 같은 형태도 있고 *#xxxxx# 같은 형태도 있고&lt;br /&gt;
&lt;br /&gt;어떤걸 입력해보니 GPS를 초기화 하겠냐는 다이얼로그도 나온다.&lt;br /&gt;
&lt;br /&gt;어떤 코드는 아무일도 일어나지 않는 것도 있고..&lt;br /&gt;
&lt;br /&gt;심한경우 폰을들고 A/S 센터로 직행해야하는 경우가 생길수 있다.&lt;br /&gt;
호기심 강한 용자라면 한번 다양하게 시험해보시길...&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/114F8E4F4DBFD46908B1F1&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/114F8E4F4DBFD46908B1F1&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;갤럭시유서비스코드영역.png&quot; height=&quot;319&quot; width=&quot;683&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-73-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-73-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-73-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=16376632&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/73&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/81&quot; &gt;Total commander for android 정보.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/80&quot; &gt;안드로이드 환경변수 및 JAVA 환경변수&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/73&quot; &gt;갤럭시U 서비스 코드 바이너리 데이터&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/72&quot; &gt;갤럭시U(SHW-M130L) 시스템 기본어플 정리&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/04/29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<category>갤럭시</category>
			<category>서비스코드</category>
			<category>안드로이드</category>
			<category>조심</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/73</guid>
			<comments>http://bulkdisk.tistory.com/73#entry73comment</comments>
			<pubDate>Tue, 03 May 2011 19:14:31 +0900</pubDate>
		</item>
		<item>
			<title>갤럭시U(SHW-M130L) 시스템 기본어플 정리</title>
			<link>http://bulkdisk.tistory.com/72</link>
			<description>조만간 진저로 버전업이 되겠지만...&lt;br /&gt;
브라우저 폭때문에 우측의 패키지명과 버전이 잘려보인다면 복사해서 다른곳에 붙여넣는것도 방법.&lt;br /&gt;
&lt;br /&gt;
블로그에 붙여넣기 하다보니 화면폭때문에 패키지명과 버전이 잘려보인다. 폭조절하는게 노가다라..&lt;br /&gt;
&lt;br /&gt;아래 주소로 더욱 자세히 볼수 있다.&lt;br /&gt;
&lt;a href=&quot;https://spreadsheets.google.com/ccc?key=0AlJgT3w1fo2OdHRkQUx0dWdPaFZxRFdCUDJhNGxhMnc&amp;amp;hl=ko&quot; target=&quot;_blank&quot; title=&quot;[https://spreadsheets.google.com/ccc?key=0AlJgT3w1fo2OdHRkQUx0dWdPaFZxRFdCUDJhNGxhMnc&amp;amp;hl=ko]로 이동합니다.&quot;&gt;https://spreadsheets.google.com/ccc?key=0AlJgT3w1fo2OdHRkQUx0dWdPaFZxRFdCUDJhNGxhMnc&amp;amp;hl=ko&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=ks_c_5601-1987&quot;&gt;&lt;meta name=&quot;ProgId&quot; content=&quot;Excel.Sheet&quot;&gt;&lt;meta name=&quot;Generator&quot; content=&quot;Microsoft Excel 11&quot;&gt;&lt;link rel=&quot;File-List&quot; href=&quot;TB08%20시스템앱.files/filelist.xml&quot;&gt;&lt;style id=&quot;TB08 시스템앱_1930_Styles&quot;&gt;&lt;!--table	{mso-displayed-decimal-separator:&quot;\.&quot;;	mso-displayed-thousand-separator:&quot;\,&quot;;}.font51930	{color:windowtext;	font-size:8.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움, monospace;	mso-font-charset:129;}.xl241930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:General;	text-align:general;	vertical-align:middle;	mso-background-source:auto;	mso-pattern:auto;	white-space:nowrap;}.xl251930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;_-* \#\,\#\#0_-\;\\-* \#\,\#\#0_-\;_-* \0022-\0022_-\;_-\@_-&quot;;	text-align:general;	vertical-align:middle;	mso-background-source:auto;	mso-pattern:auto;	white-space:nowrap;}.xl261930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:General;	text-align:left;	vertical-align:middle;	border:.5pt solid windowtext;	mso-background-source:auto;	mso-pattern:auto;	white-space:normal;}.xl271930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;_-* \#\,\#\#0_-\;\\-* \#\,\#\#0_-\;_-* \0022-\0022_-\;_-\@_-&quot;;	text-align:right;	vertical-align:middle;	border:.5pt solid windowtext;	mso-background-source:auto;	mso-pattern:auto;	white-space:normal;}.xl281930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:General;	text-align:general;	vertical-align:middle;	border:.5pt solid windowtext;	mso-background-source:auto;	mso-pattern:auto;	white-space:nowrap;}.xl291930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;_-* \#\,\#\#0_-\;\\-* \#\,\#\#0_-\;_-* \0022-\0022_-\;_-\@_-&quot;;	text-align:general;	vertical-align:middle;	border:.5pt solid windowtext;	mso-background-source:auto;	mso-pattern:auto;	white-space:nowrap;}.xl301930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:General;	text-align:left;	vertical-align:middle;	border:.5pt solid windowtext;	background:#CCFFFF;	mso-pattern:auto none;	white-space:normal;}.xl311930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;_-* \#\,\#\#0_-\;\\-* \#\,\#\#0_-\;_-* \0022-\0022_-\;_-\@_-&quot;;	text-align:right;	vertical-align:middle;	border:.5pt solid windowtext;	background:#CCFFFF;	mso-pattern:auto none;	white-space:normal;}.xl321930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;_-* \#\,\#\#0_-\;\\-* \#\,\#\#0_-\;_-* \0022-\0022_-\;_-\@_-&quot;;	text-align:general;	vertical-align:middle;	border:.5pt solid windowtext;	background:#CCFFFF;	mso-pattern:auto none;	white-space:nowrap;}.xl331930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:General;	text-align:general;	vertical-align:middle;	border:.5pt solid windowtext;	background:#CCFFFF;	mso-pattern:auto none;	white-space:nowrap;}.xl341930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;\@&quot;;	text-align:general;	vertical-align:middle;	mso-background-source:auto;	mso-pattern:auto;	white-space:nowrap;}.xl351930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;\@&quot;;	text-align:general;	vertical-align:middle;	border:.5pt solid windowtext;	mso-background-source:auto;	mso-pattern:auto;	white-space:nowrap;}.xl361930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:700;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:General;	text-align:general;	vertical-align:middle;	border:.5pt solid windowtext;	background:#FFCC99;	mso-pattern:auto none;	white-space:nowrap;}.xl371930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:700;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;_-* \#\,\#\#0_-\;\\-* \#\,\#\#0_-\;_-* \0022-\0022_-\;_-\@_-&quot;;	text-align:general;	vertical-align:middle;	border:.5pt solid windowtext;	background:#FFCC99;	mso-pattern:auto none;	white-space:nowrap;}.xl381930	{padding-top:1px;	padding-right:1px;	padding-left:1px;	mso-ignore:padding;	color:windowtext;	font-size:10.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움체, monospace;	mso-font-charset:129;	mso-number-format:&quot;\@&quot;;	text-align:general;	vertical-align:middle;	border:.5pt solid windowtext;	background:#FFCC99;	mso-pattern:auto none;	white-space:nowrap;}ruby	{ruby-align:left;}rt	{color:windowtext;	font-size:8.0pt;	font-weight:400;	font-style:normal;	text-decoration:none;	font-family:돋움, monospace;	mso-font-charset:129;	mso-char-type:none;}--&gt;&lt;/style&gt;&lt;!--[if !excel]&gt;　　&lt;![endif]--&gt;&lt;!--다음 내용은 Microsoft Office Excel의 웹 페이지 마법사를 사용하여 작성되었습니다.--&gt;&lt;!--같은 내용의 항목이 다시 게시되면 DIV 태그 사이에 있는 내용이 변경됩니다.--&gt;&lt;!-----------------------------&gt;&lt;!--Excel의 웹 페이지 마법사로 게시해서 나온 결과의 시작 --&gt;&lt;!-----------------------------&gt;&lt;div id=&quot;TB08 시스템앱_1930&quot; align=&quot;center&quot; x:publishsource=&quot;Excel&quot;&gt;
&lt;table x:str=&quot;&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;1163&quot; class=&quot;xl241930&quot; style=&quot;border-collapse:collapse;table-layout:fixed;width:874pt&quot;&gt;
 &lt;colgroup&gt;&lt;col class=&quot;xl241930&quot; width=&quot;31&quot; style=&quot;mso-width-source:userset;mso-width-alt: 881;width:23pt&quot;&gt; &lt;col class=&quot;xl241930&quot; width=&quot;258&quot; style=&quot;mso-width-source:userset;mso-width-alt: 7338;width:194pt&quot;&gt; &lt;col class=&quot;xl251930&quot; width=&quot;89&quot; style=&quot;mso-width-source:userset;mso-width-alt: 2531;width:67pt&quot;&gt; &lt;col class=&quot;xl251930&quot; width=&quot;82&quot; style=&quot;mso-width-source:userset;mso-width-alt: 2332;width:62pt&quot;&gt; &lt;col class=&quot;xl241930&quot; width=&quot;197&quot; style=&quot;mso-width-source:userset;mso-width-alt: 5603;width:148pt&quot;&gt; &lt;col class=&quot;xl241930&quot; width=&quot;396&quot; style=&quot;mso-width-source:userset;mso-width-alt: 11264;width:297pt&quot;&gt; &lt;col class=&quot;xl341930&quot; width=&quot;110&quot; style=&quot;mso-width-source:userset;mso-width-alt: 3128;width:83pt&quot;&gt; &lt;/colgroup&gt;&lt;tbody&gt;&lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl241930&quot; colspan=&quot;2&quot; width=&quot;289&quot; style=&quot;height:13.5pt;  width:217pt&quot;&gt;갤럭시U 2.2.1 TB08&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp; &lt;/span&gt;시스템앱&lt;/td&gt;
  &lt;td class=&quot;xl251930&quot; width=&quot;89&quot; style=&quot;width:67pt&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;xl251930&quot; width=&quot;82&quot; style=&quot;width:62pt&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;xl241930&quot; width=&quot;197&quot; style=&quot;width:148pt&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;xl241930&quot; width=&quot;396&quot; style=&quot;width:297pt&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;xl341930&quot; width=&quot;110&quot; style=&quot;width:83pt&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl361930&quot; style=&quot;height:13.5pt&quot;&gt;no&lt;/td&gt;
  &lt;td class=&quot;xl361930&quot; style=&quot;border-left:none&quot;&gt;FileName&lt;/td&gt;
  &lt;td class=&quot;xl371930&quot; style=&quot;border-left:none&quot; x:str=&quot;size&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;size&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
  &lt;td class=&quot;xl371930&quot; style=&quot;border-left:none&quot; x:str=&quot;ODEX&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;ODEX&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
  &lt;td class=&quot;xl361930&quot; style=&quot;border-left:none&quot;&gt;name&lt;/td&gt;
  &lt;td class=&quot;xl361930&quot; style=&quot;border-left:none&quot;&gt;pkgID&lt;/td&gt;
  &lt;td class=&quot;xl381930&quot; style=&quot;border-left:none&quot;&gt;ver&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'1&quot;&gt;1&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;AccountAndSyncSettings.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;51233&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;51,233 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;45152&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;45,152 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Account and Sync  Settings&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.subscribedfeeds&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'2&quot;&gt;2&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;AcnCM.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;12689&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;12,689 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;2288&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;2,288 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;ACN_CM&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.lguplus.common.wificm&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;00.01.01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'3&quot;&gt;3&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;AnycallServiceCenter.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;74505&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;74,505 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;73304&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;73,304 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;애니콜 서비스센터&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.anycallservicecenter&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'4&quot;&gt;4&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;AppInstaller.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;26914&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;26,914 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;26176&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;26,176 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Installation  manager&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.appinstaller&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'5&quot;&gt;5&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Apple.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;315749&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;315,749 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;애플민트 서체&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.monotype.android.font.applemint&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'6&quot;&gt;6&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;ApplicationsProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;5717&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;5,717 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;20864&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;20,864 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.applications&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'7&quot;&gt;7&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;AxT9IME.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1610343&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,610,343 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;598608&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;598,608 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;삼성 천지인 입력기&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.samsung.sec.android.inputmethod.axt9&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'8&quot;&gt;8&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;BadgeProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8564&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,564 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;8792&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,792 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;BadgeProvider&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.provider.badge&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'9&quot;&gt;9&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;BluetoothOPP.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;92045&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;92,045 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;388568&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;388,568 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;OPP&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.bluetooth&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'10&quot;&gt;10&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;BluetoothServices.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8190&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,190 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;8936&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,936 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;BrcmBluetoothServices&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.broadcom.bt.app.system&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'11&quot;&gt;11&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;BluetoothTestMode.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;11080&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;11,080 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;16704&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;16,704 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;BluetoothTest&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.bluetoothtest&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'12&quot;&gt;12&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Browser.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;285075&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;285,075 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;437128&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;437,128 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;브라우저&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.browser&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'13&quot;&gt;13&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;BuddiesNow.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;297567&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;297,567 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;86752&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;86,752 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Buddies now&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.widgetapp.buddiesnow&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'14&quot;&gt;14&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;CalendarProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;31229&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;31,229 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;884464&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;884,464 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Calendar Storage&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.calendar&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'15&quot;&gt;15&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Camera.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2354871&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;2,354,871 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;759616&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;759,616 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;카메라&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.camera&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'16&quot;&gt;16&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;CameraFirmware.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;20085&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;20,085 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;31936&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;31,936 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Camera Firmware&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.camerafirmware&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'17&quot;&gt;17&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;CertInstaller.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;10517&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;10,517 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;36272&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;36,272 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Certificate  installer&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.certinstaller&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'18&quot;&gt;18&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Choco.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;401815&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;401,815 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;쵸코서체&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.monotype.android.font.chococooky&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'19&quot;&gt;19&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;ClockPackage.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;3205495&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;3,205,495 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1059512&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,059,512 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Alarm/Clock&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.clockpackage&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'20&quot;&gt;20&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Contacts.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2204970&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;2,204,970 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;2139552&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;2,139,552 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;주소록&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.contacts&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'21&quot;&gt;21&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;ContactsProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;10916&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;10,916 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;533976&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;533,976 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Contacts Storage&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.contacts&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'22&quot;&gt;22&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DataCreate.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1989913&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,989,913 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;441352&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;441,352 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;DataCreate&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.samsungtest.DataCreate&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'23&quot;&gt;23&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Daum.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2778210&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;2,778,210 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;다음&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;net.daum.android.daum&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.3&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'24&quot;&gt;24&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DaumMaps.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;3001998&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;3,001,998 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;다음지도&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;net.daum.android.map&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.6.3&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'25&quot;&gt;25&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Days.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;892834&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;892,834 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;787032&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;787,032 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Days&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.widgetapp.days&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'26&quot;&gt;26&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DefaultContainerService.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;3652&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;3,652 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;12616&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;12,616 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Media Container  Service&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.defcontainer&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'27&quot;&gt;27&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DialerTabActivity.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;813943&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;813,943 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1089280&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,089,280 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Phone&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.dialertab&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'28&quot;&gt;28&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DioDict.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;126884&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;126,884 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;207024&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;207,024 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;사전&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.EDictionary&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'29&quot;&gt;29&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Divx.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;45107&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;45,107 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;23512&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;23,512 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Licence settings&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.samsung.android.app.divx&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.10&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'30&quot;&gt;30&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Dlna.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;912788&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;912,788 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1500304&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,500,304 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;AllShare&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.dlna&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'31&quot;&gt;31&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DMMonitor.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;47874&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;47,874 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;DMMonitor&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sds.DMMonitor&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'32&quot;&gt;32&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DownloadProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8863&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,863 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;90096&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;90,096 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Download Manager&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.downloads&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'33&quot;&gt;33&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DrmUA.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;7657&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;7,657 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;13600&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;13,600 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;DRMContentLauncher&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.drmua&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'34&quot;&gt;34&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;DualClock.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;240758&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;240,758 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;61512&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;61,512 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;듀얼시계 위젯&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.widgetapp.dualclock&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'35&quot;&gt;35&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Email.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;624440&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;624,440 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1919696&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,919,696 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;이메일&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.email&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'36&quot;&gt;36&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;FactoryTest.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1268477&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,268,477 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;318608&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;318,608 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Factory Test&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.samsungtest.FactoryTest&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'37&quot;&gt;37&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;FirmwareUpdate.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;10139&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;10,139 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;9264&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;9,264 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.update.firmware&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'38&quot;&gt;38&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Gagebu.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;3722704&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;3,722,704 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;가계부&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.hnbsec.nmoney&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;3.2.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'39&quot;&gt;39&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Gallery3D.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;516430&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;516,430 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;582816&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;582,816 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;갤러리&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.cooliris.media&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.1.30682&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'40&quot;&gt;40&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GenieWidget.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;764397&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;764,397 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;News &amp;amp;  Weather&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.apps.genie.geniewidget&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.3.03&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'41&quot;&gt;41&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Gmail.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1860411&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,860,411 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Gmail&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.gm&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.3.2&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'42&quot;&gt;42&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GoogleBackupTransport.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2615&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;2,615 &lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;67536&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;67,536 &lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Google Backup  Transport&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.backup&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'43&quot;&gt;43&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GoogleCalendarSyncAdapter.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;113439&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;113,439 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Calendar Sync  Adapter&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.syncadapters.calendar&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'44&quot;&gt;44&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GoogleContactsSyncAdapter.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;122282&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;122,282 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Contacts Sync  Adapter&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.syncadapters.contacts&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'45&quot;&gt;45&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GoogleFeedback.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;89707&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;89,707 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.feedback&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'46&quot;&gt;46&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GooglePartnerSetup.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;9912&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;9,912 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Google Partner  Setup&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.partnersetup&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'47&quot;&gt;47&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GoogleQuickSearchBox.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;622607&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;622,607 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Google Search&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.googlequicksearchbox&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.1.2.64376&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'48&quot;&gt;48&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GoogleServicesFramework.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1401398&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,401,398 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Google Services  Framework&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.gsf&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'49&quot;&gt;49&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;GpsSetup2.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;22731&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;22,731 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;76656&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;76,656 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;GpsSetup2&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.GpsSetup2&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'50&quot;&gt;50&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;HiddenMenu.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;77460&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;77,460 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;253912&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;253,912 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.hiddenmenu&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'51&quot;&gt;51&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;HTMLViewer.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;4079&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;4,079 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;7072&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;7,072 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;HTML Viewer&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.htmlviewer&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'52&quot;&gt;52&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;InfoAlarm.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;7558001&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;7,558,001 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;772680&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;772,680 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Daily Briefing&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.widgetapp.infoalarm&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;10.12.14.01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'53&quot;&gt;53&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;InputEventApp.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8068&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,068 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;8848&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,848 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.samsung.InputEventApp&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'54&quot;&gt;54&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;install_flash_player.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;3928081&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;3,928,081 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Adobe Flash  Player 10.1&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.adobe.flashplayer&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;10.1.72.7&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'55&quot;&gt;55&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;JobManager.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;132730&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;132,730 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;875056&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;875,056 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Task Manager&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.controlpanel&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.2&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'56&quot;&gt;56&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Kies.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;9294&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;9,294 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;9368&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;9,368 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;USB settings&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.Kies&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'57&quot;&gt;57&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;KyoboEbook.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1085638&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,085,638 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;교보 E-Book&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.kyobo.ebook.ebookcase&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.1.5&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'58&quot;&gt;58&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGTHiddenMenu.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;11140&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;11,140 &lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;9504&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;9,504 &lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.lgthiddenmenu&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'59&quot;&gt;59&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUARMService.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;33119&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;33,119 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;OZStoreARMService&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.lgt.arm&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'60&quot;&gt;60&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUCommonService.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;84276&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;84,276 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;CommonService&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.lguplus.common&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;01.03.01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'61&quot;&gt;61&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUContentsManager.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;524433&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;524,433 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;콘텐츠매니저&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.lgt.ubivelox.contents.manager&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.01.004.859&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'62&quot;&gt;62&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUDownLoader.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1071052&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,071,052 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;OZ Downloader&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.lgt.downloader&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'63&quot;&gt;63&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUFileViewer.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;140804&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;140,804 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;File Viewer&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.lgt.fileviewer&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.0.22&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'64&quot;&gt;64&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUMnet.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2470258&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;2,470,258 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Mnet&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.mnet.polgtapp&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.4.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'65&quot;&gt;65&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUOZLite.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;832900&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;832,900 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;OZ Lite&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.lgt.browser&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'66&quot;&gt;66&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUOZStore.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;979141&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;979,141 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;오즈스토어&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.lgt.appstore&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;01.07.00&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'67&quot;&gt;67&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUSharedManager.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;19882&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;19,882 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;SharedManger&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.lgt.ubivelox.file.shared_manager&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;LGT_20101129_01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'68&quot;&gt;68&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUWebSync.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;123349&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;123,349 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Contacts Sync&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.ubivelox.websync&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;LGT_20101222_01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'69&quot;&gt;69&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUWebViewer.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2923001&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;2,923,001 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;오즈웹뷰어&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.lgt.webviewer&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;02.00.02&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'70&quot;&gt;70&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LGUWipiPlayer.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;34084&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;34,084 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;LGT WIPI Player&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.lgt.wipi&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.00.001.30&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'71&quot;&gt;71&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LiveWallpapers.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1038308&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,038,308 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;67216&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;67,216 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;라이브월페이퍼&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.wallpaper&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'72&quot;&gt;72&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LiveWallpapersPicker.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;19350&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;19,350 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;20072&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;20,072 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;라이브월페이퍼&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.wallpaper.livepicker&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'73&quot;&gt;73&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;LogsProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8820&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,820 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;49440&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;49,440 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;LogsProvider&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.provider.logsprovider&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'74&quot;&gt;74&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Maps.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;4947009&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;4,947,009 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;지도&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.apps.maps&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;4.5.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'75&quot;&gt;75&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;MarketUpdater.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8921&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,921 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;마켓 업데이터&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.vending.updater&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'76&quot;&gt;76&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Me2day.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1681177&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,681,177 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;미투데이&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.nhn.android.me2day&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.2.7&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'77&quot;&gt;77&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;MediaProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;16074&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;16,074 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;147264&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;147,264 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Media Storage&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.media&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'78&quot;&gt;78&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;MediaUploader.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;301058&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;301,058 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;My Uploads&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.apps.uploader&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.5.9&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'79&quot;&gt;79&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Memo.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1396642&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,396,642 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;123744&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;123,744 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;메모&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.memo&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'80&quot;&gt;80&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;MiniDiary.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;585411&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;585,411 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1052000&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,052,000 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;미니다이어리&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.minidiary&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'81&quot;&gt;81&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Minihompy.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1699447&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,699,447 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;미니홈피&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.btb.minihompy&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.0.2&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'82&quot;&gt;82&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;MSCClockWidget.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;133998&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;133,998 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;65208&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;65,208 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;시계위젯&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.widgetapp.clockweather.clockwidget&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;10.12.08.01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'83&quot;&gt;83&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;MusicPlayer.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;4888392&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;4,888,392 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1670864&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,670,864 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Music Player&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.music&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.1.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'84&quot;&gt;84&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;NaverBlog.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1484170&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,484,170 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;네이버블로그&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.nhn.android.blog&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.9&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'85&quot;&gt;85&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;NaverSearch.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2004928&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;2,004,928 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;네이버검색&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.nhn.android.search&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.6.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'86&quot;&gt;86&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;NetworkLocation.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;12364&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;12,364 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;201992&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;201,992 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Network Location&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.location&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'87&quot;&gt;87&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;OnNews.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1011865&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,011,865 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;온뉴스&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Iconon.App.OnNews&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'88&quot;&gt;88&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;OtaProvisioningService.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;10992&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;10,992 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;37448&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;37,448 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;CP Message&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.app.OmaCP&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'89&quot;&gt;89&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;PackageInstaller.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;19127&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;19,127 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;33560&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;33,560 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Package installer&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.packageinstaller&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'90&quot;&gt;90&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Personalization.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;15930&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;15,930 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;22520&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;22,520 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Perso&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.personalization&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'91&quot;&gt;91&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Phone.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2863599&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;2,863,599 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1207928&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,207,928 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;전화&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.phone&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'92&quot;&gt;92&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Phone_Util.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;11347&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;11,347 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;14672&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;14,672 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;PhoneUtil&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.phoneutil&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'93&quot;&gt;93&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;PhoneErrService.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;19493&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;19,493 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;12456&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;12,456 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;PhoneErrService&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.app.RilErrorNotifier&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'94&quot;&gt;94&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;PhoneSetupWizard.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;257719&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;257,719 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;132560&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;132,560 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;PhoneSetupWizard&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.phonesetupwizard&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'95&quot;&gt;95&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;PicoTts.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;7034&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;7,034 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;13192&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;13,192 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Pico TTS&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.svox.pico&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'96&quot;&gt;96&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Preconfig.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8836&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,836 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;10344&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;10,344 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Preconfig&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.Preconfig&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'97&quot;&gt;97&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Protips.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;58308&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;58,308 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;9048&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;9,048 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Home screen tips&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.protips&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'98&quot;&gt;98&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SamsungPOP.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1511255&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,511,255 &lt;/td&gt;
  &lt;td class=&quot;xl321930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;삼성Pop 증권&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.ubivelox.mc.activity&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.1.2&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'99&quot;&gt;99&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SamsungWidget_CalendarClock.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;588091&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;588,091 &lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;44664&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;44,664 &lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Calendar Clock&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.widgetapp.calendarclock&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;10.08.27.01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'100&quot;&gt;100&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SamsungWidget_DataCallSetting.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;37365&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;37,365 &lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;28576&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;28,576 &lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Data Call Setting&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.appwidget.DataCallSettingWidget&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.24&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'101&quot;&gt;101&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SamsungWidget_FeedAndUpdate.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;554318&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;554,318 &lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;378976&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;378,976 &lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Feeds and Updates&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.widgetapp.feedsandupdate&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;10.11.05.01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'102&quot;&gt;102&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SamsungWidget_Mirror.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;117227&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;117,227 &lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;35512&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;35,512 &lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;거울 위젯&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.widgetapp.mirror&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'103&quot;&gt;103&lt;/td&gt;
  &lt;td class=&quot;xl301930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SamsungWidget_ProgramMonitor.apk&lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;23392&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;23,392 &lt;/td&gt;
  &lt;td class=&quot;xl311930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;18888&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;18,888 &lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Program Monitor&lt;/td&gt;
  &lt;td class=&quot;xl331930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.samsung.sec.android.appwidget.programmonitorwidget&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.12&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'104&quot;&gt;104&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;ScreenCaptureService.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;15291&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;15,291 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;10480&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;10,480 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;스크린캡쳐&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.screencapture&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'105&quot;&gt;105&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SEC_MMS.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;4590991&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;4,590,991 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;삼성 MMS&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.mms&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'106&quot;&gt;106&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SecDownloadProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;10895&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;10,895 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;163864&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;163,864 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.providers.downloads&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'107&quot;&gt;107&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SecMMS_Interface.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;13717&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;13,717 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.mms&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.mms&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'108&quot;&gt;108&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SecurityProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;11791&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;11,791 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;10976&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;10,976 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Security Storage&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.security&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'109&quot;&gt;109&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SelfTestMode.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;482547&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;482,547 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;82320&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;82,320 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Self Test Mode&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.selftestmode&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'110&quot;&gt;110&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;serviceModeApp.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;34243&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;34,243 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;130456&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;130,456 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Service mode&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.servicemodeapp&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'111&quot;&gt;111&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Settings.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1510359&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,510,359 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1616920&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,616,920 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;시스템설정&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.settings&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'112&quot;&gt;112&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SettingsProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;19386&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;19,386 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;60240&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;60,240 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Settings Storage&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.settings&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'113&quot;&gt;113&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SetupWizard.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;592879&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;592,879 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Setup Wizard&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.setupwizard&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.3&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'114&quot;&gt;114&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;shutdown.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;4451&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;4,451 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;4944&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;4,944 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;ShutdownApp&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.shutdown&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'115&quot;&gt;115&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;signin.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;39835&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;39,835 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;174936&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;174,936 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;User account  login&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.osp.app.signin&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'116&quot;&gt;116&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SimDetachNotifier.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8793&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,793 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;7136&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;7,136 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;SimDetachNotifier&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.samsung.simdetachnotifier&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'117&quot;&gt;117&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SisoDrmProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;5477&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;5,477 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;32784&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;32,784 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;DRM Protected  Content Storag&lt;span style=&quot;display:none&quot;&gt;e&lt;/span&gt;&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.providers.drm&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'118&quot;&gt;118&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SnsAccount.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;59009&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;59,009 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;146840&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;146,840 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;SNSAccount&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.snsaccount&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'119&quot;&gt;119&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SnsProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;9008&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;9,008 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;529544&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;529,544 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;SNS&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.sns&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'120&quot;&gt;120&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SoundPlayer.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;521503&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;521,503 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;952464&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;952,464 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Sound Player&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.soundplayer&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'121&quot;&gt;121&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SSTDMB.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;446381&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;446,381 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;313456&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;313,456 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;TV&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.dmb&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'122&quot;&gt;122&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Stk.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;22765&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;22,765 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;53776&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;53,776 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;SIM Toolkit&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.stk&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'123&quot;&gt;123&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Street.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;288914&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;288,914 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Street View&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.street&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.6.0.6&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'124&quot;&gt;124&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Swype.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;4029047&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;4,029,047 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Swype&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.swype.android.inputmethod&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.9.51.13423&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'125&quot;&gt;125&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;SyncmlDM_LG.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;62767&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;62,767 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1054720&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,054,720 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Device Management&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.wssyncmldm&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.5.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'126&quot;&gt;126&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Talk.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;811350&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;811,350 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Talk&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.talk&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.3&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'127&quot;&gt;127&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;TATLiveWallpapersAurora.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1013044&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,013,044 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;19256&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;19,256 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Aurora 라이브월페이퍼&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.tat.livewallpaper.aurora&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.2.5&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'128&quot;&gt;128&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;TATLiveWallpapersBlueSea.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;392315&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;392,315 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;20584&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;20,584 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Blue sea 라이브월페이퍼&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.tat.livewallpaper.bluesea&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.2.5&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'129&quot;&gt;129&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;TelephonyProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;9583&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;9,583 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;142648&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;142,648 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Dialer Storage&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.telephony&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'130&quot;&gt;130&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;thinkdroid.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;5616473&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;5,616,473 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;ThinkFree Office&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.tf.thinkdroid.samsung&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.0.1115.01&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'131&quot;&gt;131&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Tinker.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;362179&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;362,179 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;팅커벨 서체&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.monotype.android.font.tinkerbell&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'132&quot;&gt;132&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;TouchWiz30Launcher.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2122373&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;2,122,373 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;462080&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;462,080 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Samsung Home&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.twlauncher&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'133&quot;&gt;133&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;TouchWizCalculator.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;482039&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;482,039 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;85336&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;85,336 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Calculator&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.calculator&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'134&quot;&gt;134&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;TouchWizCalendar.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;420359&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;420,359 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;1453568&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&lt;/span&gt;1,453,568 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Calendar&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.calendar&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'135&quot;&gt;135&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;TtsService.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;10511&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;10,511 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;34416&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;34,416 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;TTS Service&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;android.tts&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'136&quot;&gt;136&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;TwWallpaperChooser.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;5148444&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;5,148,444 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;20472&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;20,472 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;TwWallpaperChooser&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.twwallpaperchooser&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'137&quot;&gt;137&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;U+Mobile.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;41056&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;41,056 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;30936&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;30,936 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;U+ Mobile&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.lgt&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'138&quot;&gt;138&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;UmsService.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8804&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,804 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;5104&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;5,104 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;UmsService&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.UmsService&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'139&quot;&gt;139&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;UnifiedInbox.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;97375&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;97,375 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;94656&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;94,656 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Social Hub&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.unifiedinbox&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'140&quot;&gt;140&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;UrlShortcut.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;80623&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;80,623 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;4384&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;4,384 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;urlShortcut&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.urlshortcut&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'141&quot;&gt;141&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;UserDictionaryProvider.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;2767&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;2,767 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;14456&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;14,456 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.providers.userdictionary&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'142&quot;&gt;142&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Vending.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1529836&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,529,836 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;마켓&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.vending&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.12&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'143&quot;&gt;143&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;VideoPlayer.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;391238&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;391,238 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;347264&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;347,264 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Video Player&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.videoplayer&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'144&quot;&gt;144&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;VideoTutorial.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;29050&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;29,050 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;15528&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;15,528 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Tutorial&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.videotutorial&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'145&quot;&gt;145&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;VisualizationWallpapers.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;127725&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;127,725 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;29968&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;29,968 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Music  Visualization Wallpape&lt;span style=&quot;display:none&quot;&gt;rs&lt;/span&gt;&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.musicvis&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'146&quot;&gt;146&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;VoiceRecorder.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1006921&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,006,921 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;247680&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;247,680 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Voice Recorder&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.voicerecorder&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'147&quot;&gt;147&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;VoiceSearch.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;1247280&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;1,247,280 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Voice Search&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.voicesearch&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.0.2&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'148&quot;&gt;148&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;VpnServices.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;6094&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;6,094 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;30744&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;30,744 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;VPN Services&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.android.server.vpn&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.2.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'149&quot;&gt;149&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;Weather.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;4377346&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;  &lt;/span&gt;4,377,346 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;Weather&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.weathernews.Weather&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.1&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'150&quot;&gt;150&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;WlanTest.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;12350&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;12,350 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;32240&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;32,240 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;WlanTest&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.sec.android.app.wlantest&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'151&quot;&gt;151&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;wssomacp.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;140287&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;140,287 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;195288&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;195,288 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;OMACP&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.wsomacp&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'152&quot;&gt;152&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;wssyncmlnps.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;8767&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;8,767 &lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;82&quot; style=&quot;border-top:none;border-left:none;  width:62pt&quot; x:num=&quot;372984&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;372,984 &lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;wssyncmlnps&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.wssnps&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;1.0.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr height=&quot;18&quot; style=&quot;mso-height-source:userset;height:13.5pt&quot;&gt;
  &lt;td height=&quot;18&quot; class=&quot;xl281930&quot; style=&quot;height:13.5pt;border-top:none&quot; x:str=&quot;'153&quot;&gt;153&lt;/td&gt;
  &lt;td class=&quot;xl261930&quot; width=&quot;258&quot; style=&quot;border-top:none;border-left:none;  width:194pt&quot;&gt;YouTube.apk&lt;/td&gt;
  &lt;td class=&quot;xl271930&quot; width=&quot;89&quot; style=&quot;border-top:none;border-left:none;  width:67pt&quot; x:num=&quot;834075&quot;&gt;&lt;span style=&quot;mso-spacerun:yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;834,075 &lt;/td&gt;
  &lt;td class=&quot;xl291930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;　&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;YouTube&lt;/td&gt;
  &lt;td class=&quot;xl281930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;com.google.android.youtube&lt;/td&gt;
  &lt;td class=&quot;xl351930&quot; style=&quot;border-top:none;border-left:none&quot;&gt;2.1.6&lt;/td&gt;
 &lt;/tr&gt;
 &lt;!--[if supportMisalignedColumns]--&gt; &lt;tr height=&quot;0&quot; style=&quot;display:none&quot;&gt;
  &lt;td width=&quot;31&quot; style=&quot;width:23pt&quot;&gt;&lt;/td&gt;
  &lt;td width=&quot;258&quot; style=&quot;width:194pt&quot;&gt;&lt;/td&gt;
  &lt;td width=&quot;89&quot; style=&quot;width:67pt&quot;&gt;&lt;/td&gt;
  &lt;td width=&quot;82&quot; style=&quot;width:62pt&quot;&gt;&lt;/td&gt;
  &lt;td width=&quot;197&quot; style=&quot;width:148pt&quot;&gt;&lt;/td&gt;
  &lt;td width=&quot;396&quot; style=&quot;width:297pt&quot;&gt;&lt;/td&gt;
  &lt;td width=&quot;110&quot; style=&quot;width:83pt&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;!--[endif]--&gt;&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;!-----------------------------&gt;&lt;!--Excel의 웹 페이지 마법사로 게시해서 나온 결과의 끝--&gt;&lt;!-----------------------------&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-72-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-72-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-72-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=16376801&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/72&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/80&quot; &gt;안드로이드 환경변수 및 JAVA 환경변수&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/06/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/73&quot; &gt;갤럭시U 서비스 코드 바이너리 데이터&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/72&quot; &gt;갤럭시U(SHW-M130L) 시스템 기본어플 정리&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/04/29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/59&quot; &gt;윈도우에서 초간단 안드로이드 소스 받는법&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/31&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/72</guid>
			<comments>http://bulkdisk.tistory.com/72#entry72comment</comments>
			<pubDate>Fri, 29 Apr 2011 17:19:59 +0900</pubDate>
		</item>
		<item>
			<title>무료 포터블 소프트웨어 모음집 LiberKey</title>
			<link>http://bulkdisk.tistory.com/71</link>
			<description>&lt;p&gt;무료 포터블 소프트웨어 관련 모음은 몇가지가 눈에 띄는데 &lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/image/1508D2354D8FF3AC1F13E0&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/1738BC384D8FF3AD303AF4&quot; width=&quot;244&quot; height=&quot;48&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://www.lupopensuite.com/&quot; target=&quot;_blank&quot;&gt;lupo pensuite&lt;/a&gt;&amp;nbsp; 이전 간략소개글 &lt;a href=&quot;http://bulkdisk.tistory.com/8&quot;&gt;http://bulkdisk.tistory.com/8&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile1.uf.tistory.com/image/1155443C4D8FF3AD06ED25&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/161977424D8FF3AD105FA3&quot; width=&quot;244&quot; height=&quot;71&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://www.liberkey.com&quot; target=&quot;_blank&quot;&gt;liberkey&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/image/155D22374D8FF3B0199D5F&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/115D45344D8FF3B11F807E&quot; width=&quot;244&quot; height=&quot;48&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://portableapps.com/&quot; target=&quot;_blank&quot;&gt;portableapps.com&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/image/1431BD394D8FF3B1036F07&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/1210A1354D8FF3B108AFF4&quot; width=&quot;244&quot; height=&quot;79&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://tcup.pl/&quot; target=&quot;_blank&quot;&gt;Total Commander Ultima Prime&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;등이 대표적이라 할수 있다..&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;각각의 프로젝트 마다 특색이 조금씩 있긴 하지만 전세계의 유용한 여러 종류의 프로그램을 쓸수 있는 매력은 대동소이 하다.&lt;/p&gt;
  &lt;p&gt;Lupo PenSuite 나 PortableApps.com 같은 경우에는 별도의 프로그램 런쳐를 통해 보다 쉬운 접근성을 가지고 있으며&lt;/p&gt;
  &lt;p&gt;Total Commander Ultima Prime 은 셰어웨어인 토탈 커맨더를 전면에 내세우고 각종 플러그인 및 응용 프로그램을 함께 포함하고 있는 모양을 갖추었다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;LiberKey 는 Basic, Standard, Ultimate 로 묶음이 나뉘어 있는데 Ultimate Suite 는 164종의 응용프로그램이 포함되어 있다고 나오니 정말 명실상부한 종합선물 세트 되겠다. &lt;/p&gt;
  &lt;p&gt;&lt;a title=&quot;http://download.liberkey.com/lbk/LiberKey.exe&quot; href=&quot;http://download.liberkey.com/lbk/LiberKey.exe&quot;&gt;http://download.liberkey.com/lbk/LiberKey.exe&lt;/a&gt; 에서 다운 받을수 있고 현재 버전은 5.2 이다.&lt;/p&gt;
  &lt;p&gt;프로그램의 압축을 풀어 실행해보면 아주 단촐한 화면이 나오는데&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile4.uf.tistory.com/image/154E3B3C4D8FF3B119F615&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/12077D354D8FF3B21E3B0A&quot; width=&quot;439&quot; height=&quot;504&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;LiberKey Tools 메뉴에 들어가서 프로그램 모음 설치를 확인해보면 필요한 프로그램을 골라 설치(포터블환경)해서 쓸수 있다.&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/image/142546394D8FF3B3243283&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/165716364D8FF3B41716A6&quot; width=&quot;586&quot; height=&quot;662&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;이후 다운로드 및 압축해제가 완료되면 자동으로 등록된다.&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/image/1246AC3C4D8FF3B4311821&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/1936D3384D8FF3B523E5C5&quot; width=&quot;454&quot; height=&quot;504&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
                &lt;p&gt;원하는 프로그램 찾아들어가서 실행하면 끝…. 편리하지 아니한가… &lt;/p&gt;
  &lt;p&gt;자신이 모르는 새로운 프로그램을 사용해보는 것도 즐거운일… 한번 프로그램 목록 뒤져보면서 실행해보는 재미도 솔솔하다.&lt;/p&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=15185184&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/71&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/소프트웨어&quot;&gt;소프트웨어&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/71&quot; &gt;무료 포터블 소프트웨어 모음집 LiberKey&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/15&quot; &gt;토탈커맨더 7.5베타가 떳네..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/04/17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/8&quot; &gt;포터블 프리웨어 컬렉션 프로젝트 lupo pensuite&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/24&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>소프트웨어</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/71</guid>
			<comments>http://bulkdisk.tistory.com/71#entry71comment</comments>
			<pubDate>Mon, 28 Mar 2011 11:34:29 +0900</pubDate>
		</item>
		<item>
			<title>백업용 미디어 단가 비교해보니..</title>
			<link>http://bulkdisk.tistory.com/70</link>
			<description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://bulkdisk.tistory.com/64&quot; target=&quot;_blank&quot;&gt;작년포스트&lt;/a&gt;에 이어 최근의 단가상황을 다시 비교해보니 아래와 같다.&lt;/p&gt;
  &lt;p&gt;전체적으로 가격이 작년 9월에 비해 많이 떨어진걸 알수 있다.&lt;/p&gt;
  &lt;p&gt;한가지 특이한점은 작년기준으로는 백업을 HDD에 하는게 편의성이나 여러모로 유리하였다면&lt;/p&gt;
  &lt;p&gt;지금은 BD를 이용하는 방법도 고려해볼만 하다. 단 BD WRITER 의 가격이 다소 고가인 점을 제외하고..&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;table style=&quot;border-collapse: collapse&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;648&quot;&gt;
&lt;colgroup&gt;&lt;col style=&quot;width: 54pt&quot; width=&quot;72&quot;&gt;&lt;/colgroup&gt;&lt;tbody&gt;     &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot; width=&quot;72&quot;&gt;&lt;strong&gt;구분&lt;/strong&gt;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; width=&quot;72&quot;&gt;&lt;strong&gt;제품&lt;/strong&gt;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; width=&quot;72&quot;&gt;&lt;strong&gt;용량(GB)&lt;/strong&gt;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; width=&quot;72&quot;&gt;&lt;strong&gt;가격&lt;/strong&gt;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; width=&quot;72&quot;&gt;&lt;strong&gt;2010.09 말 최저가 기준            &lt;br /&gt;
GB당 단가&lt;/strong&gt;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; width=&quot;72&quot;&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; width=&quot;72&quot;&gt;&lt;strong&gt;가격&lt;/strong&gt;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; width=&quot;72&quot;&gt;&lt;strong&gt;2011.03 중 최저가 기준            &lt;br /&gt;
GB당 단가&lt;/strong&gt;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: windowtext 0.5pt solid; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; width=&quot;72&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;HDD&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;3.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;320&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;37900&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩118.44&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;38000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩118.75&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;3.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;44000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩88.00&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;39800&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩79.60&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;3.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;640&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;52000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩81.25&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;54500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩85.16&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;3.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;1000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;68900&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩68.90&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;56350&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩56.35&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;3.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;1500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;80500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩53.67&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;82300&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩54.87&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;3.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;2000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;125000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩62.50&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;90300&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩45.15&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;3.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;3000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;245400&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩81.80&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;2.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;320&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;49370&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩154.28&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;40500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩126.56&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;2.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;58500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩117.00&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;49700&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩99.40&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;2.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;640&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;80500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩125.78&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;65000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩101.56&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;2.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;750&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;84900&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩113.20&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;2.5&quot;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;1000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;110500&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩110.50&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;SSD&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;32&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;134860&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩4,214.38&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;98980&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩3,093.13&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;SSD&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;64&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;413600&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩6,462.50&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;138540&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩2,164.69&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;SSD&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;128&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;545000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩4,257.81&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;261000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩2,039.06&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;SSD&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;240&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;665000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩2,770.83&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;ODD&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;CD-R&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;0.7&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;160&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩228.57&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;100&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩142.86&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;CD-RW&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;0.7&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;630&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩900.00&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;400&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩571.43&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;DVD-R&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;4.7&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;178&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩37.87&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;190&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩40.43&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;DVD+R&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;4.7&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;199&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩42.34&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;190&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩40.43&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;DVD-R(DL)&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;8.5&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;3000&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩352.94&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;579&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩68.12&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;DVD+R(DL)&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;8.5&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;1400&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩164.71&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;396&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩46.59&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;DVD-RW&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;4.7&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;800&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩170.21&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;600&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩127.66&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;DVD+RW&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;4.7&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;800&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩170.21&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;620&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩131.91&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;DVD-RAM&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;4.7&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;5900&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩1,255.32&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;5900&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩1,255.32&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;DVD-RAM&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;9.4&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;11090&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩1,179.79&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;6200&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩659.57&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr style=&quot;height: 16.5pt&quot; height=&quot;22&quot;&gt;
       &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: windowtext 0.5pt solid; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; height=&quot;22&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;BD&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;25&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;2360&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩94.40&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot; align=&quot;right&quot;&gt;180&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl66&quot; align=&quot;right&quot;&gt;₩7.20&lt;/td&gt;
        &lt;td style=&quot;border-bottom: windowtext 0.5pt solid; border-left: medium none; padding-left: 1px; padding-right: 1px; vertical-align: middle; border-top: medium none; border-right: windowtext 0.5pt solid; padding-top: 1px&quot; class=&quot;xl65&quot;&gt;&amp;nbsp;&lt;/td&gt;
     &lt;/tr&gt;
   &lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=14790058&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/70&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/끄적끄적.&quot;&gt;끄적끄적.&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/82&quot; &gt;싸이월드 미니라이프 서비스 종료.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/07/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/70&quot; &gt;백업용 미디어 단가 비교해보니..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/64&quot; &gt;백업용 미디어 단가 비교해보니 차라리 HDD를 쓰자&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(1)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/7&quot; &gt;MS의 IE8 정식버전 출시...과연 쓸만할지...&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/20&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/4&quot; &gt;포터블 프로그램&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/3&quot; &gt;마구잡이식 설치프로그램에 관하여..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/09&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>끄적끄적.</category>
			<category>HDD</category>
			<category>단가</category>
			<category>미디어</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/70</guid>
			<comments>http://bulkdisk.tistory.com/70#entry70comment</comments>
			<pubDate>Tue, 15 Mar 2011 11:06:33 +0900</pubDate>
		</item>
		<item>
			<title>Bcd 저장소에 리얼모드 부팅 지정하기</title>
			<link>http://bulkdisk.tistory.com/69</link>
			<description>&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;Bcd 저장소에 리얼모드 부팅 지정하기&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;&lt;br /&gt;
&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;Bootmgr 과 grub 을 입맛대로 사용하기 위해.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;&lt;br /&gt;
&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;bcdedit /create /d &quot;grldr.mbr &quot; /application bootsector&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;bcdedit /set &amp;lt;생성된GUID&amp;gt; device partition=&amp;lt;bcd저장드라이브 ex:H:&amp;gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;bcdedit /set &amp;lt;생성된GUID&amp;gt;%%B path \grldr.mbr&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;bcdedit /displayorder &amp;lt;생성된GUID&amp;gt; /addlast&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;&lt;br /&gt;
&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;필요한 파일&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;Grub4dos 에서 grldr.mbr, grldr, menu.lst&amp;nbsp;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Grldr.mbr 파일과 grldr 파일은 버전이 일치해야함. 다르면 뻑남.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#333333&quot; face=&quot;굴림&quot;&gt;Menu.lst 는 입맛대로 편집.&lt;/font&gt;&lt;/div&gt;
&lt;div style=&quot;color: rgb(51, 51, 51); font-family: 굴림; font-size: 9pt; line-height: 1.5; &quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-69-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-69-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-69-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=14431468&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/69&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/파워컴퓨팅/컴퓨터활용&quot;&gt;컴퓨터활용&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/85&quot; &gt;ER Studio Entity Name to Clipboard Sample Code&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/12/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/84&quot; &gt;윈도 비스타이상 관리자에서 C$, D$, ... 공유활성화 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/11/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/69&quot; &gt;Bcd 저장소에 리얼모드 부팅 지정하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/61&quot; &gt;해상도 비교용 월페이퍼&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/51&quot; &gt;SBS 라디오 초간단 청취하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(2)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/03/13&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/42&quot; &gt;윈도우7 고스트 복구시..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/08/10&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>컴퓨터활용</category>
			<category>BCD</category>
			<category>boot</category>
			<category>grub</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/69</guid>
			<comments>http://bulkdisk.tistory.com/69#entry69comment</comments>
			<pubDate>Thu, 03 Mar 2011 12:15:33 +0900</pubDate>
		</item>
		<item>
			<title>2010년 책상샷...</title>
			<link>http://bulkdisk.tistory.com/68</link>
			<description>자리배치를 새로 하거나 책상을 옮기면 가끔 책상샷을 찍어두곤한다.&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;문득 파일을 뒤지다보니 2010년 10월경 찍은 책상샷이 눈에 들어왔다..&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
책상샷을 보면 대충 일하는 분위기를 알수있고 추억으로 간직하기도 좋다.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/12234B334D26B3410F546D&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/12234B334D26B3410F546D&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;IMG20101026_002.jpg&quot; height=&quot;512&quot; width=&quot;683&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-68-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-68-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-68-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=12858668&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/68&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/일상&quot;&gt;일상&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/76&quot; &gt;10년&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/68&quot; &gt;2010년 책상샷...&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/01/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/63&quot; &gt;카카오톡이 주소록을 몽땅 가져가는걸 알고 사용중인지..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(8)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/49&quot; &gt;청와대.. 위성지도 서비스가 불편하다&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/01/29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/48&quot; &gt;최근 책상샷...&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(2)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/01/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/46&quot; &gt;솥단지론..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/12/14&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>일상</category>
			<category>책상샷</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/68</guid>
			<comments>http://bulkdisk.tistory.com/68#entry68comment</comments>
			<pubDate>Fri, 07 Jan 2011 15:32:05 +0900</pubDate>
		</item>
		<item>
			<title>안드로이드폰 SD 듀얼마운트 속도비교</title>
			<link>http://bulkdisk.tistory.com/67</link>
			<description>&lt;p&gt;폰의 SD 카드에 데이터를 주고 받기 위해서는 &lt;/p&gt;
  &lt;p&gt;일반적으로는 폰에서 SD카드 뽑아서 리더기에 꼽고 연결하던지, &lt;/p&gt;
  &lt;p&gt;아니면 usb 케이블 연결후 폰에서 마운트 하여 이동식 디스크로 인식시켜 사용하는 방법이 있다.&lt;/p&gt;
  &lt;p&gt;그러나 필자는 귀차니즘으로 인하여 그냥 USB케이블 연결하고 안드로이드커맨더(&lt;a href=&quot;http://Androidcommander.com&quot; target=&quot;_blank&quot;&gt;Androidcommander&lt;/a&gt;)를 주로 이용한다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;그러다가 문득 &lt;a href=&quot;http://www.appbrain.com/app/dual-mount-sd-widget/com.protocol.x.USB&quot; target=&quot;_blank&quot;&gt;Dual Mount SD&lt;/a&gt; 라는 어플을 발견했다.&lt;/p&gt;
  &lt;p&gt;이어플은 위젯타입으로 홈스크린에 꺼내놓고 듀얼마운트기능을 켜거나 끌수 있다.&lt;/p&gt;
  &lt;p&gt;듀얼마운트 기능을 켜놓은채 USB케이블을 연결하면 특별히 마운트를 하지 않아도 바로 이동식 디스크로 인식된다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;일반적인 USB연결은 케이블 연결하고, 마운트하는데 이때 폰에서는 SD카드가 분리된것으로 간주하여 폰 자체에서는 SD카드를 접근할수 없다. 충전겸해서 케이블 연결하고 사용시에는 매우 불편한데..&lt;/p&gt;
  &lt;p&gt;Dual Mount SD 어플로 마운트를 미리 해놓으면 이동식디스크와 폰자체에서도 동시에 접근이 가능하다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;보통 미드 같은 멀티미디어 데이터를 많이 전송하는데 이때는 속도가 필수 요소라 속도측정을 해보았다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;필자가 사용중인 SD는 샌디스크 8G Class 2 이다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;- Dual Mount SD 어플을 이용한 속도측정&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/image/1105372F4CFF149C305BFE&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/1370EC244CFF149C10095A&quot; width=&quot;563&quot; height=&quot;541&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;- 폰자체의 마운트 기능을 이용한 속도측정&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/image/147E9B304CFF149D063EF3&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/162662374CFF149D1CEBD9&quot; width=&quot;563&quot; height=&quot;541&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;- SD카드 리더기를 이용한 속도측정&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/image/142709344CFF149D2A7605&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/111CD2314CFF149D32ED32&quot; width=&quot;563&quot; height=&quot;541&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;* 위의 결과를 종합하자면&lt;/p&gt;
  &lt;p&gt;읽기는 리더기를 이용한 방법이 최선이며&lt;/p&gt;
  &lt;p&gt;쓰기는 Dual Mount SD 나 직접 마운트가 큰차이가 없으나 직접마운트가 조금더 안정적으로 보였다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;보통 SD에서 읽어오는건 카메라이미지나 동영상 촬영분 등이 될것이고&lt;/p&gt;
  &lt;p&gt;SD 에 쓰기 하는건 음악이나 동영상이 위주일테니 쓰기가 빠른 방식이 훨 나을듯하다.&lt;/p&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-67-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-67-1&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=11966155&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/67&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/73&quot; &gt;갤럭시U 서비스 코드 바이너리 데이터&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/72&quot; &gt;갤럭시U(SHW-M130L) 시스템 기본어플 정리&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/04/29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/59&quot; &gt;윈도우에서 초간단 안드로이드 소스 받는법&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/31&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/58&quot; &gt;안드로이드 최강의 폰관리툴 - 안드로이드 커맨더&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(4)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/30&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<category>app</category>
			<category>sd</category>
			<category>속도</category>
			<category>안드로이드</category>
			<category>어플</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/67</guid>
			<comments>http://bulkdisk.tistory.com/67#entry67comment</comments>
			<pubDate>Wed, 08 Dec 2010 14:16:13 +0900</pubDate>
		</item>
		<item>
			<title>가상화로 만든 VB6 Runtime Shell</title>
			<link>http://bulkdisk.tistory.com/65</link>
			<description>&lt;p&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/image/171214324CA1AD9E25963F&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/201E46324CA1AD9F234009&quot; height=&quot;203&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;컴퓨터를 사용하다면서 이런 저런 프로그램을 실행하다 보면 가끔 위와 같은류의 메시지를 발견할수가 있다.&lt;/p&gt;
  &lt;p&gt;이 메시지는 컴퓨터에 VB 로 만든 프로그램을 구동시키기 위한 모듈들이 없기 때문에 발생한다.&lt;/p&gt;
  &lt;p&gt;보통 VB6으로 만든 프로그램은 MSVBVM60.dll 만 있으면 구동이 되며 이 파일은 윈도우 설치시 시스템 디렉토리에 자동으로 설치되어있다. 그러나 한국어판로 만든 프로그램은 추가 적으로 VB6KO.dll 이 더 필요하다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;그리고 추가적으로 여러 OCX 파일들을 사용하는데 프로그램 개발시 사용한 OCX 파일이 없으면 구동이 안된다.&lt;/p&gt;
  &lt;p&gt;이 런타임 파일에는 공통적으로 많이 사용되는 아래의 파일이 포함되어있으니 VB6으로 개발되어진 프로그램을 쉽게 구동시킬수 있다.&lt;/p&gt;
  &lt;p&gt;comctl32.ocx    &lt;br /&gt;
Comdlg32.ocx     &lt;br /&gt;
MSCOMCT2.OCX     &lt;br /&gt;
MSCOMCTL.OCX     &lt;br /&gt;
msinet.ocx     &lt;br /&gt;
tabctl32.ocx     &lt;br /&gt;
VB6KO.DLL&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;사용법은 간단하다. &lt;/p&gt;
  &lt;p&gt;vb6env.exe 를 그냥 실행시켜놓고 원래 실행하고자하는 폴더로 CD 명령어를 이용해 이동하거나 해서 실행하는 방법과&lt;/p&gt;
  &lt;p&gt;vb6env.exe 에 파라메터로 실행하고자 하는 파일의 풀패스네임을 전달해주면 바로 구동된다.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://bulkdisk.tistory.com/attachment/cfile26.uf@1223E2054CA2D61FAF0A27.exe&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/exe.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; vb6env.exe&lt;/a&gt;&lt;/div&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;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9966386&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/65&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/파워컴퓨팅/유틸리티%20활용&quot;&gt;유틸리티 활용&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/65&quot; &gt;가상화로 만든 VB6 Runtime Shell&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/57&quot; &gt;SVN 업데이트를 편하게 하자.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/53&quot; &gt;토탈 커맨더와 거북이 SVN의 조합.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(2)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/05/18&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/29&quot; &gt;토탈커맨더를 포터블로 사용해보자&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(7)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/06/11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/23&quot; &gt;자신의 USB 컨트롤러를 확인하기 위한 툴&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/05/12&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/21&quot; &gt;무료 DNS 서비스.. DNSEVER&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/05/08&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>유틸리티 활용</category>
			<category>Runtime</category>
			<category>VB</category>
			<category>가상화</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/65</guid>
			<comments>http://bulkdisk.tistory.com/65#entry65comment</comments>
			<pubDate>Tue, 28 Sep 2010 17:55:59 +0900</pubDate>
		</item>
		<item>
			<title>백업용 미디어 단가 비교해보니 차라리 HDD를 쓰자</title>
			<link>http://bulkdisk.tistory.com/64</link>
			<description>&lt;P&gt;문득 데이터 백업용 미디어 HDD, ODD 의 용량별 단가를 보니 &lt;/P&gt;
&lt;P&gt;HDD 는 1.5T 가 용량대비 가격이 제일 싸고&lt;/P&gt;
&lt;P&gt;ODD는 4.7G DVD-R 이 용량대비 가격이 제일 싸다.&lt;/P&gt;
&lt;P&gt;ODD는 특성상 한번 저장후 재사용이 불가하지만 HDD 는 재사용(쓰고/지우고) 가 얼마든지 가능하다.&lt;/P&gt;
&lt;P&gt;장점은 53원 대 37원으로 조금 비싸긴 하지만 재사용의 편이성과 데이터관리가 무척 용이한점이 겠고&lt;/P&gt;
&lt;P&gt;최악의 단점은 충격에 무지무지 약해서 ㄷㄷㄷ 하면서 보관을 잘해야한다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile30.uf.tistory.com/image/207793284CA1A22157CF74&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/207662014CA1A22232754B&quot; width=&quot;486&quot; height=&quot;454&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;참고로 ODD 는 배속이나 여타 조건은 무시하고 그냥 용량대비 최저가로 골랐다.&lt;/P&gt;
&lt;P&gt;배속에 따라 가격이 다를수 있으니 참고자료로만 활용..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[결론]&lt;/P&gt;
&lt;P&gt;백업은 편하게 하드로 하고 보관을 잘하자.&lt;/P&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9940242&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/64&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/끄적끄적.&quot;&gt;끄적끄적.&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/82&quot; &gt;싸이월드 미니라이프 서비스 종료.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/07/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/70&quot; &gt;백업용 미디어 단가 비교해보니..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/64&quot; &gt;백업용 미디어 단가 비교해보니 차라리 HDD를 쓰자&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(1)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/7&quot; &gt;MS의 IE8 정식버전 출시...과연 쓸만할지...&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/20&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/4&quot; &gt;포터블 프로그램&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/09&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/3&quot; &gt;마구잡이식 설치프로그램에 관하여..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/03/09&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>끄적끄적.</category>
			<category>HDD</category>
			<category>단가</category>
			<category>미디어</category>
			<category>백업장치</category>
			<category>비교</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/64</guid>
			<comments>http://bulkdisk.tistory.com/64#entry64comment</comments>
			<pubDate>Tue, 28 Sep 2010 17:06:58 +0900</pubDate>
		</item>
		<item>
			<title>카카오톡이 주소록을 몽땅 가져가는걸 알고 사용중인지..</title>
			<link>http://bulkdisk.tistory.com/63</link>
			<description>&lt;P&gt;필자는 안드로이드폰을 사용중이다.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;그래서 아이폰버전 부터 출시된 카카오톡이 안드로이드 버전이 나왔다길래 한번 설치해 보았다.&lt;/P&gt;
&lt;P&gt;초기에 전화번호 입력하는창이 뜨고 별다른 가입절차도 필요없고 해서 아무생각없이 사용하고 있었다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile3.uf.tistory.com/image/181BBF1C4C9071848DBFA6&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/16266F194C9071851AE9A2&quot; height=&quot;484&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;주소록에 저장된 친구들이 카카오톡 유저라면 자동으로 등록되니 참 편하다 라는 생각만 했을 뿐이었다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;그러나 최근 카카오톡이 내전화번호 이외의 내 주소록에 있는 모든 전화번호를 수집한다는 사실을 알게 되었다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;내 주소록에 등록된 A 라는 사람은 카카오 사용자가 아니다.&amp;nbsp; 따라서 A는 카카오 친구리스트에 나오지 않는다.&lt;/P&gt;
&lt;P&gt;나중에 A는 사람이 카카오에 가입하고 유저가 되었다. 하지만 A는 사람의 주소록에는 내가 등록되어 있지 않다.&lt;/P&gt;
&lt;P&gt;그러나 잠시뒤, 내 카카오 친구리스트에 A가 버젓이 올라와 있다.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;나는 A는 사람의 주소록에 내가 삭제되어 있는줄도 모르고 반갑다고 메시지를 보낸다.&lt;/P&gt;
&lt;P&gt;A는 누구냐고 의아해한다.&lt;/P&gt;
&lt;P&gt;대충 이런 상황이다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;필자가 프로그램 제조업에 종사해서 그런지 단지 매칭로직이 궁금할 뿐이었다. &lt;/P&gt;
&lt;P&gt;새로운 유저 한명이 가입했다고 해서 전체 유저한테 일일이 검증시킬수도 없는 노릇이고..&amp;nbsp; &lt;/P&gt;
&lt;P&gt;그렇다면 카카오 서버의 DB풀을 가동해서 검색후 매칭정보를 다시 폰으로 쏴주는 방법이 의심스러웠다..&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;그래서 약관을 다시 살펴보았더니&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;STRONG&gt;&lt;FONT style=&quot;BACKGROUND-COLOR: #ff0000&quot;&gt;주소록에 등록된 제3자의 전화번호를 수집하며 수집된 번호를 이용할수 있는 권리를 카카오가 가진다&lt;/FONT&gt;&lt;/STRONG&gt;고 되어있다. OTL.&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile24.uf.tistory.com/image/177B73184C9071862875C1&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/2074A1194C90718752C920&quot; height=&quot;841&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;사용자 개인의 정보를 가져간다면 회원관리 측면에서 어쩔수 없는 당연한 정보수집이겠지만 &lt;/P&gt;
&lt;P&gt;주소록을 몽창 털어간다는건 조금 찝찝하지 않은가..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;혹자는 찝찝하면 쓰지마. 그럴수도 있겠다.&amp;nbsp; 하지만 초기에 잘 확인하지 못햇고, &lt;/P&gt;
&lt;P&gt;심지어 회사의 지인들에게 소개해줘서 사용하게하고 나중에 이사실을 알려주었더니 왜 그런거 소개해줬냐고 한다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;프로그램내부에선 환경설정 쪽에 계좌정보 삭제 가있는데 이걸로 모든 DB 가 제거되는게 맞는지 모르겠다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;프로그램 자체의 기능이야 아주 훌륭하지만 이런 내용을 다 알고 쓰는 사용자가 얼마나 있을것이며&lt;/P&gt;
&lt;P&gt;또 이런내용을 자세하게 안다면 그래도 계속 사용할 사용자가 얼마나 있을지 궁금하다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;아무리 뛰어난 보안을 가지고 있는 업체라고 해도 개인정보를 제3의 장소에 보관하는게 개운한 사람은 그리 많지 않을거 같다.&lt;/P&gt;
&lt;P&gt;그리고 보안사고가 나면 대부분이 내부소행이다. &lt;/P&gt;
&lt;P&gt;스위스은행에 돈맞기는것도 아니고 말이다.. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;아무튼 한줄 요약하면&lt;/P&gt;
&lt;P&gt;카카오톡은 내폰의 주소록을 몽창 가져간다!!&lt;/P&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9668365&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/63&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/일상&quot;&gt;일상&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/76&quot; &gt;10년&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/05/17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/68&quot; &gt;2010년 책상샷...&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/01/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/63&quot; &gt;카카오톡이 주소록을 몽땅 가져가는걸 알고 사용중인지..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(8)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/49&quot; &gt;청와대.. 위성지도 서비스가 불편하다&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/01/29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/48&quot; &gt;최근 책상샷...&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(2)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/01/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/46&quot; &gt;솥단지론..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/12/14&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>일상</category>
			<category>카카오톡</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/63</guid>
			<comments>http://bulkdisk.tistory.com/63#entry63comment</comments>
			<pubDate>Wed, 15 Sep 2010 16:11:03 +0900</pubDate>
		</item>
		<item>
			<title>Fairyland - look into lost years</title>
			<link>http://bulkdisk.tistory.com/62</link>
			<description>페어리랜드라는 에픽 메탈 밴드는 참 판타직한 음악을 하는 밴드다.&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
예전에 룬의 아이들이라는 소설을 볼때 접한 밴드인데 서로 상관없는 미디어긴하지만 소설을 보면서 페어리랜드의 음악을 들으면 참 오버랩 되는 기분이 들곤 했다.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;판타직한 분위기가 계속 유지되는 가운데 유독 튀는 잔잔한 멜로디가 사로잡는다.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Look into lost years.. &amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
다른곡들은 분위기가 대략 비슷해서 기억엔 안남아있지만 이곡은 계속 멜로디가 머리속에 남아있다.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;2006 - The Fall Of An Empire &amp;nbsp;앨범중&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
Ado shara imbesi derio&lt;/div&gt;
&lt;div&gt;
Are dosi pariso dal'Arel&lt;/div&gt;
&lt;div&gt;
Lio deren assa li mehena&lt;/div&gt;
&lt;div&gt;
Ore del Osyrhia&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
When life was sweet and feelings weren't lost&lt;/div&gt;
&lt;div&gt;
when all was clear like dawn on Dal'Arel&lt;/div&gt;
&lt;div&gt;
The thought of you forever in my heart&lt;/div&gt;
&lt;div&gt;
My sister of the light&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;object width=&quot;480&quot; height=&quot;385&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/G-PJ5MPhKec?fs=1&amp;amp;hl=ko_KR&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/G-PJ5MPhKec?fs=1&amp;amp;hl=ko_KR&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-62-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-62-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-62-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9604771&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/62&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/Music&quot;&gt;Music&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/62&quot; &gt;Fairyland - look into lost years&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/13&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/20&quot; &gt;Michael Jackson - Remember The Time&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/05/07&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>Music</category>
			<category>메탈</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/62</guid>
			<comments>http://bulkdisk.tistory.com/62#entry62comment</comments>
			<pubDate>Mon, 13 Sep 2010 16:44:30 +0900</pubDate>
		</item>
		<item>
			<title>해상도 비교용 월페이퍼</title>
			<link>http://bulkdisk.tistory.com/61</link>
			<description>예전에 사용하던 월페이퍼는 모니터가 1280 밖에 지원을 하지 않아서 1280x1024 짜리 그림을 배경으로 사용했지만&lt;div&gt;
지금 사용하는건 1600 x 1200 짜리라 새로 만들었다..&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;a href=&quot;http://en.wikipedia.org/wiki/File:Vector_Video_Standards2.svg&quot;&gt;http://en.wikipedia.org/wiki/File:Vector_Video_Standards2.svg&lt;/a&gt;&amp;nbsp;를 참고하여 만들고&lt;/div&gt;
&lt;div&gt;
아이폰4에 맞는 해상도를 추가하였다. &amp;nbsp;역시 아이폰 해상도 짱...&lt;/div&gt;
&lt;div&gt;배경화면으로 깔아두면 화면 디자인이라던지 크기 참고할때 사용하기 좋다.&lt;/div&gt;
&lt;div&gt;타일방식으로 세팅하는것이 좋다.&lt;/div&gt;
&lt;div&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile1.uf.tistory.com/original/16039B124C8516D8854E40&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/16039B124C8516D8854E40&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;wallpaper_bulker_1600.png&quot; height=&quot;512&quot; width=&quot;683&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-61-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-61-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-61-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9428545&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/61&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/파워컴퓨팅/컴퓨터활용&quot;&gt;컴퓨터활용&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/84&quot; &gt;윈도 비스타이상 관리자에서 C$, D$, ... 공유활성화 하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/11/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/69&quot; &gt;Bcd 저장소에 리얼모드 부팅 지정하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/03/03&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/61&quot; &gt;해상도 비교용 월페이퍼&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/07&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/51&quot; &gt;SBS 라디오 초간단 청취하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(2)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/03/13&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/42&quot; &gt;윈도우7 고스트 복구시..&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/08/10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/36&quot; &gt;Microsoft R6034 런타임 에러시 조치법&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/06/25&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>컴퓨터활용</category>
			<category>배경화면</category>
			<category>월페이퍼</category>
			<category>해상도</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/61</guid>
			<comments>http://bulkdisk.tistory.com/61#entry61comment</comments>
			<pubDate>Tue, 07 Sep 2010 01:29:43 +0900</pubDate>
		</item>
		<item>
			<title>안드로이드 어플 웹설치 및 관리 AppBrain.com</title>
			<link>http://bulkdisk.tistory.com/60</link>
			<description>&lt;p&gt;스마트폰의 장점이라면 누구나 알겠지만 다양한 어플을 사용해볼 수 있다는 것이다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;홍수처럼 넘쳐나는 스마트폰의 어플을 쉽게 설치하고 관리하고 정보를 검색해볼 수 있는 사이트가 있다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://www.appbrain.com&quot;&gt;www.appbrain.com&lt;/a&gt; 이라는 곳인데 안드로이드 폰 사용자라면 누구나 가지고 있을 구글 계정과 연동이 되니 가입 하는 것도 별 문제가 없다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/image/17676A174C7F2E712C277E&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/130327184C7F2E71285D9A&quot; width=&quot;559&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;메인화면 우측 상단의 SignIn 이나 Create account 를 클릭하면 구글계정과 연동화면으로 넘어가니 구글아이디와 암호를 입력하면 바로 사용 가능하다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;AppBrain을 사용하는 이유는 어플을 관리하는 것도 좋지만 무엇보다 어플을 검색해서 정보를 찾아보기 쉽기 때문..&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;이모든 기능을 이용하기 위해서는 폰에 두가지 어플을 설치해야한다.&lt;/p&gt;
  &lt;p&gt;하나는 AppBrain App Market 이라는 어플과 Fast Web Installer 라는 어플이다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;AppBrain App Market 은 폰과의 연동을 통해 어플목록을 싱크하거나 업데이트를 할수 있으며&lt;/p&gt;
  &lt;p&gt;Fast Web Installer 는 PC의 웹브라우저를 이용해 검색한 어플을 폰에 다이렉트로 설치할 수 있는 기능을 가지고 있다&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/image/1564F8164C7F2E7223DF01&quot;&gt;&lt;img src=&quot;http://cfile3.uf.tistory.com/image/1705A6164C7F2E720C762C&quot; width=&quot;293&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://cfile27.uf.tistory.com/image/126D59164C7F2E731D8DCD&quot;&gt;&lt;img src=&quot;http://cfile28.uf.tistory.com/image/1433D31B4C7F2E73119E31&quot; width=&quot;293&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;Fast Web Installer 는 설치 후 한번만 계정 동기화를 해두면 그 이후로는 사용할 일이 없다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile30.uf.tistory.com/image/132FE7194C7F2E74425069&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/203137194C7F2E745609EC&quot; width=&quot;293&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://cfile22.uf.tistory.com/image/2077D3184C7F2E7445DA5B&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/111857154C7F2E7553EC45&quot; width=&quot;293&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile30.uf.tistory.com/image/191CC3154C7F2E75509C7E&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/1766D71C4C7F2E7511BDD4&quot; width=&quot;293&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;이후 appbrain.com 에서 My Apps에 들어가보면 싱크된 정보가 나온다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile9.uf.tistory.com/image/1166E6164C7F2E76359BE4&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/1728EC214C7F2E7625446E&quot; width=&quot;644&quot; height=&quot;478&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;이제 가장 강력한 기능인 웹에서 직접 어플 설치 하는것을 보자.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;우선 맘에드는 프로그램을 웹에서 찾는다. &lt;/p&gt;
  &lt;p&gt;Appbrain.com 메인화면의 Hot Apps 에서 봐도 좋고 해당 어플의 페이지로 이동해보자.&lt;/p&gt;
  &lt;p&gt;폰과 싱크된 후라면 해당 어플페이지에서 설치할수 없는 어플일경우 빨간색으로 버전이 다르다고 표시된다.&lt;/p&gt;
  &lt;p&gt;아직 1.6을 쓰는 관계로 종종 설치할수 없다고 나온다 ㅠㅠ&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile27.uf.tistory.com/image/131CC7154C7F2E774CAB95&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/113583194C7F2E772F0162&quot; width=&quot;451&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;다른 프로그램을 찾아봤다.&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;h3&gt;Jewel Rotation … &lt;/h3&gt;  &lt;p&gt;&lt;a href=&quot;http://cfile10.uf.tistory.com/image/1366D2234C7F2E7814EE02&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/201AE0154C7F2E7842F04F&quot; width=&quot;451&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;일반 한국 마켓에선 검색도 안되는 게임…&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;화면의 Install 을 누른다.&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/image/1835CD194C7F2E793B6659&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/125415174C7F2E7A3BE9C7&quot; width=&quot;451&quot; height=&quot;484&quot; /&gt;&lt;/a&gt;&amp;nbsp; Install this app 클릭&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/image/1157EE174C7F2E7B37AA5F&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/204C07174C7F2E7B5B456E&quot; width=&quot;451&quot; height=&quot;484&quot; /&gt;&lt;/a&gt;&amp;nbsp; &lt;/p&gt;
  &lt;p&gt;화면상에 녹색으로 뭔가 메시지가 잠시 나타났다가 사라진다..&lt;/p&gt;
  &lt;p&gt;이때 폰을 보면 &lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/image/1151D51D4C7F2E7C0C9A69&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/114DB4174C7F2E7D421787&quot; width=&quot;293&quot; height=&quot;484&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;성공적으로 설치되었다고 나온다.. 폰은 전혀 만지지도 않았는데 말이다..&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;p&gt;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/image/177564184C7F2E7D32C0A0&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/205CB0174C7F2E7E17ABD6&quot; width=&quot;293&quot; height=&quot;484&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;
  &lt;p&gt;구동도 잘된다…&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;AppBrain 에서 검색하는 모든 프로그램이 다 이런식으로 설치가 가능하다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;얼마나 편한가… 신세계 아닌가….&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;안드로이드커맨더를 이용한 자기PC의 Apk 설치시는 ADB 인터페이스를 사용하기때문에 USB 연결을 해줘야하지만&lt;/p&gt;
  &lt;p&gt;AppBrain은 3G 든 WiFi 든 어플이 설치된다.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9324136&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/60&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/72&quot; &gt;갤럭시U(SHW-M130L) 시스템 기본어플 정리&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2011/04/29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/59&quot; &gt;윈도우에서 초간단 안드로이드 소스 받는법&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/31&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/58&quot; &gt;안드로이드 최강의 폰관리툴 - 안드로이드 커맨더&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(4)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/30&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/56&quot; &gt;안드로이드를 공유폴더로 이용하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/24&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<category>app</category>
			<category>안드로이드</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/60</guid>
			<comments>http://bulkdisk.tistory.com/60#entry60comment</comments>
			<pubDate>Thu, 02 Sep 2010 13:56:30 +0900</pubDate>
		</item>
		<item>
			<title>윈도우에서 초간단 안드로이드 소스 받는법</title>
			<link>http://bulkdisk.tistory.com/59</link>
			<description>&lt;P&gt;1. 포터블 msysgit 를 다운받는다.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp; &lt;A title=http://code.google.com/p/msysgit/downloads/detail?name=PortableGit-1.7.0.2-preview20100309.7z&amp;amp;can=2&amp;amp;q= href=&quot;http://code.google.com/p/msysgit/downloads/detail?name=PortableGit-1.7.0.2-preview20100309.7z&amp;amp;can=2&amp;amp;q=&quot;&gt;http://code.google.com/p/msysgit/downloads/detail?name=PortableGit-1.7.0.2-preview20100309.7z&amp;amp;can=2&amp;amp;q=&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;2. 다운받고자하는 안드로이드 소스의 저장소를 확인한다. &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href=&quot;http://android.git.kernel.org/&quot;&gt;http://android.git.kernel.org/&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;3. 체크아웃 받을 폴더를 만들어준다.. &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;e:\&amp;gt;md e:\src_and &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;4. 체크아웃 받는다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 명령창에서 1. 에서 받은 프로그램 폴더로 가서 git clone &amp;lt;2.에서 확인한저장소&amp;gt;&amp;nbsp; &amp;lt;3.에서 만든폴더&amp;gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;E:\Win-Dev\git&amp;gt;git clone &lt;A href=&quot;http://android.git.kernel.org/platform/frameworks/base.git/&quot;&gt;http://android.git.kernel.org/platform/frameworks/base.git/&lt;/A&gt; e:/src_and &lt;br /&gt;
Initialized empty Git repository in e:/src_and/.git/ &lt;br /&gt;
remote: Counting objects: 172718, done. &lt;br /&gt;
remote: Compressing objects: 100% (57583/57583), done. &lt;br /&gt;
remote: Total 172718 (delta 101411), reused 171115 (delta 100088) &lt;br /&gt;
Receiving objects: 100% (172718/172718), 166.80 MiB | 466 KiB/s, done. &lt;br /&gt;
Resolving deltas: 100% (101411/101411), done. &lt;br /&gt;
Checking out files: 100% (10053/10053), done.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9256185&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/59&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/59&quot; &gt;윈도우에서 초간단 안드로이드 소스 받는법&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/31&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/58&quot; &gt;안드로이드 최강의 폰관리툴 - 안드로이드 커맨더&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(4)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/30&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/56&quot; &gt;안드로이드를 공유폴더로 이용하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/24&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/55&quot; &gt;안드로이드 apk 파일 정보보기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<category>소스</category>
			<category>안드로이드</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/59</guid>
			<comments>http://bulkdisk.tistory.com/59#entry59comment</comments>
			<pubDate>Tue, 31 Aug 2010 10:23:37 +0900</pubDate>
		</item>
		<item>
			<title>안드로이드 최강의 폰관리툴 - 안드로이드 커맨더</title>
			<link>http://bulkdisk.tistory.com/58</link>
			<description>&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile23.uf.tistory.com/image/13152F2E4C7B98D772FD0E&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/182BC0304C7B98D75D820B&quot; width=&quot;664&quot; height=&quot;501&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;안드로이드폰(이하 폰)을 사용하다 보면 PC를 통한 싱크는 기본이다.&lt;/P&gt;
&lt;P&gt;미디어파일을 전송하려면&amp;nbsp; PC를 이용하고,&lt;/P&gt;
&lt;P&gt;폰에 저장된 어플을 컴퓨터에 백업도 해야하고.&lt;/P&gt;
&lt;P&gt;가끔 인터넷에서 다운받은 apk 를 폰에 복사하여 설치도 해야하고…&lt;/P&gt;
&lt;P&gt;뭐 여러 용도로 폰과 싱크를 한다..&lt;/P&gt;
&lt;P&gt;크게 보면 그냥 usb연결하여 이동식 저장소로 마운트(인식) 시켜 놓고 데이터를 주고 받는 방법이 있다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;지금 살펴볼 안드로이드 커맨더(이하 안커)는 위에서 제시한 여러 작업들을 보다 편하게 해주는 일을 한다.&lt;/P&gt;
&lt;P&gt;PC에서 직접 폰으로 프로그램을 설치 ,&lt;/P&gt;
&lt;P&gt;PC에서 직접 폰에 설치된 프로그램을 조회하고 바로 언인스톨(제거) ,&lt;/P&gt;
&lt;P&gt;PC에서 직접 폰안에 있는 파일 (sdcard 및 시스템) 을 가져오기,&lt;/P&gt;
&lt;P&gt;폰과는 상관 없지만 PC안의 apk 파일에 대한 정보를 직접열람 하기 등 매우 편한 기능들이 많다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;우선 안커를 사용하기 위해서는 &lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;-루팅 :&amp;nbsp; 하지 않아도 되지만 고급 기능을 다 사용하기 위해서는 필요하다.&lt;/P&gt;
&lt;P&gt;-폰 설정 –&amp;gt; 응용프로그램 –&amp;gt; 개발 –&amp;gt; USB디버깅 이 활성화 되어 있어야한다.&lt;/P&gt;
&lt;P&gt;- 안드로이드 SDK : &lt;A href=&quot;http://developer.android.com/sdk/index.html&quot;&gt;http://developer.android.com/sdk/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- 폰에 맞는 ADB USB 드라이버 :&amp;nbsp; 폰 업그레이드나 패치를 한번이라도 하였다면 맞는 드라이버다.&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile25.uf.tistory.com/image/124D442E4C7B98D823FCD7&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/1542EA104C7B98D826CBE5&quot; width=&quot;412&quot; height=&quot;199&quot; /&gt;&lt;/A&gt; 드라이버 설치되면 이렇게 보인다.&lt;/P&gt;
&lt;P&gt;-안드로이드 SDK 내의 /tool&amp;nbsp; 폴더가 PATH 가 걸려있거나 안커를 안드로이드SDK/Tool 폴더에서 실행.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;원래는&amp;nbsp; 안드로이드 SDK 받아 설치하여야 하지만 필자가 첨부한 파일을 이용해도 구동은 가능하다.(&lt;STRONG&gt;단 알려지지 않은 문제가 발생할수 있으니 안드로이드SDK 를 설치하는 것을 추천한다.&lt;/STRONG&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;다운로드&amp;nbsp;&amp;nbsp; :&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://bulkdisk.tistory.com/attachment/cfile22.uf@183D081D4C7B99BE1171B7.zip&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/zip.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; adb_core.zip&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/P&gt;
&lt;P&gt;안드로이드 커맨더의 공식 웹사이트는 &lt;A href=&quot;http://androidcommander.com/&quot;&gt;http://androidcommander.com/&lt;/A&gt; 이고 현재 최신버전은 v0.7.9.7 이다.&lt;/P&gt;
&lt;P&gt;직접다운로드 : &lt;A title=http://androidcommander.com/?file_id=1 href=&quot;http://androidcommander.com/?file_id=1&quot;&gt;http://androidcommander.com/?file_id=1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;필자가 첨부한 파일과 직접다운받은 AndroidCommander.exe 를 같은 폴더에 놓고 실행하면 되겠다.&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;&lt;STRONG&gt;파일탐색:&lt;/STRONG&gt; &lt;br /&gt;
- 폰과 PC 간의 파일 및 폴더 복사 &lt;br /&gt;
- 폰내부에서 폰내부 다른 폴더로 파일 및 폴더 복사 &lt;br /&gt;
- 폰내부의 파일 삭제 &lt;br /&gt;
- 폴더 만들기/ 이름 변경하기 &lt;br /&gt;
- 폰내부 용량 파악하기 &lt;br /&gt;
&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;어플 관리:&lt;/STRONG&gt; &lt;br /&gt;
- 윈도우 통합(쉘메뉴) &lt;br /&gt;
- 어플 백업 &lt;br /&gt;
- 멀티플/싱글 어플 설치 &lt;br /&gt;
- 개인용도로 설치하기 ( 이기능은 아직 테스트해보지 않았다) &lt;br /&gt;
- 어플 업데이트 &lt;br /&gt;
- 멀티플/싱글 어플 제거 &lt;br /&gt;
- 어플 제거시 어플데이터 남기기&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;명령창:&lt;/STRONG&gt; &lt;br /&gt;
- 쉘커맨드 입력 &lt;br /&gt;
- 쉘스크립트 실행&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;기타등등…&lt;/STRONG&gt; &lt;br /&gt;
- 스크린샷 (beta) &lt;br /&gt;
- …&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[실행하기]&lt;/P&gt;
&lt;P&gt;파일들을 풀어놓고 실행한다.&lt;/P&gt;
&lt;P&gt;혹시 폰이 연결되어 있지 않다면&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile29.uf.tistory.com/image/166969314C7B98D9C080A8&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/162DBF304C7B98D91A5049&quot; width=&quot;244&quot; height=&quot;95&quot; /&gt;&lt;/A&gt;&amp;nbsp; 와 같은 창이 뜬다.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;폰을 연결하지 않았다면 연결하고 Refresh 를 누르면 된다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;정상적으로 실행하면 아래와 같은 창을 볼수 있다.&lt;/P&gt;
&lt;P&gt;좌/ 우 의 두개의 패널이 있고 패널별로 기능 버튼들이 있다.&lt;/P&gt;
&lt;P&gt;하단에는 커맨더 모드와 console 모드를 이동할수 있는 버튼과 용량확인을 할수 있는 버튼이 있다.&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile29.uf.tistory.com/image/1825F1344C7B98D91A3D64&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/124EF62E4C7B98D9216AD0&quot; width=&quot;644&quot; height=&quot;480&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;화면 하단의 내용을 보면 &lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile6.uf.tistory.com/image/1474AD334C7B98DA27B514&quot;&gt;&lt;img src=&quot;http://cfile26.uf.tistory.com/image/176CC52F4C7B98DA034B5A&quot; width=&quot;472&quot; height=&quot;29&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;연결된 폰이 루팅중임을 알수 있고 데이터 용량은 123M SD 는 2.6G 가 남아있는걸 알수 있다. &lt;/P&gt;
&lt;P&gt;App2sd 를 이용해 확장파티션을 생성했다면 그 정보도 볼수 있는데 필자는 만들지 않았다.&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile8.uf.tistory.com/image/192A99284C7B98DACFCBBA&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/11343C314C7B98DA25686A&quot; width=&quot;244&quot; height=&quot;148&quot; /&gt;&lt;/A&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile3.uf.tistory.com/image/1767EE334C7B98DB403C38&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/146FE6264C7B98DBB1E4E9&quot; width=&quot;244&quot; height=&quot;148&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;화면 상단의 탭을 보면&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile29.uf.tistory.com/image/207E4E054C7B98DB0DB19E&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/1550302F4C7B98DB4A9CDB&quot; width=&quot;670&quot; height=&quot;60&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;좌측은 윈도우, 우측은 폰이 선택되어있다.&amp;nbsp;&amp;nbsp; PC &amp;lt;-&amp;gt; Phone 모드&lt;/P&gt;
&lt;P&gt;여기에서 PC와 폰간의 데이터 주고 받기가 버튼을 보면 알겠지만 새폴더, 프로그램 인스톨러, 삭제등을 할수있다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile30.uf.tistory.com/image/177494304C7B98DB9975D2&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/163ABC264C7B98DC0B8770&quot; width=&quot;678&quot; height=&quot;93&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Phone &amp;lt;-&amp;gt; Phone 모드 에서는 폰에서&amp;nbsp; 폰으로 이동/ 복사 가 가능하다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile26.uf.tistory.com/image/200F5A0F4C7B98DC01F044&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/121907124C7B98DC18BFF2&quot; width=&quot;672&quot; height=&quot;89&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;어플리케이션 매니저 모드&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;[시스템 통합 및 인스톨러/ 파일정보 보기]&lt;/P&gt;
&lt;P&gt;Program –&amp;gt; Settings 에 들어가서 Associate apk files with program 을 클릭하면 탐색기 메뉴에 통합된다.&lt;/P&gt;
&lt;P&gt;윈도비스타 이상 사용자라면 관리자 권한으로 안커를 실행해야지만 정상적으로 등록된다.&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile9.uf.tistory.com/image/150BA6374C7B98DC56A387&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/1175FC054C7B98DC0D19F5&quot; width=&quot;301&quot; height=&quot;423&quot; /&gt;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;등록이 완료되면 폴더에서 우클릭시와 apk 파일에서 우클릭시 다음과 같은 메뉴가 추가된것을 볼수 있다.&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile1.uf.tistory.com/image/177BD7034C7B98DD0B9304&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/1756362F4C7B98DD27AECD&quot; width=&quot;244&quot; height=&quot;200&quot; /&gt;&lt;/A&gt;&amp;nbsp;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile10.uf.tistory.com/image/155778324C7B98DD188856&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/1716920D4C7B98DD416422&quot; width=&quot;404&quot; height=&quot;155&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;폴더에서 클릭하였을 경우 해당 폴더에 있는 모든apk 파일의 정보를 로딩해서 보여준다.&lt;/P&gt;
&lt;P&gt;아이콘과 프로그램명칭, 버전까지 나오니 탐색기에서 보는것에 비해 훨씬 정보 보기가 좋다.&lt;/P&gt;
&lt;P&gt;메인화면에서 [Installer] 를 눌렀을때도 이화면이 나온다. &lt;/P&gt;
&lt;P&gt;여기에서 설치나 삭제 같은 작업.. 그리고 이름 변경을 할수 있는데 이름변경하는것이 참 재미있다.&lt;/P&gt;
&lt;P&gt;&amp;lt;프로그램이름_버전.apk&amp;gt;의 형식으로 한방에 바꿔준다.&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile23.uf.tistory.com/image/140F2B2E4C7B98DDB772D4&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/1551D92E4C7B98DE1ECB61&quot; width=&quot;449&quot; height=&quot;509&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;반면 파일에서 정보보기를 하면 아래와 같이&amp;nbsp; 프로그램 아이콘, 이름 , 버전을 확인할수 있다.&lt;/P&gt;
&lt;P&gt;Androlib, Cryket 의 링크를 이용해 해당 어플 사용자의 댓글이나 가격 , 스샷을 바로 확인가능하다&lt;/P&gt;
&lt;P&gt;또한 퍼미션도 볼수 있다.&amp;nbsp; 한가지 아쉬운것은 최소 SDK 버전이 안나온다는 것정도,, aapt.exe 로는 확인가능한데 제작자가 그것까지는 생각하지 못한듯 하다. 한번 요청해봐야겠다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile23.uf.tistory.com/image/1540F8324C7B98DE38185D&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/196862314C7B98DE0B229B&quot; width=&quot;406&quot; height=&quot;435&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[파일 복사하기]&lt;/P&gt;
&lt;P&gt;노턴 커맨더나 토탈 커맨더와 같은 류의 프로그램을 써본 사람을 알겠지만 좌측과 우측 창에서 포커스가 어디에 있느냐에 따라 &lt;br /&gt;
소스/ 타겟이 결정된다. 우측에서 파일을 선택하여 우측위 툴바를 이용하면 죄측으로 복사된다는 뜻이다.&lt;/P&gt;
&lt;P&gt;복사하고자 하는 파일을 체크한후 [Copy]버튼을 누르면 반대쪽 패널로 파일이 복사된다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[콘솔창]&lt;/P&gt;
&lt;P&gt;&lt;A href=&quot;http://bulkdisk.tistory.com/script/powerEditor/pages/http://cfile8.uf.tistory.com/image/142620254C7B98DE57537B&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/194D23324C7B98DF36F094&quot; width=&quot;761&quot; height=&quot;682&quot; /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;이건 현재로선 그닥&amp;nbsp; 쓸일이 없다.. &lt;/P&gt;
&lt;P&gt;개별로 퍼미션 확인하는정도… &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;[제일큰장점]&lt;/P&gt;
&lt;P&gt;- USB연결후 폰에서 디스크 마운트가 필요없다.&lt;/P&gt;
&lt;P&gt;- 어플설치를 다이렉트로 한다.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[단점]&lt;/P&gt;
&lt;P&gt;-UTF8 인코딩을 지원하지 않는다.&amp;nbsp; : 한글로 된 어플일경우 글자가 깨져서 보이고 백업, 배치인스톨등 작업시 해당 파일을 인식하지 못한다. &lt;br /&gt;
필자가 안드로이드 커맨더 제작자에게 이내용을 알려주었는데 &lt;br /&gt;
제작자는 현재 코드 컨버전에 사용할 프리 라이브러리를 못찾았다 한다. &lt;br /&gt;
쓸만한 라이브러리라고 생각되는것을 찾아 제작자에게 보내주었고 &lt;br /&gt;
테스트 해보겠다곤 하였으나 현재까지는 업데이트는 없다. 확인해봤는지 모르겠다. &lt;br /&gt;
조만간 해결되지 않을까 생각해본다.&lt;/P&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9243844&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/58&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/59&quot; &gt;윈도우에서 초간단 안드로이드 소스 받는법&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/31&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/58&quot; &gt;안드로이드 최강의 폰관리툴 - 안드로이드 커맨더&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(4)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/30&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/56&quot; &gt;안드로이드를 공유폴더로 이용하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/24&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/55&quot; &gt;안드로이드 apk 파일 정보보기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<category>apk</category>
			<category>안드로이드</category>
			<category>커맨더</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/58</guid>
			<comments>http://bulkdisk.tistory.com/58#entry58comment</comments>
			<pubDate>Mon, 30 Aug 2010 20:41:19 +0900</pubDate>
		</item>
		<item>
			<title>SVN 업데이트를 편하게 하자.</title>
			<link>http://bulkdisk.tistory.com/57</link>
			<description>&lt;p&gt;SVN을 사용하다 보면 commit 은 가뭄에 콩나듯 하고 update 는 수시로 하게 된다.&lt;/p&gt;
  &lt;p&gt;실제 작업자 라던지 commit을 할 사용자는 전체 사용자중에 일부일 뿐이고 대다수의 사용자는 주로 update를 하여 최신버전을 이용하거나 테스트할 환경을 만든다.&lt;/p&gt;
  &lt;p&gt;필자의 경우 게임 클라이언트의 사내 배포를 위하여 svn 을 이용하는데 테스트용 PC마다 svn 을 세팅하기가 여간 귀찮은 것이 아니다.&lt;/p&gt;
  &lt;p&gt;물론 초기에 테스트PC마다 svn 세팅을 해놓으면 그이후로는 update 를 해주면 되겠지만 처음에 세팅을 해줘야한다는것 자체가 귀차니즘을 발동시킨다.&lt;/p&gt;
  &lt;p&gt;간단하게 실행시킬 방법으로 1. 복사 2. 실행 만 가지고 세팅이 끝나는걸 원하다 보니 많은 svn 클라이언트중 커맨드라인 클라이언트인 svn.exe 를 다이렉트로 복사해서 쓰기로 했다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;svn.exe 는 커맨드라인 유틸리티로 파라메터에 따라 각각의 동작을 수행하게 되어있다.&lt;/p&gt;
  &lt;p&gt;그리고 svn.exe 만 가지고는 실행이 안되고..&lt;/p&gt;
  &lt;p&gt;\libapr-1.dll    &lt;br /&gt;
\libaprutil-1.dll     &lt;br /&gt;
\libeay32.dll     &lt;br /&gt;
\libsvn_client-1.dll     &lt;br /&gt;
\libsvn_delta-1.dll     &lt;br /&gt;
\libsvn_diff-1.dll     &lt;br /&gt;
\libsvn_fs-1.dll     &lt;br /&gt;
\libsvn_ra-1.dll     &lt;br /&gt;
\libsvn_repos-1.dll     &lt;br /&gt;
\libsvn_subr-1.dll     &lt;br /&gt;
\libsvn_wc-1.dll     &lt;br /&gt;
\ssleay32.dll     &lt;br /&gt;
\svn.exe&lt;/p&gt;
  &lt;p&gt;가 모두 같이 있어야한다.&lt;/p&gt;
  &lt;p&gt;exe로 dll 을 패킹하는 방법은 많지만 우선 편하게 thinapp 를 이용하여 svn_up.exe 로 패킹을 하고&lt;/p&gt;
  &lt;p&gt;같은 폴더에&lt;/p&gt;
  &lt;p&gt;update.bat 를 만들어 아래의 내용을 저장했다.&lt;/p&gt;
  &lt;blockquote&gt;   &lt;p&gt;@echo made by bulker&amp;nbsp; 오후 4:32 2010-08-20      &lt;br /&gt;
svn_up up       &lt;br /&gt;
pause&lt;/p&gt;
 &lt;/blockquote&gt;  &lt;p&gt;그러면 남은 건 svn_up.exe 와 svnup.bat 를 배포할 클라이언트와 함께 대상 PC에 복사한후 필요에 따라 update.bat 만 실행해주면 자동으로 업데이트가 마쳐진다.&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile21.uf.tistory.com/image/17217B174C75FBC35DA2AB&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/185CAF194C75FBC37F1A47&quot; width=&quot;536&quot; height=&quot;499&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;아 물론 최초 복사시 checkout 받아둔 PC에서 .svn 이라고 숨겨진 폴더까지 통채로 복사해야만 다른PC에서 checkout 하는 과정을 생략할수 있다.&lt;/p&gt;
&lt;p&gt;- svn.exe 는&amp;nbsp;http://subversion.tigris.org/ 에서 받을수 있으니 서버 버전에 따라 필요한것으로 받아서 이용하면 된다.&lt;/p&gt;
&lt;p&gt;- 단일파일 패킹하기가 귀찮으면 위에 적혀있는 해당파일을 몽창 같이 복사해주면 된다.&lt;/p&gt;
&lt;p&gt;- 첨부한 파일은 svn 1.6.x 용이다.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://bulkdisk.tistory.com/attachment/cfile22.uf@15507C194C75FCB57C1AB9.exe&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/exe.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; Svn_up.exe&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://bulkdisk.tistory.com/attachment/cfile1.uf@155C4A194C75FCD44AA395.bat&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/110706133414/blog/image/extension/unknown.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; update.bat&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9146129&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/57&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/파워컴퓨팅&quot;&gt;파워컴퓨팅&lt;/a&gt;&amp;nbsp;&gt;&amp;nbsp;&lt;a href=&quot;/category/파워컴퓨팅/유틸리티%20활용&quot;&gt;유틸리티 활용&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/65&quot; &gt;가상화로 만든 VB6 Runtime Shell&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/57&quot; &gt;SVN 업데이트를 편하게 하자.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/53&quot; &gt;토탈 커맨더와 거북이 SVN의 조합.&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(2)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/05/18&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/29&quot; &gt;토탈커맨더를 포터블로 사용해보자&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(7)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/06/11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/23&quot; &gt;자신의 USB 컨트롤러를 확인하기 위한 툴&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/05/12&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/21&quot; &gt;무료 DNS 서비스.. DNSEVER&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2009/05/08&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>유틸리티 활용</category>
			<category>svn</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/57</guid>
			<comments>http://bulkdisk.tistory.com/57#entry57comment</comments>
			<pubDate>Thu, 26 Aug 2010 14:29:39 +0900</pubDate>
		</item>
		<item>
			<title>안드로이드를 공유폴더로 이용하기</title>
			<link>http://bulkdisk.tistory.com/56</link>
			<description>&lt;p&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/image/177894314C73537A01DE78&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/143A81024C73537C61CA1C&quot; height=&quot;562&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;안드로이드 폰을 사용하다 보면 여러 가지 방법으로 폰과의 데이터를 주고 받는다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;대략 몇 가지 방법을 보자면 다음과 같다.    &lt;br /&gt;
&lt;/p&gt;
  &lt;p&gt;- USB 케이블을 통한 대용량 저장소 이용&lt;/p&gt;
  &lt;p&gt;- sd 카드를 뽑아서 sd 리더기를 이용&lt;/p&gt;
  &lt;p&gt;- 폰에 FTP 서버를 구동시키고 PC에서 FTP 프로그램을 이용&lt;/p&gt;
  &lt;p&gt;- PC에 FTP 서버를 구동시키고 폰에서 FTP 클라이언트를 이용&lt;/p&gt;
  &lt;p&gt;- 폰에 SMB(공유폴더) 클라이언트를 구동시켜 PC의 공유폴더를 이용&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;여러 가지 방법 중 FTP 관련이나 폰을 SMB 서버로 이용하는 것은 알려진 정보가&amp;nbsp; 적은 편이다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;일단 폰에서 SMB 서버를 돌릴 경우 장점이라면 &lt;/p&gt;
  &lt;p&gt;폰의 데이터를 보기 위해서 전송이라는 별도의 과정을 생략해도 된다는 뜻이다.&lt;/p&gt;
  &lt;p&gt;가령 폰에 mp3나 영화가 있다고 하면 PC에서 이를 재생하기 위해서는 무슨 방법을 쓰던 PC로 저장해야 한다.&lt;/p&gt;
  &lt;p&gt;하지만 공유폴더 기능을 이용하면 PC에 별도로 저장하지 않고 바로 접근해서 사용할 수가&amp;nbsp; 있다.&lt;/p&gt;
  &lt;p&gt;요즘 많이 서비스하는 n드라이브나 세컨드라이브와 같이 내 폰을 &lt;strong&gt;탐색기에서 바로 이용가능 &lt;/strong&gt;하다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;우선 폰에서 smb 서버를 구동하기 위해서는 서버프로그램이 필요하다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://forum.xda-developers.com/showthread.php?t=653336&quot;&gt;http://forum.xda-developers.com/showthread.php?t=653336&lt;/a&gt; 에서 JimmyChingala 의 프로그램을 이용하면 된다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;h3&gt;&lt;u&gt;[주의]&lt;/u&gt;&lt;/h3&gt;  &lt;p&gt;&lt;u&gt;폰의 내부 시스템에 직접 서버 데몬을 구동시키는 것이기 때문에 ROOT 권한이 반드시 필요하다.&lt;/u&gt;&lt;/p&gt;
  &lt;p&gt;&lt;u&gt;이 글을 보고 이해가 잘 가지 않는 다면 적용하지 않는 것이 좋다.&lt;/u&gt;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;h3&gt;[파일복사]&lt;/h3&gt;  &lt;p&gt;파일 및 폴더는 아래와 같이 구성한다. &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;table border=&quot;2&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; width=&quot;681&quot;&gt;
&lt;tbody&gt;     &lt;tr&gt;
       &lt;td valign=&quot;top&quot; width=&quot;35&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;1&lt;/font&gt;&lt;/td&gt;
        &lt;td valign=&quot;top&quot; width=&quot;644&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;우선 해당파일의 압축을 풀어 폰에 복사를 한다. &lt;/font&gt;          &lt;ul&gt;
           &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;원래는 폰에다가 sambaAndroid-0.3b.tar 를 복사해놓고 폰에서 풀라고 써있긴 하지만 필자의 폰에는 tar 프로그램이 안깔려 있어 그냥 풀어다가 넣었다 &lt;/font&gt;&lt;/li&gt;
         &lt;/ul&gt;
          &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;-----------------------------------------------------------------------&lt;/font&gt;&lt;/p&gt;
       &lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr&gt;
       &lt;td valign=&quot;top&quot; width=&quot;35&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;2&lt;/font&gt;&lt;/td&gt;
        &lt;td valign=&quot;top&quot; width=&quot;644&quot;&gt;         &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;폰에다 복사할 파일, 폴더 &lt;/font&gt;            &lt;ul&gt;
             &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;/data/local/samba &lt;/font&gt;&lt;/li&gt;
              &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;/data/local/samba/bin &lt;/font&gt;                &lt;ul&gt;
                 &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;파일 &lt;/font&gt;                    &lt;ul&gt;
                     &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;dhcp-samba-script &lt;/font&gt;&lt;/li&gt;
                      &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;killsamba &lt;/font&gt;&lt;/li&gt;
                      &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;nmbd &lt;/font&gt;&lt;/li&gt;
                      &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;samba-rc &lt;/font&gt;&lt;/li&gt;
                      &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;smbd &lt;/font&gt;&lt;/li&gt;
                      &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;smbpasswd &lt;/font&gt;&lt;/li&gt;
                   &lt;/ul&gt;
                 &lt;/li&gt;
               &lt;/ul&gt;
             &lt;/li&gt;
              &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;/data/local/samba/lib &lt;/font&gt;                &lt;ul&gt;
                 &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;파일 &lt;/font&gt;                    &lt;ul&gt;
                     &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;smb.conf &lt;/font&gt;&lt;/li&gt;
                   &lt;/ul&gt;
                 &lt;/li&gt;
               &lt;/ul&gt;
             &lt;/li&gt;
              &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;/data/local/samba/lib/codepages &lt;/font&gt;                &lt;ul&gt;
                 &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;파일 &lt;/font&gt;                    &lt;ul&gt;
                     &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;codepage.437 … (포함 37개) &lt;/font&gt;&lt;/li&gt;
                   &lt;/ul&gt;
                 &lt;/li&gt;
               &lt;/ul&gt;
             &lt;/li&gt;
              &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;/data/local/samba/private &lt;/font&gt;                &lt;ul&gt;
                 &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;파일 &lt;/font&gt;                    &lt;ul&gt;
                     &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;smbpasswd &lt;/font&gt;&lt;/li&gt;
                   &lt;/ul&gt;
                 &lt;/li&gt;
               &lt;/ul&gt;
             &lt;/li&gt;
              &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;/data/local/samba/var &lt;/font&gt;                &lt;ul&gt;
                 &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;파일 &lt;/font&gt;                    &lt;ul&gt;
                     &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;log.nmbd (나중에 생김. 로그) &lt;/font&gt;&lt;/li&gt;
                      &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;log.smbd (나중에 생김. 로그) &lt;/font&gt;&lt;/li&gt;
                   &lt;/ul&gt;
                 &lt;/li&gt;
               &lt;/ul&gt;
             &lt;/li&gt;
              &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;/data/local/samba/var/locks &lt;/font&gt;&lt;/li&gt;
              &lt;li&gt;&lt;font color=&quot;#000000&quot;&gt;/data/local/samba/var/tmp &lt;/font&gt;&lt;/li&gt;
           &lt;/ul&gt;
            &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;---------------------------------------------------------------------- &lt;/font&gt;&lt;/p&gt;
         &lt;/li&gt;
       &lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr&gt;
       &lt;td valign=&quot;top&quot; width=&quot;35&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;3&lt;/font&gt;&lt;/td&gt;
        &lt;td valign=&quot;top&quot; width=&quot;644&quot;&gt;         &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;파일 및 폴더의 퍼미션 &lt;/font&gt;&lt;/p&gt;
          &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;drwxrwxr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2010-08-24 09:39 lib              &lt;br /&gt;
drwxrwxr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2010-08-24 11:04 var               &lt;br /&gt;
drwxrwxr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2010-08-24 10:17 private               &lt;br /&gt;
drwxrwxr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2010-08-24 09:36 bin               &lt;br /&gt;
              &lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
          &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;./lib:              &lt;br /&gt;
drwxrwxr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2010-08-24 09:36 codepages               &lt;br /&gt;
-rw-r--r-- root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 578 2010-08-24 09:39 smb.conf               &lt;br /&gt;
              &lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
          &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;./lib/codepages:              &lt;br /&gt;
-rw-rw-rw- root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 131614 2010-05-29 12:26 unicode_map.1251               &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; …               &lt;br /&gt;
-rw-rw-rw- root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 131614 2010-05-29 12:26 unicode_map.KOI8-U               &lt;br /&gt;
              &lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
          &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;./var:              &lt;br /&gt;
-rw-r--r-- root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4302 2010-08-24 11:02 log.nmbd               &lt;br /&gt;
drwxr-xr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2010-08-24 11:50 locks               &lt;br /&gt;
drwxrwxrwx root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2010-08-24 11:04 tmp               &lt;br /&gt;
-rw-r--r-- root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5007 2010-08-24 11:29 log.smbd               &lt;br /&gt;
              &lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
          &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;./private:              &lt;br /&gt;
-rw------- root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 102 2010-08-24 11:00 smbpasswd               &lt;br /&gt;
-rw------- root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8192 2010-08-24 11:29 secrets.tdb               &lt;br /&gt;
              &lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
          &lt;p&gt;&lt;font color=&quot;#000000&quot;&gt;./bin:              &lt;br /&gt;
-rwxr-xr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 687 2010-06-20 14:30 dhcp-samba-script               &lt;br /&gt;
-rwxr-xr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 457952 2010-05-29 12:26 killsamba               &lt;br /&gt;
-rwxr-xr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1251280 2010-05-29 12:26 nmbd               &lt;br /&gt;
-rwxr-xr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 727 2010-05-31 09:29 samba-rc               &lt;br /&gt;
-rwxr-xr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2185252 2010-05-29 12:26 smbd               &lt;br /&gt;
-rwxr-xr-x root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1463988 2010-05-29 12:26 smbpasswd&lt;/font&gt;&lt;/p&gt;
       &lt;/td&gt;
     &lt;/tr&gt;
      &lt;tr&gt;
       &lt;td valign=&quot;top&quot; width=&quot;35&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;/font&gt;&lt;/td&gt;
        &lt;td valign=&quot;top&quot; width=&quot;644&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;/font&gt;&lt;/td&gt;
     &lt;/tr&gt;
   &lt;/tbody&gt;&lt;/table&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;2번 항목 이외에 퍼미션에서 보이는 항목들은 자동으로 생성되는 항목이다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;h3&gt;[환경설정]&lt;/h3&gt;  &lt;ul&gt;
   &lt;li&gt;무선랜카드 명칭 :&amp;nbsp; lib 폴더안의 smb.conf 파일을 열어보면&amp;nbsp;&amp;nbsp; interfaces&amp;nbsp; =&amp;nbsp;&amp;nbsp; 라는 부분이 있는데 이것을 자신의 무선랜카드 장치명으로 변경한다.. 필자의 안드로원 같은경우는 wlan0 으로 되어있다.      &lt;br /&gt;
잘 모를 경우 ddms 연결하고 부팅하거나 무선랜 온/오프 하다 보면 화면하단의 로그에 wlan0 처럼 유사한 문자열이 뜬다.       &lt;br /&gt;
&lt;/li&gt;
    &lt;li&gt;패스워드 : 아이디와 패스워드의 기본값은 bogan / bogan1 이다.      &lt;br /&gt;
패스워드 파일은 /private 폴더안의 smbpasswd 이고 패스워드 변경은 쉘에서 bin 폴더의 smbpasswd 를 실행시켜서 바꿀수 있다. 새로운 아이디는 private/smbpasswd 파일을 수정해서 등록 할 수 있다.       &lt;br /&gt;
&lt;/li&gt;
    &lt;li&gt;무선랜이 온/오프되거나 할때 자동으로 서비스를 구동시키기 위해서는      &lt;br /&gt;
dhcp-samba-script 파일을 96-restart-samba 로 이름을 변경하여 /system/etc/dhcpcd/dhcpcd-hooks/ 폴더에 복사하면 된다.       &lt;br /&gt;
&lt;/li&gt;
    &lt;li&gt;samba-rc 파일의 내용을 보면 start, stop, restart ,cleanup, fixperms 의 명령어가 준비되어있는걸 알 수 있다.      &lt;br /&gt;
      &lt;br /&gt;
&lt;/li&gt;
 &lt;/ul&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;h3&gt;[구동]&lt;/h3&gt;  &lt;p&gt;bin 폴더에서 ./samba-rc start 로 구동을 시킨다. &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;h3&gt;[특이사항]&lt;/h3&gt;  &lt;ul&gt;
   &lt;li&gt;작동이 원할하지 않을 때는&amp;nbsp; log.nmbd 나 log.smbd 를 열어본다.. 작동이 안되는 이유를 얻을 수 있다. &lt;/li&gt;
    &lt;li&gt;필자의 경엔 초기에 var/tmp 폴더가 생성되지 않아 로그인이 안되는 경우가 있었다. 로그를 확인후 해당 폴더를 만들어주니 잘돌아갔다. &lt;/li&gt;
    &lt;li&gt;폰에 따라 기본 명령어가 없을 수도 있다.&amp;nbsp; 필자의 폰에는 samba-rc stop 실행시 필요한 pkill 이라는 명령어가 없어서 리스타트하는데 좀 불편했다. 게다가 rm 명령어에 –f 스위치도 동작을 안하는 등 차이가 있을 수 있다. &lt;/li&gt;
    &lt;li&gt;압축파일내의 readme.txt 를 보면 더욱 자세한 내용을 알 수 있다.&lt;/li&gt;
    &lt;li&gt;test 라는 커맨드는 계속 에러를 뿜는다.. 동작에는 지장이 없다.&lt;/li&gt;
    &lt;li&gt;안드로원에서 dhcp를 이용한 자동실행이 원할하지 않다. 수동으로 동작을 시키면 잘 된다.&lt;/li&gt;
 &lt;/ul&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;h3&gt;[단점]&lt;/h3&gt;  &lt;p&gt;-한글이 깨짐&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://bulkdisk.tistory.com/attachment/cfile28.uf@183FB7044C73542B851504.tar&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/tar.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; sambaAndroid-0.3b.tar&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div id=&quot;ext-comp-1036&quot; class=&quot;x-panel x-panel-noborder&quot; style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-style: none !important; border-right-style: none !important; border-bottom-style: none !important; border-left-style: none !important; border-top-color: rgb(219, 219, 219); border-right-color: rgb(219, 219, 219); border-bottom-color: rgb(219, 219, 219); border-left-color: rgb(219, 219, 219); border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-width: initial !important; border-color: initial !important; &quot;&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;tt-plugin tt-share-entry-with-sns tt-sns-icon-alignment-center tt-sns-icon-size-small&quot;&gt;
	&lt;div class=&quot;tt-sns-wrap&quot; id=&quot;ttSnsWrap-&quot;&gt;
		&lt;ul class=&quot;tt-sns-service-default&quot;&gt;
			&lt;li class=&quot;tt-sns-service-mypeople&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('mypeople', '', '');&quot;&gt;마이피플&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-twitter&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('twitter', '', '');&quot;&gt;트위터&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-facebook&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('facebook', '', '');&quot;&gt;페이스북&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-other&quot;&gt;&lt;a href=&quot;javascript:;&quot; onmouseover=&quot;ShareEntryWithSNS.showLayer(event, '');&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;더보기&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
		&lt;ul class=&quot;tt-sns-service-more&quot; id=&quot;ttSnsServiceMore-&quot; onmouseout=&quot;ShareEntryWithSNS.hideLayer(event, '');&quot;&gt;
			&lt;li class=&quot;tt-sns-service-me2day&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('me2day', '', '');&quot;&gt;미투데이&lt;/a&gt;&lt;/li&gt;
			&lt;li class=&quot;tt-sns-service-yozm&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;ShareEntryWithSNS.share('yozm', '', '');&quot;&gt;요즘&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;div class=&quot;tt-sns-clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9087868&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;div style=&quot;text-align:left; padding-top:10px;&quot;&gt;
&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=bulkdisk.tistory.com/56&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=310&amp;amp;action=like&amp;amp;font=tahoma&amp;amp;colorscheme=light&amp;amp;height=65&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; overflow:hidden; width:310px; height:65px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;another_category another_category_color_gray&quot;&gt;
&lt;h4&gt;'&lt;a href=&quot;/category/안드로이드&quot;&gt;안드로이드&lt;/a&gt;' 카테고리의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/67&quot; &gt;안드로이드폰 SD 듀얼마운트 속도비교&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/12/08&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/60&quot; &gt;안드로이드 어플 웹설치 및 관리 AppBrain.com&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/09/02&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/59&quot; &gt;윈도우에서 초간단 안드로이드 소스 받는법&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/31&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/58&quot; &gt;안드로이드 최강의 폰관리툴 - 안드로이드 커맨더&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(4)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/30&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/56&quot; &gt;안드로이드를 공유폴더로 이용하기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/08/24&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;
&lt;a href=&quot;/55&quot; &gt;안드로이드 apk 파일 정보보기&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;span&gt;(0)&lt;/span&gt;
&lt;/th&gt;
&lt;td&gt;
2010/07/14&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>안드로이드</category>
			<category>SMB</category>
			<category>공유폴더</category>
			<category>안드로이드</category>
			<author>벌커덕스</author>
			<guid>http://bulkdisk.tistory.com/56</guid>
			<comments>http://bulkdisk.tistory.com/56#entry56comment</comments>
			<pubDate>Tue, 24 Aug 2010 14:07:09 +0900</pubDate>
		</item>
	</channel>
</rss>
