<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Taiwan CSS Platform Team</title><subtitle type="html">Your Potential, Our Passion.</subtitle><id>http://blogs.technet.com/csstwplatform/atom.xml</id><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.technet.com/csstwplatform/atom.xml" /><generator uri="http://communityserver.org" version="2.1.61025.2">Community Server</generator><updated>2009-09-04T08:33:00Z</updated><entry><title>無法存取SYSVOL導致GPO套用失敗</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/10/20/sysvol-gpo.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/10/20/sysvol-gpo.aspx</id><published>2009-10-20T11:37:00Z</published><updated>2009-10-20T11:37:00Z</updated><content type="html">&lt;P&gt;根據Userenv log&lt;/P&gt;
&lt;P&gt;Found file system path of:&amp;nbsp; &amp;lt;\\msft.com\sysvol\topsnmq.chtn.com.tw\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}&amp;gt; &lt;BR&gt;USERENV(154.3c8) 10:12:20:687 ProcessGPO:&amp;nbsp; Couldn't find the group policy template file &lt;FONT color=#ff0000&gt;&amp;lt;\\msft.com\sysvol\msft.com\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\gpt.ini&amp;gt;, error = 0x35&lt;/FONT&gt;. &lt;BR&gt;USERENV(154.3c8) 10:12:20:718 ProcessGPO:&amp;nbsp; ============================== &lt;BR&gt;USERENV(154.3c8) 10:12:20:718 EvalList:&amp;nbsp; ProcessGPO failed &lt;BR&gt;USERENV(154.3c8) 10:12:20:718 GetGPOInfo:&amp;nbsp; EvaluateDeferredGPOs failed. Exiting &lt;BR&gt;USERENV(154.3c8) 10:12:20:734 GetGPOInfo:&amp;nbsp; Leaving with 0 &lt;BR&gt;USERENV(154.3c8) 10:12:20:734 GetGPOInfo:&amp;nbsp; ******************************** &lt;BR&gt;USERENV(154.3c8) 10:12:20:734 ProcessGPOs: GetGPOInfo failed. &lt;BR&gt;USERENV(154.3c8) 10:12:20:734 LeaveCriticalPolicySection: Critical section 0x428 has been released. &lt;BR&gt;USERENV(154.3c8) 10:12:20:734 ProcessGPOs: Computer Group Policy has been applied.&lt;/P&gt;
&lt;P&gt;徵狀&lt;/P&gt;
&lt;P&gt;-由用戶端嘗試存取Server仍出現錯誤 "Windows 找不到檔案或項目"&lt;/P&gt;
&lt;P&gt;-\\電腦名稱 可以正常存取,但是\\msft.com 存取會失敗&lt;/P&gt;
&lt;P&gt;解決&lt;/P&gt;
&lt;P&gt;檢察DC上的 TCP/IP netbios help service 沒有啟動, 啟動服務後 sysvol即可以正常存取,並且GPO可以套用成功&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3287862" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="目錄服務" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_EE7604930D67D952_/default.aspx" /></entry><entry><title>How to shrink OperationsManagerDW database file size</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/10/20/how-to-shrink-operationsmanagerdw-database-file-size.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/10/20/how-to-shrink-operationsmanagerdw-database-file-size.aspx</id><published>2009-10-20T08:54:00Z</published><updated>2009-10-20T08:54:00Z</updated><content type="html">&lt;P&gt;當 DB &amp;amp; Transaction Log 檔占滿硬碟空間時，您可以使用以下步驟壓縮資料庫:&lt;BR&gt;&lt;BR&gt;&lt;FONT color=#000080 size=2 face=Calibri&gt;-- How to Shrink OperationManagerDW Database&lt;BR&gt;--1. Check the OperationManagerDW Database Properties and DBID, for example this database is DBID 18&lt;BR&gt;sp_helpdb&lt;BR&gt;--2. Check the OperationManagerDW(DBID 18) Database Log File ID / name (OperationManagerDW_Log)&lt;BR&gt;select * from master..sysaltfiles where dbid=18&lt;BR&gt;--3. Truncate Trnsaction Log&lt;BR&gt;Backup Log OperationManagerDW With Truncate_Only&lt;BR&gt;--4. Shrink Whole Database&lt;BR&gt;DBCC SHRINKDATABASE(OperationManagerDW)&lt;BR&gt;--5. Srink Log File Again to reduce file size&lt;BR&gt;USE OperationManagerDW&lt;BR&gt;GO&lt;BR&gt;DBCC SHRINKFILE(OperationManagerDW_Log)&lt;/FONT&gt; 
&lt;P&gt;您可以參考 KB 256650 來避免 SQL Server 資料庫的交易記錄檔超出預期大小:&lt;BR&gt;- 像是固定執行 DB 備份&lt;BR&gt;- 設定維護計劃&lt;BR&gt;- 變更復原模式&lt;BR&gt;- etc... 
&lt;P&gt;By default, in SQL Server 2000 and in SQL Server 2005, the recovery model for a SQL Server database is set to the Full recovery model. With the full recovery model, regular backups of the transaction log are used to prevent the transaction log file size from growing out of proportion to the database size. However, if the regular backups of the transaction log are not performed, the transaction log file grows to fill the disk, and you may not be able to perform any data modification operations on the SQL Server database. 
&lt;P&gt;You can change the recovery model from full to simple if you do not want to use the transaction log files during a disaster recovery operation. 
&lt;P&gt;Change the recovery model. If a disaster or data corruption occurs, you must recover your database so that the data consistency and the transactional integrity of the database are maintained. Based on how critical the data in your database is, you can use one of the following recovery models to determine how your data is backed up and what your exposure to the data loss is: 
&lt;P&gt;- Simple recovery model&lt;BR&gt;- Full recovery model&lt;BR&gt;- Bulk-logged recovery model 
&lt;P&gt;By using the simple recovery model, you can recover your database to the most recent backup of your database. By using the full recovery model or the bulk-logged recovery model, you can recover your database to the point when the failure occurred by restoring your database with the transaction log file backups. 
&lt;P&gt;In addition, the Operations Manager databases do not need maintenance tasks as it has its own internal maintenance processes. Some table/index are dropped and created again. That is why your maintenance job is failing re-indexing an index that does not exist &lt;BR&gt;&lt;BR&gt;REFERENCE&lt;BR&gt;================&lt;BR&gt;INF: Shrinking the Transaction Log in SQL Server 2000 with DBCC SHRINKFILE &lt;A href="http://support.microsoft.com/kb/272318/en-us" mce_href="http://support.microsoft.com/kb/272318/en-us"&gt;http://support.microsoft.com/kb/272318/en-us&lt;BR&gt;&lt;/A&gt;INF: 如何將 SQL Server 交易記錄檔壓縮 &lt;A href="http://support.microsoft.com/kb/256650/zh-tw" mce_href="http://support.microsoft.com/kb/256650/zh-tw"&gt;http://support.microsoft.com/kb/256650/zh-tw&lt;/A&gt;&lt;BR&gt;如何避免 SQL Server 資料庫的交易記錄檔超出預期大小 &lt;A href="http://support.microsoft.com/kb/873235/zh-tw" mce_href="http://support.microsoft.com/kb/873235/zh-tw"&gt;http://support.microsoft.com/kb/873235/zh-tw&lt;BR&gt;&lt;/A&gt;INF: SQL Server 中的 Autogrow 及 Autoshrink 設定考量 &lt;A href="http://support.microsoft.com/kb/315512/zh-tw" mce_href="http://support.microsoft.com/kb/315512/zh-tw"&gt;http://support.microsoft.com/kb/315512/zh-tw&lt;BR&gt;&lt;/A&gt;Maintenance&amp;nbsp;Plans &lt;A href="http://msdn.microsoft.com/en-us/library/ms187658.aspx" mce_href="http://msdn.microsoft.com/en-us/library/ms187658.aspx"&gt;http://msdn.microsoft.com/en-us/library/ms187658.aspx&lt;/A&gt;&lt;BR&gt;Maintenance Tasks &lt;A href="http://msdn.microsoft.com/en-us/library/ms140255.aspx" mce_href="http://msdn.microsoft.com/en-us/library/ms140255.aspx"&gt;http://msdn.microsoft.com/en-us/library/ms140255.aspx&lt;/A&gt;&lt;BR&gt;Recovery Model Overview &lt;A href="http://msdn.microsoft.com/en-us/library/ms189275.aspx" mce_href="http://msdn.microsoft.com/en-us/library/ms189275.aspx"&gt;http://msdn.microsoft.com/en-us/library/ms189275.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3287824" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="MOM&amp;amp;SCOM" scheme="http://blogs.technet.com/csstwplatform/archive/tags/MOM_2600_amp_3B00_SCOM/default.aspx" /></entry><entry><title>What is DFS maximum size limit</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/10/20/what-is-dfs-maximum-size-limit.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/10/20/what-is-dfs-maximum-size-limit.aspx</id><published>2009-10-20T08:38:00Z</published><updated>2009-10-20T08:38:00Z</updated><content type="html">&lt;P&gt;Q.&lt;BR&gt;We know DFS maximum size is 64 GB in Windows 2000 DFS and Windows Server 2003(R2) DFSR.&lt;BR&gt;Does&amp;nbsp;this limitation also applies to Windows Server 2008 and Windows Server 2008 R2 DFSR?&lt;BR&gt;Do we have&amp;nbsp;similar article such as this &lt;A href="http://technet.microsoft.com/en-us/library/cc773238(WS.10).aspx#BKMK_00" mce_href="http://technet.microsoft.com/en-us/library/cc773238(WS.10).aspx#BKMK_00"&gt;http://technet.microsoft.com/en-us/library/cc773238(WS.10).aspx#BKMK_00&lt;/A&gt; that describes the limit?&lt;BR&gt;&lt;BR&gt;A.&lt;BR&gt;The DFSR test team successfully tested replication of 10Tb (9.97Tb to be precise) of data between two Windows Server 2008 Standard Edition servers. &amp;nbsp;The test was conducted on a private network and it took about 8.5 days to fully replicate the data. The replicated data was composed of 4,410,445 files and 798 directories. The file data was randomly generated, meaning it cannot be compressed. Therefore, this scalability test represents the worst case workload and can be thought of as similar to replicating 10Tb of already compressed data.&lt;/P&gt;
&lt;P&gt;The DFSR product team expects data stored on customers’ servers to compress much better. That would reduce both the amount of data sent across the wire and the time taken by DFSR to replicate the data. 
&lt;P&gt;Please note that these are preliminary test results. The DFSR product team will resume scalability tests as soon as possible and the above numbers serve as an indication, that DFSR is not limited to 10Tb or 4.5 million files. 
&lt;P&gt;Thanks,&lt;BR&gt;The DFSR Product Team&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3287823" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="作業系統" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_5C4F6D69FB7C717D_/default.aspx" /></entry><entry><title>如何在Windows 7上客制化Default User profile</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/10/08/windows-7-default-user-profile.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/10/08/windows-7-default-user-profile.aspx</id><published>2009-10-08T01:40:00Z</published><updated>2009-10-08T01:40:00Z</updated><content type="html">&lt;P&gt;如果我們要讓新的使用者登入系統後，預設都能同樣的設定(例如桌面圖示、捷徑、IE首頁)，必需讓設定套到Default Profile上，如此在新的帳戶登入時，會去copy Default Profile的設定而套用下來。在以往，我們習慣在以下的畫面中，將已經設定好的profile copy至Default User上。&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Windows7DefaultUserprofile_8808/image_2.png" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Windows7DefaultUserprofile_8808/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Windows7DefaultUserprofile_8808/image_thumb.png" width=244 height=235 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Windows7DefaultUserprofile_8808/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;在Windows 7裏，要使用&lt;A title=http://support.microsoft.com/kb/973289 href="http://support.microsoft.com/kb/973289" mce_href="http://support.microsoft.com/kb/973289"&gt;http://support.microsoft.com/kb/973289&lt;/A&gt; 的方式才能達到這個需求。將步驟整理如下：&lt;/P&gt;
&lt;P&gt;1.登入一個帳戶，做完所有的設定。&lt;/P&gt;
&lt;P&gt;2.將以下的文件存成Unattend.xml檔，放在C:\下。&lt;/P&gt;
&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt; &lt;BR&gt;&amp;lt;unattend xmlns="urn:schemas-microsoft-com:unattend"&amp;gt; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;settings pass="specialize"&amp;gt; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="&lt;A href="http://schemas.microsoft.com/WMIConfig/2002/State%22" mce_href='http://schemas.microsoft.com/WMIConfig/2002/State"'&gt;http://schemas.microsoft.com/WMIConfig/2002/State"&lt;/A&gt; xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instance%22" mce_href='http://www.w3.org/2001/XMLSchema-instance"'&gt;http://www.w3.org/2001/XMLSchema-instance"&lt;/A&gt;&amp;gt; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;CopyProfile&amp;gt;true&amp;lt;/CopyProfile&amp;gt; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/component&amp;gt; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/settings&amp;gt; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cpi:offlineImage cpi:source="wim:d:/sources/install.wim#Windows 7 ENTERPRISE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /&amp;gt; &lt;BR&gt;&amp;lt;/unattend&amp;gt;&lt;/P&gt;
&lt;P&gt;3.開啟CMD，將路徑切到C:\Windows\system32\sysprep。&lt;/P&gt;
&lt;P&gt;4. 執行sysprep.exe /generalize /unattend:c:\unattend.xml。&lt;/P&gt;
&lt;P&gt;5.重新開機，會做初始化的動作，系統即會依照步驟4去讀取unattend.xml檔，並且完成設定。&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3285392" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="作業系統" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_5C4F6D69FB7C717D_/default.aspx" /></entry><entry><title>Windows 2008 R2找KMS Server做產品啟動時，出現0xC004F074錯誤</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/10/08/windows-2008-r2-kms-server-0xc004f074.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/10/08/windows-2008-r2-kms-server-0xc004f074.aspx</id><published>2009-10-08T01:21:00Z</published><updated>2009-10-08T01:21:00Z</updated><content type="html">&lt;P&gt;由於目前文件上提到的可能原因為KMS不是1.2版本才造成此問題，根據實際的經驗，以下三個原因都可能造成此錯誤的產生：&lt;/P&gt;
&lt;P&gt;狀況1:KMS Server版本非升級至1.2版本&lt;/P&gt;
&lt;P&gt;狀況2:KMS Client無法找到KMS Server&lt;/P&gt;
&lt;P&gt;狀況3:KMS Client的時間或時區設定錯誤&lt;/P&gt;
&lt;P&gt;解決方式：&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;狀況1.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;a.如果KMS Server尚未升級至1.2，請您先升級KMS Server元件後重新開機。&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Windows 2003元件下載點 &lt;A title=http://support.microsoft.com/kb/968915/zh-tw href="http://support.microsoft.com/kb/968915/zh-tw" mce_href="http://support.microsoft.com/kb/968915/zh-tw"&gt;http://support.microsoft.com/kb/968915/zh-tw&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Windows 2008元件下載點 &lt;A title=http://support.microsoft.com/kb/968912/zh-tw href="http://support.microsoft.com/kb/968912/zh-tw" mce_href="http://support.microsoft.com/kb/968912/zh-tw"&gt;http://support.microsoft.com/kb/968912/zh-tw&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;b.開啟命令提示字元，執行slmgr -ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX (請輸入Windows 2008 R2版本的KMS Server 金鑰)&lt;/P&gt;
&lt;P&gt;c.執行slmgr –ato&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;狀況2.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;如果是網路問題，請嘗試執行telnet &amp;lt;KMS Server IP&amp;gt; 1688以確定是否可以正常連線到KMS Server監聽的1688 port&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;狀況3.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;請您在KMS Client的時區及時間上做檢查，看是否時區設定有誤，如果設定錯誤請修正後再嘗試做啟動&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3285390" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="作業系統" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_5C4F6D69FB7C717D_/default.aspx" /></entry><entry><title>Web Server 2008 產品啟動問題</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/10/05/web-server-2008.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/10/05/web-server-2008.aspx</id><published>2009-10-05T05:53:00Z</published><updated>2009-10-05T05:53:00Z</updated><content type="html">&lt;P&gt;問題 &lt;BR&gt;======= &lt;BR&gt;Web Server 2008 產品啟動問題 &lt;BR&gt;當您輸入產品金鑰後 ,並透過線上自動啟動Windows ,會出現 [無法驗證您的產品金鑰 . 請檢查您的產品金鑰 , 並確定您已正確輸入.]&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image002_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image002_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image002 border=0 alt=clip_image002 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image002_thumb.jpg" width=535 height=404 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;解決方法 &lt;BR&gt;=========== &lt;BR&gt;1. 安裝Web Server 2008時 , 請先選擇[下一步] , 跳過輸入金鑰步驟, 並將系統安裝完成&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;I&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image004_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image004_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image004 border=0 alt=clip_image004 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image004_thumb.jpg" width=547 height=416 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image004_thumb.jpg"&gt;&lt;/A&gt;&lt;/I&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;選擇[否]&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;I&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image006_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image006_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image006 border=0 alt=clip_image006 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image006_thumb.jpg" width=553 height=418 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image006_thumb.jpg"&gt;&lt;/A&gt;&lt;/I&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;安裝後 ,目前是Web Server 2008 SP1&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/image_2.png" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/image_thumb.png" width=549 height=140 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;2. 請先安裝SP2後, 第一次重新開機&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image010_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image010_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image010 border=0 alt=clip_image010 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image010_thumb.jpg" width=557 height=115 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image010_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;3. 需再第二次重新開機 (如果沒有重新啟動 , 立即透過線上自動啟動Windows ,您會出現下面的錯誤)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image012_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image012_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image012 border=0 alt=clip_image012 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image012_thumb.jpg" width=551 height=232 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image012_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;4. 輸入產品金鑰&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image014_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image014_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; WIDTH: 437px; DISPLAY: inline; HEIGHT: 236px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image014 border=0 alt=clip_image014 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image014_thumb.jpg" width=550 height=282 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image014_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;5. Web Server 2008 啟動成功&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;I&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image016_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image016_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; WIDTH: 491px; DISPLAY: inline; HEIGHT: 223px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image016 border=0 alt=clip_image016 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image016_thumb.jpg" width=557 height=271 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/WebServer2008_C2B0/clip_image016_thumb.jpg"&gt;&lt;/A&gt;&lt;/I&gt;&lt;/B&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3284781" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="作業系統" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_5C4F6D69FB7C717D_/default.aspx" /></entry><entry><title>How to Limit the Size of the ACS Database by filtering the Security Events</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/30/how-to-limit-the-size-of-the-acs-database-by-filtering-the-security-events.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/30/how-to-limit-the-size-of-the-acs-database-by-filtering-the-security-events.aspx</id><published>2009-09-30T10:11:00Z</published><updated>2009-09-30T10:11:00Z</updated><content type="html">&lt;P&gt;How to Limit the Size of the ACS Database by filtering the Security Events&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;After adding the following ACS filter, the new incoming events cannot be reflected in ACS reports. &lt;/P&gt;
&lt;P&gt;adtadmin /setquery /query:"SELECT * FROM AdtsEvent WHERE (HeaderUser='SYSTEM' OR HeaderUser='LOCAL SERVICE' OR HeaderUser='NETWORK SERVICE') AND (EventID=671 OR EventID=675 OR EventID=681 OR EventID=529 OR EventID=531 OR EventID=532 OR EventID=535 OR EventID=536 OR EventID=539 OR EventID=517 OR EventID=624 OR EventID=627 OR EventID=628 OR EventID=630 OR (EventID&amp;gt;=631 AND EventID&amp;lt;=639) OR (EventID&amp;gt;=641 AND EventID&amp;lt;=668) OR EventID=684 OR EventID=685)"&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtoLimittheSizeoftheACSDatabasebyfilte_FFCA/clip_image002_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtoLimittheSizeoftheACSDatabasebyfilte_FFCA/clip_image002_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image002 border=0 alt=clip_image002 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtoLimittheSizeoftheACSDatabasebyfilte_FFCA/clip_image002_thumb.jpg" width=581 height=372 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtoLimittheSizeoftheACSDatabasebyfilte_FFCA/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Problem Description &lt;BR&gt;================== &lt;BR&gt;ACS(Audit Collection Services) Database can quickly fill up due to unwanted security events, &lt;BR&gt;Resolution&lt;/P&gt;
&lt;P&gt;Solution &lt;BR&gt;====== &lt;BR&gt;The Solution is to avoid unwanted events by uing AdtAdmin along with WQL Query as listed below &lt;BR&gt;An ACS collector can use Windows Management Instrumentation (WMI) Query Language (WQL) queries as filters to limit the events that are stored in the ACS&lt;B&gt; &lt;/B&gt;database. &lt;BR&gt;The /SetQuery parameter implements the filter before events are saved to the ACS database. &lt;BR&gt;For more information about WQL and WQL queries,see Retrieving Managed Resources Using WMI Query Language at &lt;A href="http://go.microsoft.com/fwlink/?LinkId=74151" mce_href="http://go.microsoft.com/fwlink/?LinkId=74151"&gt;http://go.microsoft.com/fwlink/?LinkId=74151&lt;/A&gt; and Querying with WQL at &lt;BR&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=74152" mce_href="http://go.microsoft.com/fwlink/?LinkId=74152"&gt;http://go.microsoft.com/fwlink/?LinkId=74152&lt;/A&gt;. &lt;BR&gt;AdtAdmin.exe /SetQuery [/Collector:CollectorName] /Query:QuerySyntax &lt;BR&gt;&lt;BR&gt;Example &lt;BR&gt;This example uses the /SetQuery parameter to define a WQL query that filters out specified events. When applied, this query filters out events generated by System, Local Service, and Network Service services, and it also filters events that have specified event ID numbers. &lt;BR&gt;adtadmin /setquery /collector:"Collector Name" /query:"SELECT * FROM AdtsEvent WHERE NOT ((HeaderUser='SYSTEM' OR HeaderUser='LOCAL SERVICE' OR HeaderUser='NETWORK SERVICE') OR (EventId=538 OR EventId=566 OR EventId=672 OR EventId=680) OR (EventId&amp;gt;=541 AND EventId&amp;lt;=547))" &lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3284019" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="MOM&amp;amp;SCOM" scheme="http://blogs.technet.com/csstwplatform/archive/tags/MOM_2600_amp_3B00_SCOM/default.aspx" /></entry><entry><title>Alerts that are closed do not dissapear from the console</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/30/alerts-that-are-closed-do-not-dissapear-from-the-console.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/30/alerts-that-are-closed-do-not-dissapear-from-the-console.aspx</id><published>2009-09-30T10:07:00Z</published><updated>2009-09-30T10:07:00Z</updated><content type="html">&lt;P&gt;&lt;B&gt;PROBLEM &lt;BR&gt;========= &lt;BR&gt;&lt;/B&gt;Customer says that alerts in the Active Alerts view in OpsMgr console (Monitoring Section) are not updated as expected. It takes a lot of time for those alerts to be Closed. Or the alerts may change to Closed State but may not dissapear from the console. &lt;BR&gt;&lt;B&gt;&lt;BR&gt;Action Plan &lt;BR&gt;=========&lt;/B&gt; &lt;BR&gt;To identify computers with future time stamps, run the following query &lt;BR&gt;&lt;BR&gt;SELECT * FROM dbo.AlertView WHERE TimeRaised &amp;gt; getutcdate() OR StateLastModified &amp;gt; getutcdate() &lt;BR&gt;&lt;B&gt;&lt;U&gt;&lt;BR&gt;&lt;/U&gt;&lt;/B&gt;&lt;B&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Alertsthatarecloseddonotdissapearfromthe_FEF4/clip_image002_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Alertsthatarecloseddonotdissapearfromthe_FEF4/clip_image002_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image002 border=0 alt=clip_image002 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Alertsthatarecloseddonotdissapearfromthe_FEF4/clip_image002_thumb.jpg" width=650 height=246 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Alertsthatarecloseddonotdissapearfromthe_FEF4/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;- We ran the following t-sql commands to update the OperationsManager Database&lt;/P&gt;
&lt;P&gt;UPDATE dbo.AlertView SET TimeRaised = getutcdate() WHERE TimeRaised &amp;gt; getutcdate()&lt;/P&gt;
&lt;P&gt;UPDATE dbo.State SET LastModified = getutcdate() WHERE LastModified &amp;gt; getutcdate()&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Alertsthatarecloseddonotdissapearfromthe_FEF4/clip_image006_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Alertsthatarecloseddonotdissapearfromthe_FEF4/clip_image006_2.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image006 border=0 alt=clip_image006 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Alertsthatarecloseddonotdissapearfromthe_FEF4/clip_image006_thumb.jpg" width=661 height=248 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/Alertsthatarecloseddonotdissapearfromthe_FEF4/clip_image006_thumb.jpg"&gt;&lt;/A&gt; &lt;BR&gt;&lt;B&gt;&lt;BR&gt;Solution &lt;BR&gt;========= &lt;BR&gt;&lt;/B&gt;Apply hotfix 957135&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3284015" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="MOM&amp;amp;SCOM" scheme="http://blogs.technet.com/csstwplatform/archive/tags/MOM_2600_amp_3B00_SCOM/default.aspx" /></entry><entry><title>2008 Active Directory 建立不同的密碼原則</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/17/2008-active-directory.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/17/2008-active-directory.aspx</id><published>2009-09-17T05:06:00Z</published><updated>2009-09-17T05:06:00Z</updated><content type="html">&lt;P&gt;一、前言: &lt;BR&gt;Windows Server 2008提供了新的 [&lt;B&gt;Fine-Grained Password Policies&lt;/B&gt;]來處理這類的需求。要使用這個功能必須網域的功能等級先提昇為Windows Server 2008等級，接著透過AD網域中新的[Password Settings Container]的位置來進行設定，這個位置可使用[AD Users and Computers]管理工具，使用[Advanced Features]來開啟System位置就可看到，不過您必須要使用[Adsiedit.msc]或[Ldifde]工具來設定!&lt;/P&gt;
&lt;P&gt;二、做法: &lt;BR&gt;1. 請先建立一個全域安全性群組，例如：GSGroup1. &lt;BR&gt;2. 將您想要排除的Account加為GSGroup1的成員. &lt;BR&gt;3. 建立PSO&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;4. To create a PSO using ADSI Edit&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Click &lt;B&gt;Start&lt;/B&gt;, click &lt;B&gt;Run&lt;/B&gt;, type &lt;B&gt;adsiedit.msc&lt;/B&gt;, and then click &lt;B&gt;OK&lt;/B&gt;. &lt;/LI&gt;
&lt;LI&gt;In the ADSI Edit snap-in, right-click &lt;B&gt;ADSI Edit&lt;/B&gt;, and then click &lt;B&gt;Connect to&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;In &lt;B&gt;Name&lt;/B&gt;, type the fully qualified domain name (FQDN) of the domain in which you want to create the PSO, and then click &lt;B&gt;OK&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;Double-click the domain.&lt;/LI&gt;
&lt;LI&gt;Double-click &lt;B&gt;DC=&amp;lt;domain_name&amp;gt;&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;Double-click &lt;B&gt;CN=System&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;Click &lt;B&gt;CN=Password Settings Container&lt;/B&gt;.&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;All the PSO objects that have been created in the selected domain appear.&lt;/P&gt;
&lt;OL start=start&gt;
&lt;LI&gt;Right-click &lt;B&gt;CN=Password Settings Container&lt;/B&gt;, click &lt;B&gt;New&lt;/B&gt;, and then click &lt;B&gt;Object&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;In the &lt;B&gt;Create Object&lt;/B&gt; dialog box, under &lt;B&gt;Select a class&lt;/B&gt;, click &lt;B&gt;msDS-PasswordSettings&lt;/B&gt;, and then click &lt;B&gt;Next&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;In &lt;B&gt;Value&lt;/B&gt;, type the name of the new PSO, and then click &lt;B&gt;Next&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;Continue with the wizard, and enter appropriate values for all &lt;B&gt;mustHave&lt;/B&gt; attributes.&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;&lt;B&gt;Attribute sample:&lt;/B&gt; 
&lt;TABLE class="" cellPadding=0 border=1&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=bottom&gt;
&lt;P&gt;&lt;B&gt;Attribute name &lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=bottom&gt;
&lt;P&gt;&lt;B&gt;Description &lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=bottom&gt;
&lt;P&gt;&lt;B&gt;Acceptable value range &lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=bottom&gt;
&lt;P&gt;&lt;B&gt;Example value &lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-PasswordSettingsPrecedence&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Password Settings Precedence&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Greater than 0&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;10&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-PasswordReversibleEncryptionEnabled&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Password reversible encryption status for user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;FALSE / TRUE (Recommended: FALSE)&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;FALSE&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-PasswordHistoryLength&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Password History Length for user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;0 through 1024&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;24&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-PasswordComplexityEnabled&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Password complexity status for user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;FALSE / TRUE (Recommended: TRUE)&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;TRUE&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-MinimumPasswordLength&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Minimum Password Length for user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;0 through 255&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;8&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-MinimumPasswordAge&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Minimum Password Age for user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;· (None)&lt;/P&gt;
&lt;P&gt;· 00:00:00:00 through &lt;B&gt;msDS-MaximumPasswordAge &lt;/B&gt;value&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;1:00:00:00 (1 day)&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-MaximumPasswordAge&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Maximum Password Age for user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;· (Never)&lt;/P&gt;
&lt;P&gt;· &lt;B&gt;msDS-MinimumPasswordAge &lt;/B&gt;value through (Never)&lt;/P&gt;
&lt;P&gt;· &lt;B&gt;msDS-MaximumPasswordAge&lt;/B&gt; cannot be set to zero&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;42:00:00:00 (42 days)&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-LockoutThreshold&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Lockout threshold for lockout of user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;0 through 65535&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;10&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-LockoutObservationWindow&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Observation Window for lockout of user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;· (None)&lt;/P&gt;
&lt;P&gt;· 00:00:00:01 through &lt;B&gt;msDS-LockoutDuration&lt;/B&gt; value&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;0:00:30:00 (30 minutes)&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-LockoutDuration&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Lockout duration for locked out user accounts&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;· (None)&lt;/P&gt;
&lt;P&gt;· (Never)&lt;/P&gt;
&lt;P&gt;· &lt;B&gt;msDS-LockoutObservationWindow&lt;/B&gt; value through (Never)&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;0:00:30:00 (30 minutes)&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;&lt;B&gt;msDS-PSOAppliesTo&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;Links to objects that this password settings object applies to (forward link)&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;0 or more DNs of users or global security groups&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" vAlign=top&gt;
&lt;P&gt;“CN=u1,CN=Users,DC=DC1,DC=contoso&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;12. On the last screen of the wizard, click &lt;B&gt;More Attributes&lt;/B&gt;.&lt;/P&gt;
&lt;P&gt;13. On the &lt;B&gt;Select which property to view&lt;/B&gt; menu, click &lt;B&gt;Optional&lt;/B&gt; or &lt;B&gt;Both&lt;/B&gt;.&lt;/P&gt;
&lt;P&gt;14. In the &lt;B&gt;Select a property to view&lt;/B&gt; drop-down list, select &lt;B&gt;msDS-PSOAppliesTo&lt;/B&gt;.&lt;/P&gt;
&lt;P&gt;15. In &lt;B&gt;Edit Attribute&lt;/B&gt;, add the distinguished names of users or global security groups that the PSO is to be applied to, and then click &lt;B&gt;Add&lt;/B&gt;.&lt;/P&gt;
&lt;P&gt;16. Repeat step 15 to apply the PSO to more users or global security groups.&lt;/P&gt;
&lt;P&gt;17. Click &lt;B&gt;Finish&lt;/B&gt;.&lt;/P&gt;
&lt;P&gt;5. &lt;B&gt;To apply PSOs to users or global security groups using the Windows interface&lt;/B&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open Active Directory Users and Computers. To open Active Directory Users and Computers, click &lt;B&gt;Start&lt;/B&gt;, point to &lt;B&gt;Administrative Tools&lt;/B&gt;, and then click &lt;B&gt;Active Directory Users and Computers&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;On the &lt;B&gt;View&lt;/B&gt; menu, ensure that &lt;B&gt;Advanced Features&lt;/B&gt; is checked.&lt;/LI&gt;
&lt;LI&gt;In the console tree, click &lt;B&gt;Password Settings Container.&lt;/B&gt;&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;&lt;B&gt;Where? &lt;/B&gt;&lt;/P&gt;
&lt;OL start=start&gt;
&lt;UL&gt;
&lt;LI&gt;Active Directory Users and Computers\&lt;I&gt;domain node&lt;/I&gt;\System\Password Settings Container.&lt;/LI&gt;&lt;/UL&gt;
&lt;LI&gt;In the details pane, right-click the PSO, and then click &lt;B&gt;Properties&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;Click the &lt;B&gt;Attribute Editor&lt;/B&gt; tab.&lt;/LI&gt;
&lt;LI&gt;Select the &lt;B&gt;msDS-PsoAppliesTo&lt;/B&gt; attribute, and then click &lt;B&gt;Edit&lt;/B&gt;.&lt;/LI&gt;
&lt;LI&gt;In the &lt;B&gt;Multi-valued String Editor&lt;/B&gt; dialog box, enter the Distinguished Name (also known as DN) of the user or the global security group that you want to apply this PSO to, click &lt;B&gt;Add&lt;/B&gt;, and then click &lt;B&gt;OK&lt;/B&gt;. &lt;BR&gt;請選擇您在先前已定義好的群組(&lt;B&gt;GSGroup1&lt;/B&gt;)。&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/2008ActiveDirectory_8E18/clip_image001_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/2008ActiveDirectory_8E18/clip_image001_2.jpg"&gt;&lt;IMG title=clip_image001 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=205 alt=clip_image001 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/2008ActiveDirectory_8E18/clip_image001_thumb.jpg" width=244 border=0 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/2008ActiveDirectory_8E18/clip_image001_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;三、注意事項: &lt;BR&gt;透過PSO物件的屬性設定來套用，極可能會有衝突的情形產生（多個PSO設定到單一物件），因此PSO有一個重要屬性[msDS-PasswordSettingsPrecedence]! &lt;BR&gt;這屬性是一個1以上的整數值，越低的數字代表有較高的排序（優先權），例如有兩個PSO分別的屬性值為10與20，10的優先權比較高因此會真的套用到物件上；此外，如果屬性值一樣的話，那就以PSO的GUID比較小的會套用! &lt;BR&gt;另外如果有分別的PSO設定到使用者帳戶與使用者所隸屬群組的話，則套用到使用者帳戶的才是結果PSO!&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;BR&gt;&lt;/B&gt;&lt;B&gt;參考資訊連結：&lt;/B&gt;&lt;B&gt; &lt;BR&gt;&lt;/B&gt;AD DS Fine-Grained Password and Account Lockout Policy Step-by-Step Guide &lt;BR&gt;&lt;A href="http://technet.microsoft.com/en-us/library/cc770842.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc770842.aspx"&gt;http://technet.microsoft.com/en-us/library/cc770842.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3281539" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="目錄服務" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_EE7604930D67D952_/default.aspx" /></entry><entry><title>Networking - After install 968389, you are unable to access admin shares (etc c$) on the server itself</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/16/networking-unable-to-access-admin-shares-etc-c-on-the-server-itself.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/16/networking-unable-to-access-admin-shares-etc-c-on-the-server-itself.aspx</id><published>2009-09-16T05:32:00Z</published><updated>2009-09-16T05:32:00Z</updated><content type="html">&lt;P&gt;SYMPTOM&lt;BR&gt;===================&lt;BR&gt;Server - Windows server 2003 SP2 Standard.&lt;BR&gt;Role of the server - File server and Citrix server.&lt;BR&gt;- Unable to access admin shares on the file server.&lt;BR&gt;- SMS remote desktop from Vista to XP prompts for credentials if it has the patch installed&lt;BR&gt;- Issue started after 968389 patch installation. &lt;BR&gt;- Interesting point to note - this problem is only evident on some servers whilst some are not being affected at all.&lt;BR&gt;&lt;BR&gt;This issue is there when you access the admin shares or c$ on the server itself:&lt;BR&gt;Error messages &lt;BR&gt;\\localhost\c$ - No network provider accepted the given network path&lt;BR&gt;\\servername\c$ - No network provider accepted the given network path.&lt;BR&gt;\\ip\c$ - No network provider accepted the given network path.&lt;BR&gt;\\FQDN\c$ - No network provider accepted the given network path&lt;BR&gt;&lt;BR&gt;RESOLUTION/WORKAROUND&lt;BR&gt;===================&lt;BR&gt;Uninstall and reinstall the patch will guarantee solve the problem&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3281330" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="作業系統" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_5C4F6D69FB7C717D_/default.aspx" /><category term="安全性" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_895B68512760_/default.aspx" /></entry><entry><title>Terminal/RDP - Unable to RDP your Windows Server 2003 Server</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/16/terminal-rdp-unable-to-rdp-your-windows-server-2003-server.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/16/terminal-rdp-unable-to-rdp-your-windows-server-2003-server.aspx</id><published>2009-09-16T04:52:00Z</published><updated>2009-09-16T04:52:00Z</updated><content type="html">&lt;P&gt;問題描述︰&lt;BR&gt;您無法遠端連線 (RDP) 到您的 Windows Server 2003 伺服器&lt;BR&gt;經過進一步的分析您發現:&lt;BR&gt;1.&amp;nbsp;伺服器沒有在聽 TCP port 3389 (netstat -ano)&lt;BR&gt;2. Terminal Services 服務有啟動&lt;BR&gt;3. MSINFO32 顯示 TDTCP&amp;nbsp;&amp;amp; RDPWD&amp;nbsp;system driver 狀態 (Status) 呈現停止 (Stop)&lt;BR&gt;4. TDTCP.sys&amp;nbsp;有在 system32 目錄下，版本及檔案大小也是正確的&lt;BR&gt;5. 裝置管理員中已經找不到 TDTCP 裝置 (顯示隱藏裝置然後設定依連線顯示裝置 view "Devices by Connection")&lt;BR&gt;&lt;BR&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/TerminalRDPUnabletoRDPyourWindowsServer2_8A90/image.png" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/TerminalRDPUnabletoRDPyourWindowsServer2_8A90/image.png" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=205 alt=image src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/TerminalRDPUnabletoRDPyourWindowsServer2_8A90/image_thumb.png" width=289 border=0 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/TerminalRDPUnabletoRDPyourWindowsServer2_8A90/image_thumb.png"&gt;&lt;/A&gt; &lt;BR&gt;&lt;BR&gt;說明與方法︰&lt;BR&gt;Analysis&lt;BR&gt;===========&lt;BR&gt;- Reinstall the RDP-TCP connection and the problem persisted still&lt;BR&gt;- Reinstall the TDTCP device with Devcon script,TDTCP device was added back, and RDP worked successfully.&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Run the following commands:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf root\RDP_MOU&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf root\RDP_KBD&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf RDP.serviceinstall&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf root\legacy_RDPWD&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf rdpdr.serviceinstall&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf rdpdr.serviceinstall&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf legacy_TDPIPE&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf legacy_TDPTCP&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; devcon install %windir%\inf\machine.inf legacy_termservice&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Note: Ignore any error messages you may encounter, provide us the output result (including the error messages if there is any)&lt;BR&gt;- You may get the following devices with exclamation mark after running the devcon script, they can be safely deleted &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/TerminalRDPUnabletoRDPyourWindowsServer2_8A90/clip_image002_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/TerminalRDPUnabletoRDPyourWindowsServer2_8A90/clip_image002_2.jpg" atomicselection="true"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=308 alt=clip_image002 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/TerminalRDPUnabletoRDPyourWindowsServer2_8A90/clip_image002_thumb.jpg" width=264 border=0 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/TerminalRDPUnabletoRDPyourWindowsServer2_8A90/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3281325" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="作業系統" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_5C4F6D69FB7C717D_/default.aspx" /></entry><entry><title>Volume Shadow Copy Volsnap Event 25</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/16/volume-shadow-copy-volsnap-event-25.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/16/volume-shadow-copy-volsnap-event-25.aspx</id><published>2009-09-16T04:35:00Z</published><updated>2009-09-16T04:35:00Z</updated><content type="html">&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;問題描述︰&lt;BR&gt;您想解決 Volsnap Event 25 事件 
&lt;P&gt;Event Type:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error&lt;BR&gt;Event Source:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VolSnap&lt;BR&gt;Event ID:&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; 25&lt;BR&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The shadow copies of volume D: were deleted because the shadow copy storage could not grow in time.&amp;nbsp; Consider reducing the IO load on the system or choose a shadow copy storage volume that is not being shadow copied.&lt;BR&gt;Data:&lt;BR&gt;0000: 00000000 00580002 00000000 c0060019&lt;BR&gt;0010: 00000003 00000000 00000003 00000000&lt;BR&gt;0020: 00000000 00000000 &lt;BR&gt;&lt;BR&gt;c0060019 = ERROR_SEEK The drive cannot locate a specific area or track on the disk.&lt;BR&gt;&lt;BR&gt;說明與方法︰&lt;BR&gt;CAUSE&lt;BR&gt;================&lt;BR&gt;以下兩篇 KB 描述當伺服器 I/O 高時，會遺失 Shadow Copy 的問題&lt;BR&gt;&lt;BR&gt;925799 Error message when a Windows Server 2003-based computer has a high level of I/O activity: "The shadow copies of volume Volume_Name were aborted because the diff area file could not grow in time"&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/925799" mce_href="http://support.microsoft.com/kb/925799"&gt;http://support.microsoft.com/kb/925799&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;826936 Time-out errors occur in Volume Shadow Copy service writers, and shadow copies are lost during backup and during times when there are high levels of input/output&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/826936" mce_href="http://support.microsoft.com/kb/826936"&gt;http://support.microsoft.com/kb/826936&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;(826936 is replaced by 833167, 833167 is included in Windows Server 2003 SP2)&lt;BR&gt;&lt;BR&gt;RESOLUTION&lt;BR&gt;=================&lt;BR&gt;1. 我們建議您先安裝以下 Hotfix 來更新 VOLSNAP 驅動程式&lt;BR&gt;Rollup update for the volsnap.sys driver in Windows Server 2003 &lt;A href="http://support.microsoft.com/kb/967551" mce_href="http://support.microsoft.com/kb/967551"&gt;http://support.microsoft.com/kb/967551&lt;/A&gt;&lt;BR&gt;After 967551 hotfix is installed, you must change the value of the UseTopDownAlloc registry entry to 1 to resolve the Stop code 0x0000006B issue.&lt;BR&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VolSnap\UseTopDownAlloc&lt;BR&gt;&lt;BR&gt;2. 設定 MinDiffAreaFileSize 機碼&lt;BR&gt;Registry path: HKLM\SYSTEM\CurrentControlSet\Services\VOLSNAP\MinDiffAreaFileSize&lt;BR&gt;&lt;BR&gt;Compute a value that is five percent of the smallest shadow copy storage space on any one volume on the system.&lt;BR&gt;&lt;BR&gt;Use the following guidelines to set the MinDiffAreaFileSize value: &lt;BR&gt;If you compute a value that is less than or equal to (&amp;lt;=) 600 megabytes (MB), set the MinDiffAreaFileSize value to 600. If you continue to receive event ID 25, incrementally increase the value until the value exceeds 3,000.&lt;BR&gt;If you compute a value that is more than or equal to (&amp;gt;=) 3,000 MB, set the MinDiffAreaFileSize value to 3000.&lt;BR&gt;If you compute a value that is between 600 MB and 3,000 MB, set the value of MinDiffAreaFileSize to the value that you computed.&lt;BR&gt;&lt;BR&gt;MinDiffAreaFileSize controls the initial size of the shadow copy storage area for each shadow copy. The MinDiffAreaFileSize registry key uses the REG_DWORD data type.&lt;BR&gt;&lt;BR&gt;The MinDiffAreaFileSize registry key specifies the minimum size of the shadow copy storage area. The default size of the shadow copy storage area is 300 MB, and the maximum size is 3 gigabytes (GB). For an accurate setting, specify a value that is a multiple of 300 MB. Otherwise, the next multiple of 300 MB will be used. A value of 300 is equal to 300 MB, and a value of 3,000 is equal to 3 GB. &lt;BR&gt;&lt;BR&gt;Shadow copies might not function correctly if the value of the MinDiffAreaFileSize registry key is larger than the maximum size of the shadow copy storage area. Before you change this registry entry, run the vssadmin list shadowstorage command. Make sure that the shadow copy storage area is larger than 300 MB or that the shadow copy storage area is larger than the value that is set in the registry. Also, make sure that you have at least 300 MB of free space on the shadow copy storage volume.&lt;/P&gt;
&lt;P&gt;ADDITIONAL CONSIDERATION&lt;BR&gt;=================&lt;BR&gt;As time passes, the allocated space may increase as more data is modified on the original volume. However, when you have high input/output traffic on the original volume, the shadow copy storage area cannot grow fast enough to hold all the copy-on-write changes. This causes deletion of all the shadow copies on the original volume. This problem is more noticeable in domain controller configurations. By default, the disk write cache is disabled in domain controller configurations. &lt;BR&gt;&lt;BR&gt;If you continue to receive event ID 25, follow these steps to resolve the issue:&lt;BR&gt;a. Put the shadow copy storage on another volume, even if the volume is located on the same hard disk.&lt;BR&gt;b. Make sure that the volume that causes event ID 25 is not the same volume that contains the paging file. If the volume that causes event ID 25 contains the paging file, consider putting the paging file on another volume.&lt;BR&gt;c. Make sure that the volume that causes event ID 25 is not used as the shadow copy storage for any other volume.&lt;BR&gt;&lt;BR&gt;使用 VSSADMIN 指令修改 Storage 位置以及大小&lt;BR&gt;Method 1)&lt;BR&gt;Run "vssadmin resize shadowstorage /for=c: /on=d: /maxsize=2500mb"&lt;BR&gt;This will set Partition D: for Storage area for Partition C: with size limit of 2500mb (This valve will vary according to your requirement) &lt;BR&gt;Method 2)&lt;BR&gt;Run "vssadmin delete shadowStorage /for=C: /on=C:"&lt;BR&gt;Run "vssadmin add shadowstorage /for=C: /on=D: /maxsize=2500mb"&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3281322" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="作業系統" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_5C4F6D69FB7C717D_/default.aspx" /></entry><entry><title>DC NETLOGON 服務無法自動啟動</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/16/dc-netlogon.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/16/dc-netlogon.aspx</id><published>2009-09-16T01:18:00Z</published><updated>2009-09-16T01:18:00Z</updated><content type="html">&lt;P&gt;&lt;B&gt;&lt;U&gt;問題描述&lt;/U&gt;&lt;/B&gt;&lt;B&gt;︰&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Windows Server 2008/重新啟動電腦後，NetLogon服務無法自動啟動並且啟動後馬上又停用&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;U&gt;解決方法&lt;/U&gt;&lt;/B&gt;&lt;B&gt;︰&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;記錄檔名稱:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Directory Service&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;來源:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Microsoft-Windows-ActiveDirectory_DomainService&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;日期:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2009/7/26 下午 05:32:52&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;事件識別碼:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2103&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;工作類別:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 服務控制&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;等級:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 錯誤&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;關鍵字:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 傳統&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;使用者:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ANONYMOUS LOGON&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;電腦:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DC.msft.com&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;描述:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;已經使用不支援的還原程序來還原 Active Directory 網域服務資料庫。&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#ff0000&gt;此狀況持續時，Active Directory 網域服務將無法登入使用者。因此，已暫停 Net Logon 服務。&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;根據提供的log請備份以下登錄值&lt;/P&gt;
&lt;P&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NTDS\Parameters\&lt;/P&gt;
&lt;P&gt;請點選Parameters右邊視窗確認”Dsa Not Writable” 是否存在?&lt;/P&gt;
&lt;P&gt;若該值存在，請參考 KB875495&lt;BR&gt;How to detect and recover from a USN rollback in Windows Server 2003&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/875495/en-us"&gt;http://support.microsoft.com/kb/875495/en-us&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3281320" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="目錄服務" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_EE7604930D67D952_/default.aspx" /></entry><entry><title>How to move a DHCP scopes list to another server</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/04/how-to-move-a-dhcp-scopes-list-to-another-server.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/04/how-to-move-a-dhcp-scopes-list-to-another-server.aspx</id><published>2009-09-04T10:38:00Z</published><updated>2009-09-04T10:38:00Z</updated><content type="html">&lt;P&gt;&lt;B&gt;Problem &lt;BR&gt;====== &lt;BR&gt;&lt;/B&gt;How to move a DHCP scopes list to another server&lt;B&gt; &lt;/B&gt;&lt;B&gt;&lt;BR&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Solution &lt;BR&gt;=======&lt;/B&gt; &lt;BR&gt;&lt;B&gt;顯示&lt;/B&gt;&lt;B&gt;DHCP &lt;/B&gt;&lt;B&gt;的&lt;/B&gt;&lt;B&gt;scope&lt;/B&gt;&lt;B&gt; &lt;BR&gt;&lt;/B&gt;netsh dhcp server show scope&lt;B&gt; &lt;BR&gt;&lt;/B&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image002_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image002_2.jpg"&gt;&lt;IMG title=clip_image002 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=419 alt=clip_image002 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image002_thumb.jpg" width=537 border=0 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image002_thumb.jpg"&gt;&lt;/A&gt;&lt;B&gt; &lt;BR&gt;&lt;/B&gt;&lt;B&gt;匯出&lt;/B&gt;&lt;B&gt;SCOPE &lt;BR&gt;&lt;/B&gt;&lt;BR&gt;netsh dhcp server export&amp;nbsp; c:\dhcp 10.3.2.0 &lt;BR&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image004_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image004_2.jpg"&gt;&lt;IMG title=clip_image004 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=122 alt=clip_image004 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image004_thumb.jpg" width=537 border=0 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image004_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;在舊的Server 刪除此scope &lt;BR&gt;netsh dhcp server delete scope 10.3.2.0 dhcpfullforce &lt;BR&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image006_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image006_2.jpg"&gt;&lt;IMG title=clip_image006 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=369 alt=clip_image006 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image006_thumb.jpg" width=542 border=0 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image006_thumb.jpg"&gt;&lt;/A&gt; &lt;BR&gt;匯入到另一台DHCP &lt;BR&gt;netsh dhcp server IMPORT&amp;nbsp; c:\dhcp 10.3.2.0 &lt;BR&gt;&lt;A href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image008_2.jpg" mce_href="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image008_2.jpg"&gt;&lt;IMG title=clip_image008 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=137 alt=clip_image008 src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image008_thumb.jpg" width=547 border=0 mce_src="http://blogs.technet.com/blogfiles/csstwplatform/WindowsLiveWriter/HowtomoveaDHCPscopeslisttoanotherserver_DB98/clip_image008_thumb.jpg"&gt;&lt;/A&gt; &lt;BR&gt;&lt;BR&gt;&lt;B&gt;RELATED KNOWLEDGE BASE ARTICLES: &lt;BR&gt;================================&lt;/B&gt; &lt;BR&gt;How to use the Netsh utility to export and import DHCP scopes &lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/281626/en-us" mce_href="http://support.microsoft.com/kb/281626/en-us"&gt;http://support.microsoft.com/kb/281626/en-us&lt;/A&gt; &lt;BR&gt;&lt;B&gt;&lt;BR&gt;&lt;/B&gt;&lt;B&gt;區段&lt;/B&gt;&lt;B&gt; B&lt;/B&gt;&lt;B&gt;：將領域和設定移轉至管理伺服器&lt;/B&gt;&lt;B&gt; &lt;BR&gt;&lt;/B&gt;&lt;A href="http://technet.microsoft.com/zh-tw/library/cc463365(WS.10).aspx" mce_href="http://technet.microsoft.com/zh-tw/library/cc463365(WS.10).aspx"&gt;http://technet.microsoft.com/zh-tw/library/cc463365(WS.10).aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3279120" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="網路相關" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_B27DEF8DF876DC95_/default.aspx" /></entry><entry><title>Not able to isntall DPM Agent on Windows 2008</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/csstwplatform/archive/2009/09/04/not-able-to-isntall-dpm-agent-on-windows-2008.aspx" /><id>http://blogs.technet.com/csstwplatform/archive/2009/09/04/not-able-to-isntall-dpm-agent-on-windows-2008.aspx</id><published>2009-09-04T10:33:00Z</published><updated>2009-09-04T10:33:00Z</updated><content type="html">&lt;P&gt;&lt;B&gt;Problem &lt;BR&gt;========&lt;/B&gt; &lt;BR&gt;SCDPM 2007,DPM Agent installation failed &lt;BR&gt;We can check the log MSDPMagentinstall.log in folder c:\windows\temp &lt;BR&gt;MSDPMAgentInstall.LOG&lt;/P&gt;
&lt;P&gt;===================================&lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: Note: 1: 1708 &lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: Note: 1: 2205 2:&amp;nbsp; 3: Error &lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: Note: 1: 2228 2:&amp;nbsp; 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1708 &lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: Note: 1: 2205 2:&amp;nbsp; 3: Error &lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: Note: 1: 2228 2:&amp;nbsp; 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709 &lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: Product: Microsoft System Center DPM 保護代理程式 -- Installation failed.&lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: Windows Installer 已安裝該產品。產品名稱: Microsoft System Center DPM 保護代理程式。產品版本: 2.0.5820.0。產品語言: 1033。安裝成功或錯誤狀態: 1603。&lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: Cleaning up uninstalled install packages, if any exist&lt;/P&gt;
&lt;P&gt;MSI (s) (24:B4) [16:44:06:980]: MainEngineThread is returning 1603&lt;/P&gt;
&lt;P&gt;MSI (s) (24:F0) [16:44:06:980]: Destroying RemoteAPI object.&lt;/P&gt;
&lt;P&gt;MSI (s) (24:48) [16:44:06:980]: Custom Action Manager thread ending.&lt;/P&gt;
&lt;P&gt;MSI (s) (24:F0) [16:44:06:980]: RESTART MANAGER: Session closed.&lt;/P&gt;
&lt;P&gt;MSI (s) (24:F0) [16:44:06:980]: No System Restore sequence number for this installation.&lt;/P&gt;
&lt;P&gt;=== Logging stopped: 2009/8/28&amp;nbsp; 16:44:06 ===&lt;/P&gt;
&lt;P&gt;MSI (c) (1C:30) [16:44:06:980]: Decrementing counter to disable shutdown. If counter &amp;gt;= 0, shutdown will be denied.&amp;nbsp; Counter after decrement: -1&lt;/P&gt;
&lt;P&gt;MSI (c) (1C:30) [16:44:06:980]: MainEngineThread is returning 1603&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Resolution: &lt;BR&gt;============&lt;/B&gt; &lt;BR&gt;Had stopped the Windows Firewall service and set the service to disabled, once complete the DPM Agent was able to install successfully. &lt;BR&gt;&lt;BR&gt;Please also apply last DPM hotfix 970867. &lt;BR&gt;&lt;A href="http://support.microsoft.com/?Id=970867" mce_href="http://support.microsoft.com/?Id=970867"&gt;http://support.microsoft.com/?Id=970867&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;More Information &lt;BR&gt;==============&lt;/B&gt; &lt;BR&gt;970090 You receive error messages about communication issues on a System Center Data Protection Manager 2007 agent &lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/kb/970090/en-us" mce_href="http://support.microsoft.com/kb/970090/en-us"&gt;http://support.microsoft.com/kb/970090/en-us&lt;/A&gt; &lt;BR&gt;A DPM agent failed to communicate with the DPM service on &amp;lt;&lt;VAR&gt;server&lt;/VAR&gt;&amp;gt; because of a communication error. Make sure that &amp;lt;&lt;VAR&gt;server&lt;/VAR&gt;&amp;gt; is remotely accessible from the computer running the DPM agent. If a firewall is enabled on &amp;lt;&lt;VAR&gt;server&lt;/VAR&gt;&amp;gt;, make sure that it is not blocking requests from the computer running the DPM agent&lt;/P&gt;
&lt;P&gt;947682 The DPM protection agent service cannot start in System Center Data Protection Manager 2007 &lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/kb/947682/en-us" mce_href="http://support.microsoft.com/kb/947682/en-us"&gt;http://support.microsoft.com/kb/947682/en-us&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Data Protection Manager 2007 and protected servers open connections over TCP port 5718 and over TCP port 5719 to enable Data Protection Manager operations, such as synchronization and recovery. The current problem may occur on protected servers that are running the Microsoft Exchange System Attendant service. This service uses TCP ports dynamically. This service may take one or both of the required ports. &lt;BR&gt;Data Protection Manager 2007 also uses the following ports: &lt;/P&gt;
&lt;P&gt;· TCP 135 dynamic &lt;/P&gt;
&lt;P&gt;· User Datagram Protocol (UDP) 53 &lt;/P&gt;
&lt;P&gt;· UDP 88 &lt;/P&gt;
&lt;P&gt;· TCP 88 &lt;/P&gt;
&lt;P&gt;· UDP 137 &lt;/P&gt;
&lt;P&gt;· UDP 138 &lt;/P&gt;
&lt;P&gt;· TCP 139 &lt;/P&gt;
&lt;P&gt;· TCP 389 &lt;/P&gt;
&lt;P&gt;· UDP 389&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3279119" width="1" height="1"&gt;</content><author><name>CSSTWPlatform</name><uri>http://blogs.technet.com/members/CSSTWPlatform.aspx</uri></author><category term="作業系統" scheme="http://blogs.technet.com/csstwplatform/archive/tags/_5C4F6D69FB7C717D_/default.aspx" /></entry></feed>