<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Open Software Solutions</title>
	<atom:link href="http://ossmall.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://ossmall.info</link>
	<description>Open Software Solutions</description>
	<lastBuildDate>Fri, 12 Mar 2010 17:06:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Importing data from a Microsoft Excel 2007 workbook using Visual FoxPro 9.0</title>
		<link>http://ossmall.info/importing-data-from-a-microsoft-excel-2007-workbook-using-visual-foxpro-90/</link>
		<comments>http://ossmall.info/importing-data-from-a-microsoft-excel-2007-workbook-using-visual-foxpro-90/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 17:06:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS Office Excel]]></category>

		<guid isPermaLink="false">http://ossmall.info/importing-data-from-a-microsoft-excel-2007-workbook-using-visual-foxpro-90/</guid>
		<description><![CDATA[You have a Microsoft Excel 2007 workbook (.XLSX). You want to import data from it into a Microsoft Visual FoxPro (VFP) table using VFP.
&#160;
Resolution

There are a number of ways of accomplishing this task:
1. Export the Excel sheet(s) as comma delimited files (.CSV) and use the IMPORT command or the Import Wizard inside VFP to import the file(s).
2. [...]]]></description>
			<content:encoded><![CDATA[<p class="sbody">You have a Microsoft Excel 2007 workbook (.XLSX). You want to import data from it into a Microsoft Visual FoxPro (VFP) table using VFP.</p>
<p class="topOfPage">&nbsp;</p>
<h2 class="subTitle" id="tocHeadRef">Resolution</h2>
<p class="sbody">
<p>There are a number of ways of accomplishing this task:</p>
<p>1. Export the Excel sheet(s) as comma delimited files (.CSV) and use the IMPORT command or the Import Wizard inside VFP to import the file(s).</p>
<p>2. Write custom VFP OLE automation code to automate Excel and extract the data to VFP.</p>
<p>3. Use the Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb) ODBC driver included with the 2007 Office System Driver: Data Connectivity Components package to access and extract data from the Excel workbook, either through a VFP Remote View or programmatically, as in the following sample code:</p>
<p>*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
* AUTHOR: Trevor Hancock<br />
* CREATED: 02/15/08 04:55:31 PM<br />
* ABSTRACT: Code demonstrates how to connect to<br />
* and extract data from an Excel 2007 Workbook<br />
* using the &#8220;Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)&#8221;<br />
* from the 2007 Office System Driver: Data Connectivity Components<br />
*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
LOCAL lcXLBook AS STRING, lnSQLHand AS INTEGER, ;<br />
lcSQLCmd AS STRING, lnSuccess AS INTEGER, ;<br />
lcConnstr AS STRING<br />
CLEAR</p>
<p>lcXLBook = [C:\SampleWorkbook.xlsx]</p>
<p>lcConnstr = [Driver=] + ;<br />
[{Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)};] + ;<br />
[DBQ=] + lcXLBook</p>
<p>IF !FILE( lcXLBook )<br />
? [Excel file not found]<br />
RETURN .F.<br />
ENDIF<br />
*&#8211; Attempt a connection to the .XLSX WorkBook.<br />
*&#8211; NOTE: If the specified workbook is not found,<br />
*&#8211; it will be created by this driver! You cannot rely on a<br />
*&#8211; connection failure &#8211; it will never fail. Ergo, success<br />
*&#8211; is not checked here. Used FILE() instead.<br />
lnSQLHand = SQLSTRINGCONNECT( lcConnstr )</p>
<p>*&#8211; Connect successful if we are here. Extract data&#8230;<br />
lcSQLCmd = [Select * FROM "Sheet1$"]<br />
lnSuccess = SQLEXEC( lnSQLHand, lcSQLCmd, [xlResults] )<br />
? [SQL Cmd Success:], IIF( lnSuccess &gt; 0, &#8216;Good!&#8217;, &#8216;Failed&#8217; )<br />
IF lnSuccess &lt; 0<br />
LOCAL ARRAY laErr[1]<br />
AERROR( laErr )<br />
? laErr(3)<br />
SQLDISCONNECT( lnSQLHand )<br />
RETURN .F.<br />
ENDIF</p>
<p>*&#8211; Show the results<br />
SELECT xlResults<br />
BROWSE NOWAIT<br />
SQLDISCONNECT( lnSQLHand )</p>
<p class="topOfPage">&nbsp;</p>
<h2 class="subTitle" id="tocHeadRef">More Information</h2>
<p class="sbody">The 2007 Office System Driver: Data Connectivity Components package is available for download here:<br />
<span class="ll"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7554F536-8C28-4598-9B72-EF94E038C891&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=7554F536-8C28-4598-9B72-EF94E038C891&amp;displaylang=en</a></span><span class="pLink"> (http://www.microsoft.com/downloads/details.aspx?FamilyID=7554F536-8C28-4598-9B72-EF94E038C891&amp;displaylang=en)</span></p>
<p class="topOfPage">&nbsp;</p>
<h2 class="subTitle" id="tocHeadRef">DISCLAIMER</h2>
<p class="sbody">MICROSOFT AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY, RELIABILITY OR ACCURACY OF THE INFORMATION CONTAINED IN THE DOCUMENTS AND RELATED GRAPHICS PUBLISHED ON THIS WEBSITE (THE “MATERIALS”) FOR ANY PURPOSE. THE MATERIALS MAY INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS AND MAY BE REVISED AT ANY TIME WITHOUT NOTICE.</p>
<p>TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND/OR ITS SUPPLIERS DISCLAIM AND EXCLUDE ALL REPRESENTATIONS, WARRANTIES, AND CONDITIONS WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO REPRESENTATIONS, WARRANTIES, OR CONDITIONS OF TITLE, NON INFRINGEMENT, SATISFACTORY CONDITION OR QUALITY, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE MATERIALS.</p>
<p class="topOfPage">&nbsp;</p>
<hr />
<h5>APPLIES TO</h5>
<table class="list">
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Visual FoxPro 9.0, Professional Edition</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Visual FoxPro 9.0 Service Pack 1</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Visual FoxPro 9.0 Service Pack 2</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Visual FoxPro 8.0 Professional Edition</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Visual FoxPro 7.0 Professional Edition</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Visual FoxPro 7.0 Service Pack 1</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Office Excel 2007</td>
</tr>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/importing-data-from-a-microsoft-excel-2007-workbook-using-visual-foxpro-90/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When you try to access files on a WebDAV site that uses only Digest authentication, the process may fail on a Windows Vista-based computer</title>
		<link>http://ossmall.info/when-you-try-to-access-files-on-a-webdav-site-that-uses-only-digest-authentication-the-process-may-fail-on-a-windows-vista-based-computer-1/</link>
		<comments>http://ossmall.info/when-you-try-to-access-files-on-a-webdav-site-that-uses-only-digest-authentication-the-process-may-fail-on-a-windows-vista-based-computer-1/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 13:51:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS Office Access]]></category>
		<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/when-you-try-to-access-files-on-a-webdav-site-that-uses-only-digest-authentication-the-process-may-fail-on-a-windows-vista-based-computer-1/</guid>
		<description><![CDATA[When you try to access files on a WebDAV site that uses only Digest authentication, the process may fail on a Windows Vista-based computer
View products that this article applies to.



Article ID
:
941850


Last Review
:
May 13, 2008


Revision
:
1.0




On This Page



SYMPTOMS
On a Windows Vista-based computer,  you try to access files on a Web Distributed Authoring and Versioning (WebDAV) site [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>When you try to access files on a WebDAV site that uses only Digest authentication, the process may fail on a Windows Vista-based computer</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>941850</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>May 13, 2008</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.0</td>
</tr>
</table>
</div>
<div class=toc id=tocDiv>
<h5>On This Page</h5>
</div>
<p><noscript></noscript>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>On a Windows Vista-based computer,  you try to access files on a Web Distributed Authoring and Versioning (WebDAV) site that uses only Digest authentication. However, the process may fail after you are prompted three times for your user credentials and password.</p>
<p>If you use a network trace when this problem occurs, the network trace may indicate that the WebDAV server generates a code 401 (Authorization Required) error.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>CAUSE</h2>
<div class=sbody>When the WebDAV client in Windows Vista sends an OPTION request, the client expects an authentication required message back from the WebDAV server. However, some WebDAV servers do not send this message. Therefore, the client is not authenticated.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RESOLUTION</h2>
<div class=sbody>
<h3 id=tocHeadRef>Hotfix information</h3>
<p>A supported hotfix is now available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next service pack that contains this hotfix.</p>
<p>To resolve this problem, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:
<div class=indent><a href=http://go.microsoft.com/?linkid=6294451>http://go.microsoft.com/?linkid=6294451</a><span class=pLink> (http://go.microsoft.com/?linkid=6294451)</span></div>
<p><b>Note</b>  If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:
<div class=indent><a href=http://support.microsoft.com/contactus/?ws=support>http://support.microsoft.com/contactus/?ws=support</a><span class=pLink> (http://support.microsoft.com/contactus/?ws=support)</span></div>
<h4 id=tocHeadRef>Prerequisites</h4>
<p>No prerequisites are required.<br />
<h4 id=tocHeadRef>Restart requirement</h4>
<p>You must restart the computer after you apply this hotfix.<br />
<h4 id=tocHeadRef>Hotfix replacement information</h4>
<p>This hotfix does not replace any other hotfixes.<br />
<h4 id=tocHeadRef>File information</h4>
<p>The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the <strong class=uiterm>Time Zone</strong> tab in the <strong class=uiterm>Date and Time</strong> item in Control Panel.<br />
<h5 id=tocHeadRef>Windows Vista, 32-bit editions</h5>
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
</tr>
<tr>
<td>Package_1_for_kb941850~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,777</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_2_for_kb941850~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>2,163</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_3_for_kb941850~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>2,228</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_4_for_kb941850~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>2,228</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_client_0~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,408</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_client_1~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,641</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_client~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,712</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_server_0~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,408</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_server~31bf3856ad364e35~x86~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,431</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Update.mum</td>
<td>Not Applicable</td>
<td>2,050</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_8b6bbf650365b3f6405082de5a9e0a7b_31bf3856ad364e35_6.0.6001.22170_none_6773a664df1a2ee0.manifest</td>
<td>Not Applicable</td>
<td>1,412</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_8d0a289ff6536d1d2f1c6b04a298c5f7_31bf3856ad364e35_6.0.6001.22170_none_5da8ab231f33eeea.manifest</td>
<td>Not Applicable</td>
<td>709</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_c3992e9833fa67e9bf11d23102ef1b38_31bf3856ad364e35_6.0.6001.22170_none_d6b7a0e7dd737e23.manifest</td>
<td>Not Applicable</td>
<td>1,059</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_dc003fa167f5e5782f3910cabd2aaf8c_31bf3856ad364e35_6.0.6000.20826_none_00a63860366d48fe.manifest</td>
<td>Not Applicable</td>
<td>1,412</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-webdavredir-davclient_31bf3856ad364e35_6.0.6000.20826_none_92612b2e6e411670.manifest</td>
<td>Not Applicable</td>
<td>5,069</td>
<td>01-May-2008</td>
<td>03:35</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-webdavredir-davclient_31bf3856ad364e35_6.0.6001.22170_none_940b56966b959de5.manifest</td>
<td>Not Applicable</td>
<td>5,069</td>
<td>01-May-2008</td>
<td>03:57</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-webdavredir-mrxdav_31bf3856ad364e35_6.0.6000.20826_none_133ea726e1bd8086.manifest</td>
<td>Not Applicable</td>
<td>13,639</td>
<td>01-May-2008</td>
<td>03:32</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-webdavredir-mrxdav_31bf3856ad364e35_6.0.6001.22170_none_14e8d28edf1207fb.manifest</td>
<td>Not Applicable</td>
<td>13,642</td>
<td>01-May-2008</td>
<td>03:55</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-webdavredir-webclient_31bf3856ad364e35_6.0.6000.20826_none_53b98babcfb37f6d.manifest</td>
<td>Not Applicable</td>
<td>6,904</td>
<td>01-May-2008</td>
<td>03:36</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-webdavredir-webclient_31bf3856ad364e35_6.0.6001.22170_none_5563b713cd0806e2.manifest</td>
<td>Not Applicable</td>
<td>6,904</td>
<td>01-May-2008</td>
<td>03:59</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Davclnt.dll</td>
<td>6.0.6000.20826</td>
<td>54,272</td>
<td>01-May-2008</td>
<td>03:16</td>
<td>x86</td>
</tr>
<tr>
<td>Davclnt.dll</td>
<td>6.0.6001.22170</td>
<td>54,272</td>
<td>01-May-2008</td>
<td>03:22</td>
<td>x86</td>
</tr>
<tr>
<td>Mrxdav.sys</td>
<td>6.0.6000.20826</td>
<td>113,152</td>
<td>01-May-2008</td>
<td>00:48</td>
<td>x86</td>
</tr>
<tr>
<td>Mrxdav.sys</td>
<td>6.0.6001.22170</td>
<td>113,152</td>
<td>01-May-2008</td>
<td>00:54</td>
<td>x86</td>
</tr>
<tr>
<td>Webclnt.dll</td>
<td>6.0.6000.20826</td>
<td>196,608</td>
<td>01-May-2008</td>
<td>03:20</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Webclnt.dll</td>
<td>6.0.6001.22170</td>
<td>197,120</td>
<td>01-May-2008</td>
<td>03:28</td>
<td>Not Applicable</td>
</tr>
</table>
<h5 id=tocHeadRef>Windows Vista, 64-bit editions</h5>
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
</tr>
<tr>
<td>Amd64_02d4aa7f877fca746224d0e6224f5dd9_31bf3856ad364e35_6.0.6000.20826_none_cdcce6f0a82c5600.manifest</td>
<td>Not Applicable</td>
<td>2,126</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_5a92aae043892b97816a3ad911023ddd_31bf3856ad364e35_6.0.6001.22170_none_a583e2fb99aec674.manifest</td>
<td>Not Applicable</td>
<td>2,126</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_777c92d38b1a368cb98b9c59592c2d27_31bf3856ad364e35_6.0.6001.22170_none_e6c75e7b7c6a86b1.manifest</td>
<td>Not Applicable</td>
<td>2,478</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_microsoft-windows-webdavredir-davclient_31bf3856ad364e35_6.0.6000.20826_none_ee7fc6b2269e87a6.manifest</td>
<td>Not Applicable</td>
<td>5,087</td>
<td>01-May-2008</td>
<td>03:49</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_microsoft-windows-webdavredir-davclient_31bf3856ad364e35_6.0.6001.22170_none_f029f21a23f30f1b.manifest</td>
<td>Not Applicable</td>
<td>5,087</td>
<td>01-May-2008</td>
<td>04:17</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_microsoft-windows-webdavredir-mrxdav_31bf3856ad364e35_6.0.6000.20826_none_6f5d42aa9a1af1bc.manifest</td>
<td>Not Applicable</td>
<td>13,903</td>
<td>01-May-2008</td>
<td>03:47</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_microsoft-windows-webdavredir-mrxdav_31bf3856ad364e35_6.0.6001.22170_none_71076e12976f7931.manifest</td>
<td>Not Applicable</td>
<td>13,906</td>
<td>01-May-2008</td>
<td>04:14</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_microsoft-windows-webdavredir-webclient_31bf3856ad364e35_6.0.6000.20826_none_afd8272f8810f0a3.manifest</td>
<td>Not Applicable</td>
<td>6,934</td>
<td>01-May-2008</td>
<td>03:51</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_microsoft-windows-webdavredir-webclient_31bf3856ad364e35_6.0.6001.22170_none_b182529785657818.manifest</td>
<td>Not Applicable</td>
<td>6,934</td>
<td>01-May-2008</td>
<td>04:20</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_1_for_kb941850~31bf3856ad364e35~amd64~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>2,860</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_2_for_kb941850~31bf3856ad364e35~amd64~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>2,922</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_3_for_kb941850~31bf3856ad364e35~amd64~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>2,696</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_client_0~31bf3856ad364e35~amd64~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,416</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_client_1~31bf3856ad364e35~amd64~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,375</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_client~31bf3856ad364e35~amd64~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,721</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_server_0~31bf3856ad364e35~amd64~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,416</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Package_for_kb941850_server~31bf3856ad364e35~amd64~~6.0.1.0.mum</td>
<td>Not Applicable</td>
<td>1,438</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Update.mum</td>
<td>Not Applicable</td>
<td>2,064</td>
<td>01-May-2008</td>
<td>23:46</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Wow64_microsoft-windows-webdavredir-mrxdav_31bf3856ad364e35_6.0.6001.22170_none_7b5c1864cbd03b2c.manifest</td>
<td>Not Applicable</td>
<td>8,609</td>
<td>01-May-2008</td>
<td>03:45</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Davclnt.dll</td>
<td>6.0.6000.20826</td>
<td>72,704</td>
<td>01-May-2008</td>
<td>03:26</td>
<td>x64</td>
</tr>
<tr>
<td>Davclnt.dll</td>
<td>6.0.6001.22170</td>
<td>72,704</td>
<td>01-May-2008</td>
<td>03:48</td>
<td>x64</td>
</tr>
<tr>
<td>Mrxdav.sys</td>
<td>6.0.6000.20826</td>
<td>137,216</td>
<td>01-May-2008</td>
<td>01:00</td>
<td>x64</td>
</tr>
<tr>
<td>Mrxdav.sys</td>
<td>6.0.6001.22170</td>
<td>137,216</td>
<td>01-May-2008</td>
<td>01:21</td>
<td>x64</td>
</tr>
<tr>
<td>Webclnt.dll</td>
<td>6.0.6000.20826</td>
<td>214,016</td>
<td>01-May-2008</td>
<td>03:29</td>
<td>x64</td>
</tr>
<tr>
<td>Webclnt.dll</td>
<td>6.0.6001.22170</td>
<td>214,528</td>
<td>01-May-2008</td>
<td>03:53</td>
<td>x64</td>
</tr>
<tr>
<td>Mrxdav.sys</td>
<td>6.0.6001.22170</td>
<td>113,152</td>
<td>01-May-2008</td>
<td>00:54</td>
<td>x86</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>STATUS</h2>
<div class=sbody>Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the Applies to section.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>For more information about software update terminology, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=>824684</a><span class=pLink> (/)</span> Description of the standard terminology that is used to describe Microsoft software updates</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit Edition</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbexpertisebeginner kbexpertiseinter kbbug kbfix kbhotfixserver kbqfe KB941850</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/when-you-try-to-access-files-on-a-webdav-site-that-uses-only-digest-authentication-the-process-may-fail-on-a-windows-vista-based-computer-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Exchange database online maintenance schedule, Information Store maintenance schedule, quota notification schedule, and OAB generation schedule are offset by one hour when DST changes occur</title>
		<link>http://ossmall.info/the-exchange-database-online-maintenance-schedule-information-store-maintenance-schedule-quota-notification-schedule-and-oab-generation-schedule-are-offset-by-one-hour-when-dst-changes-occur/</link>
		<comments>http://ossmall.info/the-exchange-database-online-maintenance-schedule-information-store-maintenance-schedule-quota-notification-schedule-and-oab-generation-schedule-are-offset-by-one-hour-when-dst-changes-occur/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 12:56:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://ossmall.info/the-exchange-database-online-maintenance-schedule-information-store-maintenance-schedule-quota-notification-schedule-and-oab-generation-schedule-are-offset-by-one-hour-when-dst-changes-occur</guid>
		<description><![CDATA[
Article ID: 960975 &#8211; Last Review: December 17, 2008 &#8211; Revision: 1.0
The Exchange database online maintenance schedule, Information Store maintenance schedule, quota notification schedule, and OAB generation schedule are offset by one hour when DST changes occur
View products that this article applies to.

Expand all &#124; Collapse all
SYMPTOMS


On computers that are running Microsoft Exchange Server 2007, [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a>
<div class=articleProperty>Article ID: 960975 &#8211; Last Review: December 17, 2008 &#8211; Revision: 1.0</div>
<p><strong class=title>The Exchange database online maintenance schedule, Information Store maintenance schedule, quota notification schedule, and OAB generation schedule are offset by one hour when DST changes occur</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div id=kb_section class=section>
<div id=kb_expandcollapseall class=expandcollapseall><a >Expand all</a> | <a >Collapse all</a></div>
<h2 class=subTitle id=tocHeadRef><span><a >SYMPTOMS</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>On computers that are running Microsoft Exchange Server 2007, the following schedules are offset by one hour:
<ul>
<li>Exchange database online maintenance</li>
<li>  Information Store (IS) maintenance</li>
<li>Quota notification  </li>
<li>Offline Address Book (OAB) generation  </li>
</ul>
<p> This issue occurs if Exchange servers are configured for time zones that observe daylight saving time (DST).</p></div>
<h2 class=subTitle id=tocHeadRef><span><a >MORE INFORMATION</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>This issue occurs because  these schedules are stored as  bit arrays that  use  Coordinated Universal Time (UTC). The schedules  are not updated to accommodate for DST changes.</p>
<p>This behavior is by design.</p>
<p>Administrators must configure these schedules  to accommodate for DST changes that occur in the time zones in which the Exchange servers are located.</p></div>
</div>
<div class=sbody norollup>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<ul>
<li>Microsoft Exchange Server 2007 Enterprise Edition</li>
<li>Microsoft Exchange Server 2007 Standard Edition</li>
</ul>
</div>
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Ã‚Â                             </h5>
</td>
<td class=text>kbsurveynew kbprb kbexpertiseadvanced kbtshoot KB960975</td>
</tr>
</table>
</div>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/the-exchange-database-online-maintenance-schedule-information-store-maintenance-schedule-quota-notification-schedule-and-oab-generation-schedule-are-offset-by-one-hour-when-dst-changes-occur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2008 Crashes After Installing PowerCommands Add-In</title>
		<link>http://ossmall.info/visual-studio-2008-crashes-after-installing-powercommands-add-in/</link>
		<comments>http://ossmall.info/visual-studio-2008-crashes-after-installing-powercommands-add-in/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 12:56:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS Visual Studio]]></category>
		<category><![CDATA[Visual Help]]></category>

		<guid isPermaLink="false">http://ossmall.info/visual-studio-2008-crashes-after-installing-powercommands-add-in</guid>
		<description><![CDATA[
Article ID: 967679 &#8211; Last Review: February 9, 2009 &#8211; Revision: 1.0
Visual Studio 2008 Crashes After Installing PowerCommands Add-In
View products that this article applies to.

Expand all &#124; Collapse all
Source: Microsoft Support
Back to the top

RAPID PUBLISHING


RAPID PUBLISHING ARTICLES PROVIDE INFORMATION DIRECTLY FROM WITHIN THE MICROSOFT SUPPORT ORGANIZATION.  THE INFORMATION CONTAINED HEREIN IS CREATED IN RESPONSE [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a>
<div class=articleProperty>Article ID: 967679 &#8211; Last Review: February 9, 2009 &#8211; Revision: 1.0</div>
<p><strong class=title>Visual Studio 2008 Crashes After Installing PowerCommands Add-In</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div id=kb_section class=section>
<div id=kb_expandcollapseall class=expandcollapseall><a >Expand all</a> | <a >Collapse all</a></div>
<div class=sbody><b>Source: </b>Microsoft Support
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
</div>
<h2 class=subTitle id=tocHeadRef><span><a >RAPID PUBLISHING</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>RAPID PUBLISHING ARTICLES PROVIDE INFORMATION DIRECTLY FROM WITHIN THE MICROSOFT SUPPORT ORGANIZATION.  THE INFORMATION CONTAINED HEREIN IS CREATED IN RESPONSE TO EMERGING OR UNIQUE TOPICS, OR IS INTENDED SUPPLEMENT OTHER KNOWLEDGE BASE INFORMATION.
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
</div>
<h2 class=subTitle id=tocHeadRef><span><a >Action</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>You are using Visual Studio 2008 with the Visual Studio PowerCommands Add-In installed.
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
</div>
<h2 class=subTitle id=tocHeadRef><span><a >Result</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>When working with Visual Studio, it crashes unexpectedly and you see information similar to the following in the Windows Application event log.</p>
<p>Log Name: Application<br />Source: .NET Runtime<br />Event ID: 1023</p>
<p>.NET Runtime version 2.0.50727.3053 &#8211; Fatal Execution Engine Error (000007FEF671203F) (0)
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
</div>
<h2 class=subTitle id=tocHeadRef><span><a >Cause</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>This is due to a bug in the Common Language Runtime (CLR) when loading assemblies.Ã‚Â In some scenarios, the CLR might rejectÃ‚Â a native image for a particular assembly based on the context it was requested to load in, rather than the context it actually belongs to. This can cause the native image for the assembly to be lost at some point while the process is running. When the CLR detects this condition, it purposely throws the ExecutionEngineException (Fatal Execution Engine Error), which terminates the process.Ã‚Â </p>
<p>In this scenario, System.Core.dll is reuqested by Microsoft.PowerCommands.dll. In certain scenarios,Ã‚Â System.Core.dll loses its native image and is loaded in the wrong context, which results in the crash.
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
</div>
<h2 class=subTitle id=tocHeadRef><span><a >Resolution</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>You can resolve the issue by adding a &lt;dependentAssembly&gt; entry for Microsoft.PowerCommands in the Devenv.exe.config file.</p>
<p>1.Ã‚Â Using Notepad, open the devenv.exe.config file which is situated under  Program Files Visual Studio 9 Common7 IDE folder.<br />2. Locate the &lt;assemblyBinding&gt; element underneath the &lt;runtime&gt; element. You should see a number of &lt;dependentAssembly&gt; elements listed under this.<br />3. Add the following &lt;dependentAssembly&gt; entry at the bottom of the &lt;dependentAssembly&gt; entries.</p>
<p>&lt;dependentAssembly&gt;<br />Ã‚Â Ã‚Â  &lt;assemblyIdentity name=Microsoft.PowerCommands publicKeyToken=nullÃ‚Â culture=neutral/&gt;<br />Ã‚Â Ã‚Â  &lt;codeBase version=1.1.0.0 href=C: Program Files PowerCommands Microsoft.PowerCommands.dll/&gt;<br />&lt;/dependentAssembly&gt;</p>
<p>4. Be sure to place the path to Microsoft.PowerCommands.dll with the path to it on your computer.<br />5. Save the file and close it.<br />6. Restart Visual Studio 2008.
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
</div>
<h2 class=subTitle id=tocHeadRef><span><a >DISCLAIMER</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>MICROSOFT AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY, RELIABILITY OR ACCURACY OF THE INFORMATION CONTAINED IN THE DOCUMENTS AND RELATED GRAPHICS PUBLISHED ON THIS WEBSITE (THE Ã¢â‚¬Å“MATERIALSÃ¢â‚¬Â) FOR ANY PURPOSE. THE MATERIALS MAY INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS AND MAY BE REVISED AT ANY TIME WITHOUT NOTICE.</p>
<p>TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND/OR ITS SUPPLIERS DISCLAIM AND EXCLUDE ALL REPRESENTATIONS, WARRANTIES, AND CONDITIONS WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO REPRESENTATIONS, WARRANTIES, OR CONDITIONS OF TITLE, NON INFRINGEMENT, SATISFACTORY CONDITION OR QUALITY, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE MATERIALS.
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
</div>
</div>
<div class=sbody norollup>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<ul>
<li>Microsoft Visual Studio Team System 2008 Team Suite</li>
<li>Microsoft Visual Studio 2008 Professional Edition</li>
<li>Microsoft Visual Studio 2008 Standard Edition</li>
</ul>
</div>
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Ã‚Â                             </h5>
</td>
<td class=text>kbnomt kbrapidpub KB967679</td>
</tr>
</table>
</div>
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/visual-studio-2008-crashes-after-installing-powercommands-add-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error message when a system service on a Windows Vista-based computer connects to a system service on another Windows Vista-based computer: cannot connect to machine</title>
		<link>http://ossmall.info/error-message-when-a-system-service-on-a-windows-vista-based-computer-connects-to-a-system-service-on-another-windows-vista-based-computer-cannot-connect-to-machine/</link>
		<comments>http://ossmall.info/error-message-when-a-system-service-on-a-windows-vista-based-computer-connects-to-a-system-service-on-another-windows-vista-based-computer-cannot-connect-to-machine/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 11:50:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/error-message-when-a-system-service-on-a-windows-vista-based-computer-connects-to-a-system-service-on-another-windows-vista-based-computer-cannot-connect-to-machine/</guid>
		<description><![CDATA[Error message when a system service on a Windows Vista-based computer connects to a system service on another Windows Vista-based computer: cannot connect to machine
View products that this article applies to.



Article ID
:
934539


Last Review
:
April 23, 2007


Revision
:
1.0



Important This article contains information that shows you how to help lower security settings or how to turn off security features [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>Error message when a system service on a Windows Vista-based computer connects to a system service on another Windows Vista-based computer: cannot connect to machine</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>934539</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>April 23, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.0</td>
</tr>
</table>
</div>
<div class=notice><b>Important</b> This article contains information that shows you how to help lower security settings or how to turn off security features on a computer. You can make these changes to work around a specific problem. Before you make these changes, we recommend that you evaluate the risks that are associated with implementing this workaround in your particular environment. If you implement this workaround, take any appropriate additional steps to help protect the computer.</div>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody> A system service on a Windows Vista-based computer uses named pipes to connect to a  system service on another Windows Vista-based computer. Both services run under the local system account. However, when the system service on the first computer tries to connect to the system service on the second computer, you receive one of the following error messages: </p>
<p><b>Error message 1</b>
<div class=errormsg><var>Server1_name</var>: cannot connect to machine <var>Server2_name</var> (0&#215;00000005)!</div>
<p><b>Error message 2</b>
<div class=errormsg><var>Server1_name</var>: cannot connect to machine <var>Server2_name</var> (0&#215;00000035)!</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>WORKAROUND</h2>
<div class=sbody><b>Warning</b> This workaround may make a computer or a network more vulnerable to attack by malicious users or by malicious software such as viruses. We do not recommend this workaround but are providing this information so that you can implement this workaround at your own discretion. Use this workaround at your own risk.</p>
<p>To resolve this issue, follow these steps on the first computer:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Click <strong class=uiterm>Start </strong><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/VistaStartButton.jpg alt= Start button  title= Start button >, and then type <span class=userInput>policy</span> in the <strong class=uiterm>Start Search</strong> box.</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>Right-click <strong class=uiterm>Local Security Policy</strong>, and then click <strong class=uiterm>Run as administrator</strong>.</td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text>Expand <strong class=uiterm>Local Policies</strong>.</td>
</tr>
<tr>
<td class=number>4.</td>
<td class=text>Click <strong class=uiterm>Security Options</strong>.</td>
</tr>
<tr>
<td class=number>5.</td>
<td class=text>In the Policy list, double-click <strong class=uiterm>Network Access: Named Pipes that can be accessed anonymously</strong>.</td>
</tr>
<tr>
<td class=number>6.</td>
<td class=text>On the <strong class=uiterm>Local Policy Setting</strong> tab, type the name of the second computer. This is the <var>Server2_name</var> name in the error message that you received.  </td>
</tr>
<tr>
<td class=number>7.</td>
<td class=text>Click <strong class=uiterm>OK</strong>.</td>
</tr>
<tr>
<td class=number>8.</td>
<td class=text>Double-click <strong class=uiterm>Network access: Let Everyone permissions apply to anonymous users</strong>.</td>
</tr>
<tr>
<td class=number>9.</td>
<td class=text>Click <strong class=uiterm>Enabled</strong>, and then click <strong class=uiterm>OK</strong>.</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>By default, the <b>Network access: Let Everyone permissions apply to anonymous users</b> policy setting is disabled.</p>
<p>Windows Vista lets anonymous users perform certain activities, such as enumerating the names of domain accounts and the names of network shares. For example,  Windows Vista lets an administrator grant access to users in a trusted domain that does not maintain a reciprocal trust. By default, the Everyone security identifier (SID) is removed from the token that is created for anonymous connections. Therefore, permissions that are granted to the Everyone group do not apply to anonymous users. Anonymous users may access only  those resources for which the anonymous user has been explicitly granted permissions.</p>
<p>By default, the <b>Network access: Named pipes that can be accessed anonymously</b> policy setting is None. This security setting determines whether named pipes have attributes and permissions that enable anonymous access. If the <b>Network access: Named pipes that can be accessed anonymously</b> policy is enabled, the Everyone SID is added to the token that is created for anonymous connections. In this case, an anonymous user  may access any resource for which the Everyone group has been granted permissions.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>REFERENCES</h2>
<div class=sbody>For more information about network persmissions, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=/Feedback.aspx?kbNumber=823659>823659</a><span class=pLink> (/Feedback.aspx?kbNumber=823659/)</span> Client, service, and program incompatibilities that may occur when you modify security settings and user rights assignments </div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business N</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business N 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic N</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic N 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Starter</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbexpertiseinter kbexpertiseadvanced kbtshoot kbprb KB934539</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/error-message-when-a-system-service-on-a-windows-vista-based-computer-connects-to-a-system-service-on-another-windows-vista-based-computer-cannot-connect-to-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When you try to move a public folder in Windows Vista, the Move button may be missing</title>
		<link>http://ossmall.info/when-you-try-to-move-a-public-folder-in-windows-vista-the-move-button-may-be-missing/</link>
		<comments>http://ossmall.info/when-you-try-to-move-a-public-folder-in-windows-vista-the-move-button-may-be-missing/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 11:50:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/when-you-try-to-move-a-public-folder-in-windows-vista-the-move-button-may-be-missing/</guid>
		<description><![CDATA[When you try to move a public folder in Windows Vista, the Move button may be missing
View products that this article applies to.



Article ID
:
933127


Last Review
:
April 9, 2007


Revision
:
1.0



Important This article contains information that shows you how to help lower security settings or how to turn off security features on a computer. You can make these changes [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>When you try to move a public folder in Windows Vista, the Move button may be missing</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>933127</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>April 9, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.0</td>
</tr>
</table>
</div>
<div class=notice><b>Important</b> This article contains information that shows you how to help lower security settings or how to turn off security features on a computer. You can make these changes to work around a specific problem. Before you make these changes, we recommend that you evaluate the risks that are associated with implementing this workaround in your particular environment. If you implement this workaround, take any appropriate additional steps to help protect the computer.</div>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>When you try to move a public folder in Windows Vista, the <strong class=uiterm>Move</strong> button may be missing from the <strong class=uiterm>Location</strong> tab of the folder properties.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>CAUSE</h2>
<div class=sbody>This issue occurs when User Account Control is enabled.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>WORKAROUND</h2>
<div class=sbody><b>Warning</b> This workaround may make a computer or a network more vulnerable to attack by malicious users or by malicious software such as viruses. We do not recommend this workaround but are providing this information so that you can implement this workaround at your own discretion. Use this workaround at your own risk.</p>
<p><b>Note</b> User Account Control (UAC) is a new feature that helps prevent malicious programs, also known as malware, from damaging a system. UAC stops the automatic installation of unauthorized applications. It also prevents unintended changes to system settings. Before you disable UAC, you must disconnect your computer from all networks. This includes the Internet.</p>
<p>To work around this issue, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Log on to Windows Vista as a user who has administrator rights and permissions. </td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text> Click <strong class=uiterm>Start </strong><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/VistaStartButton.jpg alt=Start button  title=Start button >, and then click <strong class=uiterm>Control Panel</strong>. </td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text> Click <strong class=uiterm>User Accounts and Family Safety</strong>, click <strong class=uiterm>User Accounts</strong>, and then click <strong class=uiterm>Turn User Account Control on or off</strong>. </p>
<p><b>Note </b>In some versions of Windows Vista, <strong class=uiterm>User Accounts and Family Safety</strong> does not appear. In this case, click <strong class=uiterm>User Accounts</strong>, click <strong class=uiterm>User Accounts</strong>, and then click <strong class=uiterm>Turn User Account Control on or off</strong>. </p>
<p><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/SecurityShield.jpg alt=User Account Control permission  title=User Account Control permission >If you are prompted for an administrator password or for confirmation, type your password, or click <strong class=uiterm>Continue</strong>. </td>
</tr>
<tr>
<td class=number>4.</td>
<td class=text> Click to clear the <strong class=uiterm>Use User Account Control (UAC) to help protect your computer</strong> check box. </td>
</tr>
<tr>
<td class=number>5.</td>
<td class=text> Click <strong class=uiterm>OK</strong>. </td>
</tr>
<tr>
<td class=number>6.</td>
<td class=text>When you are prompted, restart the computer. </td>
</tr>
<tr>
<td class=number>7.</td>
<td class=text>Right-click the public folder that you want to move, and then click <strong class=uiterm>Properties</strong>.</td>
</tr>
<tr>
<td class=number>8.</td>
<td class=text>On the <strong class=uiterm>Location</strong> tab, click <strong class=uiterm>Move</strong>.</td>
</tr>
<tr>
<td class=number>9.</td>
<td class=text>Select the new location, and then click <strong class=uiterm>Select Folder</strong>.</td>
</tr>
<tr>
<td class=number>10.</td>
<td class=text>Click <strong class=uiterm>OK</strong>.</td>
</tr>
<tr>
<td class=number>11.</td>
<td class=text> Click <strong class=uiterm>Start </strong><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/VistaStartButton.jpg alt=Start button  title=Start button >, and then click <strong class=uiterm>Control Panel</strong>. </td>
</tr>
<tr>
<td class=number>12.</td>
<td class=text> Click <strong class=uiterm>User Accounts and Family Safety</strong>, click <strong class=uiterm>User Accounts</strong>, and then click <strong class=uiterm>Turn User Account Control on or off</strong>. </p>
<p><b>Note </b>In some versions of Windows Vista, <strong class=uiterm>User Accounts and Family Safety</strong> does not appear. In this case, click <strong class=uiterm>User Accounts</strong>, click <strong class=uiterm>User Accounts</strong>, and then click <strong class=uiterm>Turn User Account Control on or off</strong>. </p>
<p><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/SecurityShield.jpg alt=User Account Control permission  title=User Account Control permission >If you are prompted for an administrator password or for confirmation, type your password, or click <strong class=uiterm>Continue</strong>. </td>
</tr>
<tr>
<td class=number>13.</td>
<td class=text> Click to select the <strong class=uiterm>Use User Account Control (UAC) to help protect your computer</strong> check box. </td>
</tr>
<tr>
<td class=number>14.</td>
<td class=text> Click <strong class=uiterm>OK</strong>. </td>
</tr>
<tr>
<td class=number>15.</td>
<td class=text>When you are prompted, restart the computer. </td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business N</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business N 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic N</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic N 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Starter</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbexpertisebeginner kbtshoot kbprb KB933127</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/when-you-try-to-move-a-public-folder-in-windows-vista-the-move-button-may-be-missing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A blank clip art image is inserted in a Works Word Processor document when the Japanese version of Works 8.0 is installed on a Windows Vista Beta 2-based computer</title>
		<link>http://ossmall.info/a-blank-clip-art-image-is-inserted-in-a-works-word-processor-document-when-the-japanese-version-of-works-80-is-installed-on-a-windows-vista-beta-2-based-computer/</link>
		<comments>http://ossmall.info/a-blank-clip-art-image-is-inserted-in-a-works-word-processor-document-when-the-japanese-version-of-works-80-is-installed-on-a-windows-vista-beta-2-based-computer/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 11:50:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/a-blank-clip-art-image-is-inserted-in-a-works-word-processor-document-when-the-japanese-version-of-works-80-is-installed-on-a-windows-vista-beta-2-based-computer/</guid>
		<description><![CDATA[A blank clip art image is inserted in a Works Word Processor document when the Japanese version of Works 8.0 is installed on a Windows Vista Beta 2-based computer
View products that this article applies to.



Article ID
:
920724


Last Review
:
May 10, 2007


Revision
:
2.2




SYMPTOMS
Consider the following scenario:


â€¢
You have the Japanese version of  Microsoft Works 8.0 installed on  a [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>A blank clip art image is inserted in a Works Word Processor document when the Japanese version of Works 8.0 is installed on a Windows Vista Beta 2-based computer</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>920724</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>May 10, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>2.2</td>
</tr>
</table>
</div>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>Consider the following scenario:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>You have the Japanese version of  Microsoft Works 8.0 installed on  a  Windows Vista-based computer.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>You try to insert clip art in a Microsoft Works Word Processor document in Works 8.0.</td>
</tr>
</table>
<p>  In this scenario,  a blank clip art image is inserted in the Works Word Processor document.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RESOLUTION</h2>
<div class=sbody>To resolve this problem,  download and then install the Microsoft Works 8.5 security update for Works 8.0.</p>
<p> For more information about the Works 8.5 security update, visit the following Microsoft Web site:
<div class=indent><a href=http://www.microsoft.com/products/works/international/Update_1020.mspx>http://www.microsoft.com/products/works/international/Update_1020.mspx</a><span class=pLink> (http://www.microsoft.com/products/works/international/Update_1020.mspx)</span></div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>To insert clip art in  a Works Word Processor document, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Click <strong class=uiterm>Start</strong>, point to <strong class=uiterm>All Programs</strong>, point to <strong class=uiterm>Microsoft Works</strong>, and then click <strong class=uiterm>Microsoft Works Word Processor</strong>.</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>On the <strong class=uiterm>Insert</strong> menu, point to <strong class=uiterm>Picture</strong>, and then click <strong class=uiterm>Clip Art</strong>.</td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text>Select the  clip art image that you want, and then click <strong class=uiterm>Insert</strong>.</td>
</tr>
</table>
<p><b>Note</b> When you insert clip art in a Works Word Processor document in Works 8.0, the clip art collection appears. You can then select and insert the clip art image that you want.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Starter</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit Edition</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbtshoot KB920724</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/a-blank-clip-art-image-is-inserted-in-a-works-word-processor-document-when-the-japanese-version-of-works-80-is-installed-on-a-windows-vista-beta-2-based-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error message when you try to run the BitLocker Drive Encryption program: Cannot run</title>
		<link>http://ossmall.info/error-message-when-you-try-to-run-the-bitlocker-drive-encryption-program-cannot-run/</link>
		<comments>http://ossmall.info/error-message-when-you-try-to-run-the-bitlocker-drive-encryption-program-cannot-run/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 11:49:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple Products]]></category>
		<category><![CDATA[Application Center]]></category>
		<category><![CDATA[MS Office Access]]></category>
		<category><![CDATA[MS Office Visio]]></category>
		<category><![CDATA[Microsoft .NET Framework]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/error-message-when-you-try-to-run-the-bitlocker-drive-encryption-program-cannot-run/</guid>
		<description><![CDATA[Error message when you try to run the BitLocker Drive Encryption program: Cannot run
View products that this article applies to.



Article ID
:
929834


Last Review
:
October 26, 2007


Revision
:
1.4




SYMPTOMS
When you try to run the BitLocker Drive Encryption program, you receive  the following error message in a BitLocker Drive Encryption Error dialog box:
Cannot run.The path specified in the Boot Configuration [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>Error message when you try to run the BitLocker Drive Encryption program: Cannot run</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>929834</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>October 26, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.4</td>
</tr>
</table>
</div>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>When you try to run the BitLocker Drive Encryption program, you receive  the following error message in a <strong class=uiterm>BitLocker Drive Encryption Error</strong> dialog box:
<div class=errormsg><b>Cannot run.</b><br />The path specified in the Boot Configuration Data (BCD) for a BitLocker Drive Encryption integrity-protected application is incorrect.  Please verify and correct your BCD settings and try again.</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>CAUSE</h2>
<div class=sbody>This problem occurs if one of the following entries in the Boot Configuration Data (BCD) store points to the incorrect partition:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Boot Manager</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Memory Tester</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Resume from Hibernate</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RESOLUTION</h2>
<div class=sbody>To resolve this problem, edit the following BCD entries:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Boot Manager <br />Set this entry to point to the system partition.  To do this, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text> Click Start   <img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/VistaStartButton.jpg alt=the Start button title=the Start button>   , click <strong class=uiterm>All Programs</strong>, click <strong class=uiterm>Accessories</strong>, right-click <strong class=uiterm>Command Prompt</strong>, and then click <strong class=uiterm>Run as administrator</strong>.   </p>
<p><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/SecurityShield.jpg alt=User Account Control permission title=User Account Control permission>   If you are prompted for an administrator password or for confirmation, type your password or click <strong class=uiterm>Continue</strong>.</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>At the command prompt, type <span class=userInput>bcdedit -set {bootmgr} device partition=<var>S:</var></span></p>
<p><b>Note</b> In this command, <var>S:</var> represents the drive letter for the system partition.</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Memory Tester <br />Set this entry to  point to the system partition.  To do this, type the following command at the elevated command prompt:
<div class=indent><span class=userInput>bcdedit -set {memdiag} device partition=<var>S:</var></span></p>
<p><b>Note</b> In this command, <var>S:</var> represents the drive letter for the system partition.</div>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Resume from Hibernate <br />Set this entry to  point to the operating system partition. This partition is also known as the boot partition.  To do this, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>At the elevated command prompt, type <span class=userInput>bcdedit -enum all</span>.  </p>
<p>Note the <strong class=uiterm>identifier</strong> value for the <strong class=uiterm>Resume from Hibernate</strong> entry.</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>At the elevated command prompt, type <span class=userInput>bcdedit -set {<var>identifier</var>} device partition=<var>C:</var></span>.</p>
<p><b>Note</b> In this command,  <var>identifier</var> represents the <strong class=uiterm>identifier</strong> value for the <strong class=uiterm>Resume from Hibernate</strong> entry in step 1 of this procedure. Also, <var>C:</var> represents the drive letter for the boot partition.</td>
</tr>
</table>
</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>STATUS</h2>
<div class=sbody>Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the Applies to section.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>For more information about BitLocker, visit the following Microsoft Web sites:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Resources for IT Professionals &#8211; BitLocker Drive Encryption
<div class=indent><a href=http://technet.microsoft.com/en-us/windowsvista/aa905065.aspx>http://technet.microsoft.com/en-us/windowsvista/aa905065.aspx</a><span class=pLink> (http://technet.microsoft.com/en-us/windowsvista/aa905065.aspx)</span></div>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>BitLocker Drive Encryption: Executive Overview
<div class=indent><a href=http://technet.microsoft.com/en-us/windowsvista/aa906018.aspx>http://technet.microsoft.com/en-us/windowsvista/aa906018.aspx</a><span class=pLink> (http://technet.microsoft.com/en-us/windowsvista/aa906018.aspx)</span></div>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows BitLocker Drive Encryption Step-by-Step Guide
<div class=indent><span class=ll><a href=http://technet2.microsoft.com/WindowsVista/en/library/c61f2a12-8ae6-4957-b031-97b4d762cf311033.mspx>http://technet2.microsoft.com/WindowsVista/en/library/c61f2a12-8ae6-4957-b031-97b4d762cf311033.mspx</a></span><span class=pLink> (http://technet2.microsoft.com/WindowsVista/en/library/c61f2a12-8ae6-4957-b031-97b4d762cf311033.mspx)</span></div>
</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit Edition</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbtshoot kbprb KB929834</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/error-message-when-you-try-to-run-the-bitlocker-drive-encryption-program-cannot-run/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Private folders are unexpectedly visible after you assign delegate permissions in Entourage 2008 for Mac</title>
		<link>http://ossmall.info/private-folders-are-unexpectedly-visible-after-you-assign-delegate-permissions-in-entourage-2008-for-mac/</link>
		<comments>http://ossmall.info/private-folders-are-unexpectedly-visible-after-you-assign-delegate-permissions-in-entourage-2008-for-mac/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 10:49:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://ossmall.info/private-folders-are-unexpectedly-visible-after-you-assign-delegate-permissions-in-entourage-2008-for-mac/</guid>
		<description><![CDATA[
After you assign delegate permissions for a Microsoft Exchange account in Microsoft Entourage 2008 for Mac to another Exchange account, private folders that have the Permission Level set to None are visible to the delegate Exchange account. The contents of these folders are still private. Only the private folders themselves are visible in the Folder [...]]]></description>
			<content:encoded><![CDATA[<p class="section">
<p class="sbody">After you assign delegate permissions for a Microsoft Exchange account in Microsoft Entourage 2008 for Mac to another Exchange account, private folders that have the <strong class="uiterm">Permission Level</strong> set to <strong class="uiterm">None</strong> are visible to the delegate Exchange account. The contents of these folders are still private. Only the private folders themselves are visible in the Folder list.</p>
<p class="topOfPage"><a href="http://kbalertz.com/948777/Private-folders-unexpectedly-visible-after-assign-delegate-permissions-Entourage.aspx#top"><br />
</a></p>
<h2 class="subTitle" id="tocHeadRef">CAUSE</h2>
<p class="sbody">This problem occurs if the Exchange account is located on a server that is running Microsoft Exchange Server 2007 that has Microsoft Exchange Server 2007 Service Pack 1 (SP1) installed on it. Exchange Server 2007 SP1 incorrectly sets the visible property for folders on the Exchange Server account.</p>
<p class="topOfPage"><a href="http://kbalertz.com/948777/Private-folders-unexpectedly-visible-after-assign-delegate-permissions-Entourage.aspx#top"><br />
</a></p>
<h2 class="subTitle" id="tocHeadRef">WORKAROUND</h2>
<p class="sbody">To work around this problem, follow these steps:</p>
<table class="list ol">
<tr>
<td class="number">1.</td>
<td class="text">After you assign the delegate permissions, right-click each folder in the Folder list that should not be visible to the delegate, and then click <strong class="uiterm">Sharing</strong>.</td>
</tr>
<tr>
<td class="number">2.</td>
<td class="text">Click the <strong class="uiterm">Permission</strong> tab.</td>
</tr>
<tr>
<td class="number">3.</td>
<td class="text">In the list of accounts, select the delegate&#8217;s name.</td>
</tr>
<tr>
<td class="number">4.</td>
<td class="text">Click to clear the <strong class="uiterm">Folder Visible</strong> check box.</td>
</tr>
<tr>
<td class="number">5.</td>
<td class="text">Click <strong class="uiterm">OK</strong>.</td>
</tr>
</table>
<p class="topOfPage"><a href="http://kbalertz.com/948777/Private-folders-unexpectedly-visible-after-assign-delegate-permissions-Entourage.aspx#top"><br />
</a></p>
<h2 class="subTitle" id="tocHeadRef">STATUS</h2>
<p class="sbody">Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the &#8220;Applies to&#8221; section.</p>
<p class="topOfPage"><a href="http://kbalertz.com/948777/Private-folders-unexpectedly-visible-after-assign-delegate-permissions-Entourage.aspx#top"><br />
</a></p>
<h2 class="subTitle" id="tocHeadRef">MORE INFORMATION</h2>
<p class="sbody">A fix for this problem is scheduled to be included in a future Microsoft Exchange Server 2007 Service Pack 1 (SP1) rollup.</p>
<hr />
<h5>APPLIES TO</h5>
<table class="list">
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Entourage 2008 for Mac</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Exchange Server 2007 Service Pack 1</td>
</tr>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/private-folders-are-unexpectedly-visible-after-you-assign-delegate-permissions-in-entourage-2008-for-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2007 does not send out meeting cancellations if you remove all invited attendees from a previously created appointment</title>
		<link>http://ossmall.info/outlook-2007-does-not-send-out-meeting-cancellations-if-you-remove-all-invited-attendees-from-a-previously-created-appointment/</link>
		<comments>http://ossmall.info/outlook-2007-does-not-send-out-meeting-cancellations-if-you-remove-all-invited-attendees-from-a-previously-created-appointment/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 06:03:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS Office Outlook]]></category>

		<guid isPermaLink="false">http://ossmall.info/outlook-2007-does-not-send-out-meeting-cancellations-if-you-remove-all-invited-attendees-from-a-previously-created-appointment/</guid>
		<description><![CDATA[Outlook 2007 does not send out meeting cancellations if you remove all invited attendees from a previously created appointment
View products that this article applies to.



Article ID
:
954284


Last Review
:
June 26, 2008


Revision
:
1.0




On This Page



SYMPTOMS
In Microsoft Office Outlook 2007, if you remove all invited		  attendees from the To field in a previously created		  appointment, you receive the [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>Outlook 2007 does not send out meeting cancellations if you remove all invited attendees from a previously created appointment</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>954284</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>June 26, 2008</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.0</td>
</tr>
</table>
</div>
<div class=toc id=tocDiv>
<h5>On This Page</h5>
</div>
<p><noscript></noscript>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>In Microsoft Office Outlook 2007, if you remove all invited		  attendees from the <strong class=uiterm>To</strong> field in a previously created		  appointment, you receive the following message:
<div class=message>This meeting cannot be sent because there are no recipient		  names in the <strong class=uiterm>To</strong> box. Would you like to save and close this		  meeting instead?</div>
<p> If you click <strong class=uiterm>Yes</strong> in the		  message, the meeting page closes and saves the meeting. However, Outlook does		  not send out meeting cancellations to the attendees.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>CAUSE</h2>
<div class=sbody>This issue occurs because Outlook cannot send meeting cancellations to attendees when there are no recipients in the <strong class=uiterm>To</strong>		  field.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>WORKAROUND</h2>
<div class=sbody>To work around this issue, use one of the following methods.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<h3 id=tocHeadRef>Method 1</h3>
<p> Cancel the meeting without saving it in the organizer&#8217;s Calendar		  folder. To do this, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Open the meeting in the organizer&#8217;s Calendar				folder.</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text> On the <strong class=uiterm>Recurring Meeting</strong> tab, click				<strong class=uiterm>Cancel Meeting</strong> in the <strong class=uiterm>Actions</strong> group. This				sends meeting cancellations to the attendees and removes the meeting from				organizer&#8217;s Calendar folder. </td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<h3 id=tocHeadRef>Method 2</h3>
<p> Remove attendees from the meeting, but save the meeting in		  organizer&#8217;s Calendar folder. To do this, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Open the meeting in the organizer&#8217;s Calendar folder.				</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>On the <strong class=uiterm>Recurring Meeting</strong> tab, click				<strong class=uiterm>Scheduling Assistant</strong> in the <strong class=uiterm>Show</strong> group. This				opens a page that has a list of all the attendees and the organizer. </td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text>Under <strong class=uiterm>All Attendees</strong>, click to clear the				check boxes next to all the attendees. </td>
</tr>
<tr>
<td class=number>4.</td>
<td class=text> Click <strong class=uiterm>Send</strong>. Meeting cancellations will be				sent to all attendees. Also, the organizer can save this meeting in the				Calendar folder. </td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Microsoft Office Outlook 2007</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbcalendar kbtshoot kbexpertisebeginner kbprb KB954284</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/outlook-2007-does-not-send-out-meeting-cancellations-if-you-remove-all-invited-attendees-from-a-previously-created-appointment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Bootcfg command and its uses</title>
		<link>http://ossmall.info/the-bootcfg-command-and-its-uses/</link>
		<comments>http://ossmall.info/the-bootcfg-command-and-its-uses/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 21:18:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/the-bootcfg-command-and-its-uses/</guid>
		<description><![CDATA[The bootcfg command is a Microsoft Windows XP Recovery Console command that manipulates the Boot.ini file. This command has a function that can scan your hard disks for Microsoft Windows NT 4.0, Microsoft Windows 2000, and Windows XP installations, and then add them to an existing Boot.ini file. The function can also rebuild a new [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>bootcfg</strong> command is a Microsoft Windows XP Recovery Console command that manipulates the Boot.ini file. This command has a function that can scan your hard disks for Microsoft Windows NT 4.0, Microsoft Windows 2000, and Windows XP installations, and then add them to an existing Boot.ini file. The function can also rebuild a new Boot.ini file if one does not exist. With the <strong>bootcfg</strong> command, additional Boot.ini file parameters can be added to existing or new entries.</p>
<p>To use the <strong>bootcfg</strong> command, start the Recovery Console with the Windows XP CD-ROM, and then click <strong>Recovery Console</strong>. Or, install the Recovery Console locally, and then select the command from the <strong>Boot</strong> menu.</p>
<p>The <strong>bootcfg</strong> command has the following uses:</p>
<table border="1" cellpadding="0">
<tr>
<td></td>
<td>The <strong>bootcfg /default</strong> command sets the default   operating system option in the <strong>Boot</strong> menu. The command   selects the operating system entry automatically.</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /add</strong> command scans the computer for   Windows NT 4.0, Windows 2000, or Windows XP (if it is dual booting) installations,   and then displays the results. From this location, you can add an   installation to the <strong>Boot</strong> menu.You may receive a message that is similar to the following message:</p>
<p>Scanning all disks for Windows Installations<br />
Please wait, since this may take a while&#8230;</p>
<p>Total Identified Windows Installs: 2</p>
<p>[1] C:\Windows<br />
[2] D:\Windows</p>
<p>Select installation to add: (select a number)</p>
<p>Enter Load Identifier: (Custom description for an operating system loading   from the Boot menu)<br />
Enter Operating System Load Options: (that is: /fastdetect)</p>
<p>This process adds a new entry in the <strong>Boot</strong>   menu. When you add an installation, the <strong>bootcfg</strong> command also makes the   installation the default operating system boot entry.</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /rebuild</strong> command scans the hard disks   of the computer for Windows NT 4.0, Windows 2000, or Windows XP   installations, and then displays the results. You can add the detected   Windows installations.You may receive a message that is similar to the following message:</p>
<p>Total Identified Windows Installs: 2</p>
<p>[1] C:\Windows<br />
Add installation to boot list? (Yes/No/All):<br />
Enter Load Identifier: (Custom description for an operating system loading   from the Boot menu)<br />
Enter Operating System Load Options: (that is: /fastdetect)</p>
<p>[2] D:\Windows<br />
Add installation to boot list? (Yes/No/All):<br />
Enter Load Identifier: (Custom description for an operating system loading   from the Boot menu)<br />
Enter Operating System Load Options: (that is: /fastdetect)</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /scan</strong> command scans the hard disks of   the computer for Windows NT 4.0, Windows 2000 or Windows XP installations,   and then displays the results.You may receive a message that is similar to the following message:</p>
<p>Scanning all disks for Windows Installations<br />
Please wait, since this may take a while&#8230;</p>
<p>Total Identified Windows Installs: 2</p>
<p>[1] C:\Windows<br />
[2] D:\Windows</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /list</strong> command reads the Boot.ini file,   and then displays the operating system identifier, the operating system load   options, and the operating system location (path).You may receive a message that is similar to the following message:</p>
<p>Total entries in boot list: 2</p>
<p>[1] Microsoft Windows Whistler Professional<br />
Operating System Load Options: /fastdetect<br />
Operating System Location: D:\Windows</p>
<p>[2] Microsoft Windows Whistler Server<br />
Operating System Load Options: /fastdetect<br />
Operating System Location: C:\Windows</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /redirect</strong> command enables redirection   in the boot loader with the configuration specified as port and baudrate.   This command is used to turn on the Headless Administration feature.The following example uses this command:</p>
<p><strong>bootcfg /redirect com1 115200</strong><br />
<strong>bootcfg /redirect useBiosSettings</strong></td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /disableredirect</strong> command disables   redirection in the boot loader with the configuration specified as port and   baudrate. This command is used to turn off the Headless Administration   feature.</td>
</tr>
</table>
<p>You can also modify the Boot.ini file in the Windows XP graphical user interface (GUI):</p>
<table border="1" cellpadding="0">
<tr>
<td>1.</td>
<td>Click <strong>Start</strong>, click <strong>Control Panel</strong>,   click <strong>Performance and Maintenance</strong>, and then click <strong>System</strong>.</td>
</tr>
<tr>
<td>2.</td>
<td>On the <strong>Advanced</strong> tab, click <strong>Startup   and Recovery</strong>, and then click <strong>Settings</strong>.</td>
</tr>
<tr>
<td>3.</td>
<td>Under <strong>System Startup</strong>, click <strong>Edit</strong>.</td>
</tr>
<tr>
<td>4.</td>
<td>Save your changes, and then click <strong>OK</strong>.</td>
</tr>
<tr>
<td>5.</td>
<td>Click <strong>Start</strong>, click <strong>Run</strong>,   and then type msconfig to start the System   Configuration utility.</td>
</tr>
<tr>
<td>6.</td>
<td>Click the <strong>Boot.ini</strong> tab.</td>
</tr>
</table>
<hr align="center" size="2" width="100%" />
<h5>APPLIES TO</h5>
<table border="0" cellpadding="0">
<tr>
<td></td>
<td>Microsoft Windows XP Home Edition</td>
</tr>
<tr>
<td></td>
<td>Microsoft Windows XP Professional</td>
</tr>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<p><o:p> </o:p></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/the-bootcfg-command-and-its-uses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Cut, Copy, and Paste  buttons to the Toolbar</title>
		<link>http://ossmall.info/add-cut-copy-and-paste-buttons-to-the-toolbar/</link>
		<comments>http://ossmall.info/add-cut-copy-and-paste-buttons-to-the-toolbar/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 15:35:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Explorer 7]]></category>

		<guid isPermaLink="false">http://ossmall.info/add-cut-copy-and-paste-buttons-to-the-toolbar/</guid>
		<description><![CDATA[1. Right-click on a blank area of the toolbar.
2. Select Customize Command Bar
3. Select Add or Remove Commands
4. Move the buttons you want from the left column to the right column
(select the ones you need)
5. Press Close when done.
Related Articles or Pages]]></description>
			<content:encoded><![CDATA[<p>1. Right-click on a blank area of the toolbar.<br />
2. Select <span style="font-weight: bold">Customize Command Bar</span><br />
3. Select <span style="font-weight: bold">Add or Remove Commands</span><br />
4. Move the buttons you want from the left column to the right column</p>
<p>(select the ones you need)</p>
<p>5. Press <span style="font-weight: bold">Close</span> when done.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/add-cut-copy-and-paste-buttons-to-the-toolbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Forms Application Crashes When Calling ToolTip.SetToolTip Method for Associated TreeView control</title>
		<link>http://ossmall.info/windows-forms-application-crashes-when-calling-tooltipsettooltip-method-for-associated-treeview-control/</link>
		<comments>http://ossmall.info/windows-forms-application-crashes-when-calling-tooltipsettooltip-method-for-associated-treeview-control/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 13:04:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Application Center]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/windows-forms-application-crashes-when-calling-tooltipsettooltip-method-for-associated-treeview-control/</guid>
		<description><![CDATA[Windows Forms Application Crashes When Calling ToolTip.SetToolTip Method for Associated TreeView control
View products that this article applies to.



Article ID
:
953102


Last Review
:
May 13, 2008


Revision
:
1.1




Source: Microsoft Support
Back to the top

RAPID PUBLISHING
RAPID PUBLISHING ARTICLES PROVIDE INFORMATION DIRECTLY FROM WITHIN THE MICROSOFT SUPPORT ORGANIZATION.  THE INFORMATION CONTAINED HEREIN IS CREATED IN RESPONSE TO EMERGING OR UNIQUE TOPICS, OR IS [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>Windows Forms Application Crashes When Calling ToolTip.SetToolTip Method for Associated TreeView control</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>953102</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>May 13, 2008</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.1</td>
</tr>
</table>
</div>
<div class=section>
<div class=sbody><b>Source: </b>Microsoft Support
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RAPID PUBLISHING</h2>
<div class=sbody>RAPID PUBLISHING ARTICLES PROVIDE INFORMATION DIRECTLY FROM WITHIN THE MICROSOFT SUPPORT ORGANIZATION.  THE INFORMATION CONTAINED HEREIN IS CREATED IN RESPONSE TO EMERGING OR UNIQUE TOPICS, OR IS INTENDED SUPPLEMENT OTHER KNOWLEDGE BASE INFORMATION.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>Action</h2>
<div class=sbody>You have developed a Microsoft .NET Framework 2.0 Windows Forms application which contains a ToolTip control and a Treeview control. The application calls the ToolTip controlâ€™s SetToolTip method multiple times, for example, in the MouseMove event of the TreeView Control; and passes the Treeview control as the first parameter to the SetToolTip method.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>Result</h2>
<div class=sbody>
<p>When hovering the mouse over a Node in the TreeView control, the ToolTip may not display all the text specified in the SetToolTip method. When exiting the application, you may also receive the following error:</p>
<p>Unhandled exception has occurred in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately.</p>
<p>Attempted to read or write protected memory. This is often an indication that other memory is corrupt.</p>
<p>System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.<br />Â Â  at System.Environment.GetResourceFromDefault(String key)<br />Â Â  at System.ObjectDisposedException..ctor(String objectName)<br />Â Â  at System.Windows.Forms.Control.DestroyHandle()<br />Â Â  at System.Windows.Forms.Control.Dispose(Boolean disposing)<br />Â Â  at System.Windows.Forms.Form.Dispose(Boolean disposing)<br />Â Â  at WindowsFormsApplication1.Form1.Dispose(Boolean disposing) in C: Projects WindowsFormsApplication1 WindowsFormsApplication1 Form1.Designer.cs:line 20<br />Â Â  at System.ComponentModel.Component.Dispose()<br />Â Â  at System.Windows.Forms.Form.WmClose(Message&amp; m)<br />Â Â  at System.Windows.Forms.Form.WndProc(Message&amp; m)<br />Â Â  at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp; m)<br />Â Â  at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp; m)<br />Â Â  at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)</p>
<p>If you are debugging the application in Visual Studio, you may receive the following MDA error when exiting instead of the System.AccessViolationException above.Â </p>
<p>FatalExecutionEngineError was detected</p>
<p>The runtime has encountered a fatal error. The address of the error was at &lt;address&gt;, on thread &lt;thread&gt;. The error code is 0xc0000005. This error may be a bug in the CLR or in the unsafe or non-verifiable portions of user code. Common sources of this bug include user marshaling errors for COM-interop or PInvoke, which may corrupt the stack.</p>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>Cause</h2>
<div class=sbody>The TreeView control&#8217;s ShowNodeToolTips property is set to True to enable built-in tooltips for the nodes in the TreeView control. This conflicts with the tooltip being created by the ToolTip control&#8217;s SetToolTip method.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>Resolution</h2>
<div class=sbody>
<p>You can use one of the following solutions to work around this problem.</p>
<p>1. Set the TreeView control&#8217;s ShowNodeToolTips propertyÂ to False. This is the easiest solution if the intent is to use the ToolTip control for displaying ToolTips instead of theÂ TreeView control&#8217;s built-in Node ToolTips (the ToolTip control has some additional features not exposed by the TreeView control&#8217;s ToolTip implementation).</p>
<p>2. Alternatively, you can remove the call to the ToolTip control&#8217;s SetToolTip method, and use the TreeView control&#8217;s built-in ToolTips. To do this, you must make sure that the TreeView control&#8217;s ShowNodeToolTips property is set to True, and that you have setÂ each TreeNode&#8217;s ToolTipText property to the desired value.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>More Information</h2>
<div class=sbody>
<p>STEPS TO REPRODUCE <br />====================</p>
<p>1. Using Visual Studio 2005 or Visual Studio 2008, create a new C# Windows Forms application.<br />2. Add a TreeView control to the form named treeView1.<br />3. Set the TreeView control&#8217;s ShowNodeToolTips property to True.<br />4. Add a ToolTip control to the form named toolTip1.<br />5. Add the following code to the form&#8217;s Load event handler:</p>
<p>Â  private void Form1_Load(object sender, EventArgs e)<br />Â Â Â Â Â Â Â  {<br />Â Â Â Â Â Â Â Â Â Â Â  for (int i = 0; i &lt; 10; i++)<br />Â Â Â Â Â Â Â Â Â Â Â  {<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  TreeNode newNode = new TreeNode();<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  newNode.Text = test node  + i.ToString();<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  newNode.Tag = i.ToString();<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  treeView1.Nodes.Add(newNode);<br />Â Â Â Â Â Â Â Â Â Â Â  }<br />Â Â Â Â Â Â Â  }</p>
<p>6. Add the following code to the MouseMove event handler of the TreeView control:</p>
<p>Â  private void treeView1_MouseMove(object sender, MouseEventArgs e)<br />Â Â Â Â Â Â Â  {<br />Â Â Â Â Â Â Â Â Â Â Â  TreeView tv = sender as TreeView;<br />Â Â Â Â Â Â Â Â Â Â Â  if (tv != null)<br />Â Â Â Â Â Â Â Â Â Â Â  {<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  TreeNode tn = tv.GetNodeAt(new Point(e.X, e.Y));<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  if (tn != null)<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  {<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  this.toolTip1.SetToolTip(tv, tn.Text);<br />Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  }<br />Â Â Â Â Â Â Â Â Â Â Â  }<br />Â Â Â Â Â Â Â  }</p>
<p>7. Build the application and run it.<br />8. Hover the mouse over several nodes in the TreeView control.<br />9. Close the form to exit the application.</p>
<p>You should receive one of the errors listed in the Result section above.</p>
<p>When running the application under a native code debugger, you may also see an Access Violation occurring in the following call stack.</p>
<p>mscorlib_ni!System.Runtime.InteropServices.Marshal.PtrToStructure(IntPtr, System.Type)+0&#215;5d<br />System.Windows.Forms.UnsafeNativeMethods.PtrToStructure(IntPtr, System.Type)+0&#215;25<br />System_Windows_Forms_ni!System.Windows.Forms.TreeView.WmNeedText(System.Windows.Forms.Message ByRef)+0&#215;35<br />System_Windows_Forms_ni!System.Windows.Forms.TreeView.WndProc(System.Windows.Forms.Message ByRef)+0&#215;36e281<br />System_Windows_Forms_ni!System.Windows.Forms.Control+ControlNativeWindow.OnMessage(System.Windows.Forms.Message ByRef)+0xd<br />System_Windows_Forms_ni!System.Windows.Forms.Control+ControlNativeWindow.WndProc(System.Windows.Forms.Message ByRef)+0&#215;36<br />System_Windows_Forms_ni!System.Windows.Forms.NativeWindow.Callback(IntPtr, Int32, IntPtr, IntPtr)+0&#215;5a<br />user32!InternalCallWinProc+0&#215;23<br />user32!UserCallWinProcCheckWow+0&#215;14b<br />user32!CallWindowProcAorW+0&#215;97<br />user32!CallWindowProcW+0&#215;1b<br />comctl32!CallOriginalWndProc+0&#215;1a<br />comctl32!CallNextSubclassProc+0&#215;3c<br />comctl32!DefSubclassProc+0&#215;46<br />comctl32!TTSubclassProc+0&#215;59<br />comctl32!CallNextSubclassProc+0&#215;3c</p>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>DISCLAIMER</h2>
<div class=sbody>MICROSOFT AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY, RELIABILITY OR ACCURACY OF THE INFORMATION CONTAINED IN THE DOCUMENTS AND RELATED GRAPHICS PUBLISHED ON THIS WEBSITE (THE â€œMATERIALSâ€) FOR ANY PURPOSE. THE MATERIALS MAY INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS AND MAY BE REVISED AT ANY TIME WITHOUT NOTICE.</p>
<p>TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MICROSOFT AND/OR ITS SUPPLIERS DISCLAIM AND EXCLUDE ALL REPRESENTATIONS, WARRANTIES, AND CONDITIONS WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT LIMITED TO REPRESENTATIONS, WARRANTIES, OR CONDITIONS OF TITLE, NON INFRINGEMENT, SATISFACTORY CONDITION OR QUALITY, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE MATERIALS.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Microsoft .NET Framework 2.0</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbnomt kbrapidpub KB953102</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/windows-forms-application-crashes-when-calling-tooltipsettooltip-method-for-associated-treeview-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error message when you start Windows Vista: Your activation period has expired</title>
		<link>http://ossmall.info/error-message-when-you-start-windows-vista-your-activation-period-has-expired/</link>
		<comments>http://ossmall.info/error-message-when-you-start-windows-vista-your-activation-period-has-expired/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:50:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/error-message-when-you-start-windows-vista-your-activation-period-has-expired/</guid>
		<description><![CDATA[Error message when you start Windows Vista: Your activation period has expired
View products that this article applies to.



Article ID
:
933175


Last Review
:
October 26, 2007


Revision
:
1.2




Summary Section
This article is intended for a beginning to intermediate computer user.You may find it easier to follow the steps if you print this article first.This article describes a problem in which  you [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>Error message when you start Windows Vista: Your activation period has expired</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>933175</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>October 26, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.2</td>
</tr>
</table>
</div>
<div class=section>
<h2 class=subTitle id=tocHeadRef>Summary Section</h2>
<div class=sbody>This article is intended for a beginning to intermediate computer user.You may find it easier to follow the steps if you print this article first.This article describes a problem in which  you receive a Your activation period has expired error message when you start Windows Vista. A resolution for  this problem is included.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>Symptoms of the problem</h2>
<div class=sbody>When you start Windows Vista, you  receive the following error message:
<div class=errormsg>Activate Windows Now <br />Your activation period has expired and Windows is no longer working. <br />To use Windows you must activate this copy of Windows. </div>
<p>Additionally, the taskbar does not appear. You have limited access to Windows Vista programs and to Windows Vista features.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>Steps to resolve the problem</h2>
<div class=sbody>To resolve this problem, enter a valid product key. To do this, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>In the <strong class=uiterm>Activate Windows Now</strong> pop-up message that appears when you first log on to Windows Vista, click <strong class=uiterm>Retype your product key</strong>.</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>When you are prompted to accept the specified user name, click <strong class=uiterm>OK</strong>.</td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text> Type the product key, and then click <strong class=uiterm>Next</strong>. </p>
<p><b>Note</b> You can locate the product key on the  Windows Vista CD sleeve or on the Windows Vista  CD case.</td>
</tr>
</table>
<p><b>Notes</b><br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>To use the <strong class=uiterm>Automated phone system</strong> activation option, click <strong class=uiterm>Show me other ways to activate</strong>. </td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>For more information about the Windows Vista activation process, click <strong class=uiterm>Read our privacy statement</strong>. </td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>To receive  support for Windows Vista, you must provide the product ID (PID) for  the version of Windows Vista that you have installed on your computer. To view the PID by using Windows Internet Explorer 7  in reduced-functionality mode, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text> In the <strong class=uiterm>Windows Activation</strong> dialog box, click <strong class=uiterm>Read our privacy statement</strong>. Internet Explorer 7 starts. </td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text> In Internet Explorer 7, click <strong class=uiterm>Help</strong>, and then click <strong class=uiterm>About Internet Explorer 7</strong>. </td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text>To determine the PID, view the Product Key line.</td>
</tr>
</table>
<p>For more information about reduced-functionality mode, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=/Feedback.aspx?kbNumber=925582>925582</a><span class=pLink> (/Feedback.aspx?kbNumber=925582/)</span> The behavior of reduced functionality mode in Windows Vista</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>REFERENCES</h2>
<div class=sbody>For more information about Windows Vista activation, visit the following Microsoft Web sites.
<div class=indent><b>To troubleshoot activation problems</b></div>
<div class=indent><span class=ll><a href=http://windowshelp.microsoft.com/Windows/en-US/Help/57cc0e65-f70c-49fd-bdaa-6da83d6a35af1033.mspx>http://windowshelp.microsoft.com/Windows/en-US/Help/57cc0e65-f70c-49fd-bdaa-6da83d6a35af1033.mspx</a></span><span class=pLink> (http://windowshelp.microsoft.com/Windows/en-US/Help/57cc0e65-f70c-49fd-bdaa-6da83d6a35af1033.mspx)</span></div>
<div class=indent><b>Frequently asked questions</b></div>
<div class=indent><span class=ll><a href=http://windowshelp.microsoft.com/Windows/en-US/Help/62088be6-3538-46a6-99fb-05e74aeb48b51033.mspx>http://windowshelp.microsoft.com/Windows/en-US/Help/62088be6-3538-46a6-99fb-05e74aeb48b51033.mspx</a></span><span class=pLink> (http://windowshelp.microsoft.com/Windows/en-US/Help/62088be6-3538-46a6-99fb-05e74aeb48b51033.mspx)</span></div>
<p>For more information, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=/Feedback.aspx?kbNumber=925616>925616</a><span class=pLink> (/Feedback.aspx?kbNumber=925616/)</span> Error message when you start Windows Vista: Your activation period has expired</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business 64-bit Edition</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbtshoot kbprb kbactivation kbexpertisebeginner kbceip KB933175</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/error-message-when-you-start-windows-vista-your-activation-period-has-expired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Information about Network Monitor 3</title>
		<link>http://ossmall.info/information-about-network-monitor-3/</link>
		<comments>http://ossmall.info/information-about-network-monitor-3/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:50:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[App HowTo]]></category>
		<category><![CDATA[Apple Products]]></category>
		<category><![CDATA[Application Center]]></category>
		<category><![CDATA[Commerce Server 2007]]></category>
		<category><![CDATA[MS Office Access]]></category>
		<category><![CDATA[MS Office Visio]]></category>
		<category><![CDATA[Microsoft .NET Framework]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[OS X Applications]]></category>
		<category><![CDATA[VS General]]></category>
		<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>
		<category><![CDATA[XP HowTo]]></category>

		<guid isPermaLink="false">http://ossmall.info/information-about-network-monitor-3/</guid>
		<description><![CDATA[Information about Network Monitor 3
View products that this article applies to.



Article ID
:
933741


Last Review
:
March 17, 2008


Revision
:
3.0




INTRODUCTION
This article contains information about Microsoft Network Monitor 3. Network Monitor 3 is a protocol analyzer.  It enables you to capture, to view, and to analyze network data. You can use it to help troubleshoot problems with applications on the [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>Information about Network Monitor 3</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>933741</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>March 17, 2008</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>3.0</td>
</tr>
</table>
</div>
<div class=section>
<h2 class=subTitle id=tocHeadRef>INTRODUCTION</h2>
<div class=sbody>This article contains information about Microsoft Network Monitor 3. Network Monitor 3 is a protocol analyzer.  It enables you to capture, to view, and to analyze network data. You can use it to help troubleshoot problems with applications on the network.  </p>
<p>  This article contains download and support information, installation notes, and general usage information about Network Monitor 3.  Network Monitor 3.1 is the latest version.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>Network Monitor 3  is a complete overhaul of the earlier Network Monitor 2.<var>x</var> version. Some key features of Network Monitor 3 include the following:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Script-based parser model</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Simultaneous capture sessions</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Support for Windows Vista </td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Support for 32-bit platforms and for 64-bit platforms </td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Support for network conversations</td>
</tr>
</table>
<h4 id=tocHeadRef>Download and support information</h4>
<p>To download Network Monitor 3.1 visit the following Microsoft Web sites:
<div class=indent><b>Windows Vista, x86-based versions</b><br /><span class=ll><a href=http://download.microsoft.com/download/1/8/f/18fd3dfa-ea78-4ed0-a62d-f5b043391ea4/nm31_release_x86.msi>http://download.microsoft.com/download/1/8/f/18fd3dfa-ea78-4ed0-a62d-f5b043391ea4/NM31_Release_x86.msi</a></span><span class=pLink> (http://download.microsoft.com/download/1/8/f/18fd3dfa-ea78-4ed0-a62d-f5b043391ea4/nm31_release_x86.msi)</span></div>
<div class=indent><b>Windows Vista, x64-based versions</b><br /><span class=ll><a href=http://download.microsoft.com/download/1/8/f/18fd3dfa-ea78-4ed0-a62d-f5b043391ea4/nm31_release_x64.msi>http://download.microsoft.com/download/1/8/f/18fd3dfa-ea78-4ed0-a62d-f5b043391ea4/NM31_Release_x64.msi</a></span><span class=pLink> (http://download.microsoft.com/download/1/8/f/18fd3dfa-ea78-4ed0-a62d-f5b043391ea4/nm31_release_x64.msi)</span></div>
<p>Support information for Network Monitor 3  is located at the following Microsoft Connect Web site:
<div class=indent><a href=http://connect.microsoft.com>http://connect.microsoft.com</a><span class=pLink> (http://connect.microsoft.com)</span></div>
<p> You must sign in to the Web site by using a   Windows Live ID. After you sign in, you can apply to participate in the program. To do this, in the <strong class=uiterm>Options</strong> column of the table, click <strong class=uiterm>Apply</strong> next to <strong class=uiterm>Network Monitor 3</strong>.  After you enroll in the program, you have access to newsgroups, and you can submit bug reports.<br />
<h4 id=tocHeadRef>Installation notes</h4>
<p>Network Monitor 3.1 can co-exist with earlier versions of Network Monitor. By default, Network Monitor 3.1 is installed in the %Program Files% Microsoft Network Monitor 3.0   folder. Therefore, conflicts do not occur if an earlier version is installed in a different folder on the computer. When you install Network Monitor 3.1, Network Monitor 3 is uninstalled.</p>
<p>Network Monitor 3.1 includes a new driver for Windows Vista-based computers. This new driver supports new features of the Network Driver Interface Specification (NDIS) 6.0 driver.  If you are using tools that rely on Network Monitor 2.<var>x</var> NPPTools, the tools will no longer work. To capture network data in Windows Vista, you must use Network Monitor 3.1.  Network Monitor 2.<var>x</var> does not capture network data correctly in Windows Vista. </p>
<p>Suggested hardware to run Network Monitor 3.1 is listed as follows:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>	1 GHz or faster processor</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>1 GB or more memory</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>25 MB free space on the hard disk, and additional hard disk space to store capture files</td>
</tr>
</table>
<p>Network Monitor 3.1 is supported on the following operating systems:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Microsoft Windows XP</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Microsoft Windows Server 2003</td>
</tr>
</table>
<h5 id=tocHeadRef>Warnings and cautions</h5>
<p>Currently, we do not recommend that you run Network Monitor 3 on production systems. In scenarios where load is something to consider, use the command-line version of Network Monitor 3  to capture network data. The command-line version is Nmcap.exe. For more information about Nmcap.exe, see the Nmcap.exe command-line tool section.</p>
<p>Network Monitor 3 may consume lots of system resources. Some things to consider are listed as follows.<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>Disk space</b></p>
<p>When you start a capture session, Network Monitor 3 stores frames in a sequence of capture files that are located in the  Temp folder. By default, the size of each capture file is 20 MB. By default, if you do not stop the capture session, Network Monitor 3 continues to store capture files in the  Temp folder until the free hard disk space on the computer is less than 2 percent. Then, Network Monitor 3 stops the capture session.</p>
<p>You can configure the capture file size, the location where the capture files are stored, the free hard disk space limit, and other capture options. To do this, on the <strong class=uiterm>Tools</strong> menu, point to <strong class=uiterm>Options</strong>, and then click the <strong class=uiterm>Capture</strong> tab.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>Memory use</b></p>
<p>In addition to capturing data, Network Monitor 3 assigns properties to frames, and then uses the properties to group the frames into conversations. Network Monitor 3 displays the conversations and the associated frames in a tree structure in the <strong class=uiterm>Network Conversations</strong> pane.</p>
<p>The Conversations feature of Network Monitor 3 significantly increases memory use. This may cause the computer to become unresponsive. By default, the Conversations feature is turned off.  Some higher-level protocol filters require conversation properties.  To turn on  the Conversations feature, click the <strong class=uiterm>Start Page</strong> tab, and then click to select the <strong class=uiterm>Enable Conversations</strong> check box.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>Processor utilization</b></p>
<p>The Conversations feature of Network Monitor 3 may significantly increase processor utilization when lots of frames are processed. By default, the Conversations feature  is turned off, as mentioned in the Memory use section. </td>
</tr>
</table>
<h4 id=tocHeadRef>General usage</h4>
<p>General usage information for Network Monitor 3 is listed as follows.<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>Capture network data</b></p>
<p>As mentioned earlier, Network Monitor 3 may consume lots of system resources. Therefore, if you want to minimize the effect on system resources that may occur when you use Network Monitor 3 to capture data, use the Nmcap.exe command-line tool to capture data.  </p>
<p>Network Monitor 3 enables you to collect network  data and to view the network data in real time as the data is captured. To start a capture session in Network Monitor 3, click the <strong class=uiterm>Start Page</strong> tab,  click <strong class=uiterm>Create a new capture tab</strong>, and then either click the <strong class=uiterm>Start Capture</strong> button, or press F10.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>Filters</b></p>
<p>Network Monitor 3 uses a simple syntax that is expression-based to filter frames. All frames that match the expression are displayed to the user. For more information about  filters, do any of the following:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>View the topics in the Using Filters section of the Network Monitor 3 User&#8217;s Guide. To do this, on the <strong class=uiterm>Help</strong> menu, click <strong class=uiterm>Contents</strong>, and then double-click <strong class=uiterm>Using Filters</strong>.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>On the <strong class=uiterm>Help</strong> menu, point to <strong class=uiterm>How Do I </strong>,  and then click <strong class=uiterm>Use Filters</strong>.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Use the <strong class=uiterm>Capture Filter</strong> tab or the <strong class=uiterm>Display Filter</strong> tab to view standard filters.</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>Conversations</b></p>
<p>By default, the Conversations feature is turned off. This is the default setting  because the Conversations feature can consume lots  of memory, especially in scenarios  when you  capture data for long periods of time. To turn on  the Conversations feature, click the <strong class=uiterm>Start Page</strong> tab, and then click to select the <strong class=uiterm>Enable Conversations</strong> check box.</p>
<p>When you turn on the Conversations feature,  frames are grouped and displayed in the  <strong class=uiterm>Network Conversations</strong> pane in a tree structure according to the conversations to which they belong. For example, TCP data that uses the same source port and the same destination port is organized into a group.  When you click a node in the <strong class=uiterm>Network Conversations</strong> pane, the corresponding conversation filter is automatically applied to the frames in the <strong class=uiterm>Frame Summary</strong> pane. Only frames that belong to that particular conversation are displayed. </td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>Nmcap.exe command-line tool</b></p>
<p>The Nmcap.exe command-line tool enables you to configure when you want to start a capture session or to stop a capture session. You can also  use the Nmcap.exe command-line tool to created chained captures. Chained captures enable you to create multiple capture files.  However,   the size of the capture files remains small.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>Network Parsing Language (NPL)</b></p>
<p>Network Monitor 3 parsers are written in a language specifically to make parser development more straightforward. This also provides a level of protection against potential exploitation from  malicious code that may occur if parsers were created as DLL files. NPL provides access to parsers. You can view or modify the parsers that are included in Network Monitor 3.  </td>
</tr>
</table>
<h4 id=tocHeadRef>Common issues</h4>
<p>Common issues include the following:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Protocols may not parse correctly. This issue may occur  if either of the following conditions is true:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>The Conversations feature is turned off.</p>
<p>Certain protocols depend on conversation properties to store state values that may be needed in later frames.  For example,  TCP needs conversations to store information about retransmitted frames. The filter for TCP Retransmits will not  work unless the Conversations feature is enabled.  </p>
<p>Similarly, the Server Message Block (SMB) protocol cannot translate the response to a Transact command, because the response does not contain the original command.  The information is saved in conversation properties.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>The parser and the associated protocol may be available under the Microsoft Communications Protocol Program (MCPP) and the Microsoft Work Group Server Protocol Program (WSPP).  To learn more about how to become a licensee, visit the following Microsoft Web site:
<div class=indent><span class=ll><a href=http://www.microsoft.com/about/legal/intellectualproperty/protocols/mcpp.mspx>http://www.microsoft.com/about/legal/intellectualproperty/protocols/mcpp.mspx</a></span><span class=pLink> (http://www.microsoft.com/about/legal/intellectualproperty/protocols/mcpp.mspx)</span></div>
<p>These parsers are considered confidential Microsoft intellectual property and are not distributed publicly. Therefore,  these parsers are not part of the publicly-released version of Network Monitor 3</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>You receive one of the following error messages when you run Network Monitor 3 on a Windows Vista-based computer:
<div class=errormsg>None of the network adapters are bound to the Netmon driver</div>
<div class=errormsg>This network adapter is not configured to capture with Network Monitor</div>
<p> This issue occurs if either of the following conditions is true:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>You are not running  Network Monitor 3  as administrator.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>You are not a member of the Netmon Users group.</td>
</tr>
</table>
<p> For more information, see the Network Monitor 3 releases notes or see the Operating on Windows Vista topic in Network Monitor 3 Help.</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>REFERENCES</h2>
<div class=sbody>For support information about Network Monitor 3, visit the following Microsoft  Web sites:
<div class=indent><a href=http://connect.microsoft.com>http://connect.microsoft.com</a><span class=pLink> (http://connect.microsoft.com)</span></div>
<div class=indent><a href=http://blogs.technet.com/netmon>http://blogs.technet.com/netmon/</a><span class=pLink> (http://blogs.technet.com/netmon/)</span></div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit Edition</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbhowto kbinfo kbexpertiseinter KB933741</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/information-about-network-monitor-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You cannot access files on a memory card in a networked printers built-in memory card reader, and you receive an error message in Windows Vista or in Windows XP SP2:  lt;IP_Address gt; memory_card refers to a location that is unavailable</title>
		<link>http://ossmall.info/you-cannot-access-files-on-a-memory-card-in-a-networked-printers-built-in-memory-card-reader-and-you-receive-an-error-message-in-windows-vista-or-in-windows-xp-sp2-ltipaddress-gt-memorycard-refers-to-/</link>
		<comments>http://ossmall.info/you-cannot-access-files-on-a-memory-card-in-a-networked-printers-built-in-memory-card-reader-and-you-receive-an-error-message-in-windows-vista-or-in-windows-xp-sp2-ltipaddress-gt-memorycard-refers-to-/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:50:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS Office Access]]></category>
		<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/you-cannot-access-files-on-a-memory-card-in-a-networked-printers-built-in-memory-card-reader-and-you-receive-an-error-message-in-windows-vista-or-in-windows-xp-sp2-ltipaddress-gt-memorycard-refers-to-/</guid>
		<description><![CDATA[You cannot access files on a memory card in a networked printer&#8217;s built-in memory card reader, and you receive an error message in Windows Vista or in Windows XP SP2:   &#60;IP_Address&#62; memory_card refers to a location that is unavailable
View products that this article applies to.



Article ID
:
930618


Last Review
:
August 29, 2007


Revision
:
3.0




On This Page



SYMPTOMS
In Windows Vista [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>You cannot access files on a memory card in a networked printer&#8217;s built-in memory card reader, and you receive an error message in Windows Vista or in Windows XP SP2:   &lt;IP_Address&gt; memory_card refers to a location that is unavailable</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>930618</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>August 29, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>3.0</td>
</tr>
</table>
</div>
<div class=toc id=tocDiv>
<h5>On This Page</h5>
</div>
<p><noscript></noscript>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>In Windows Vista or in Windows XP Service Pack 2 (SP2), when you try to access the files on a memory card in a networked printer&#8217;s built-in memory card reader, you may receive an error message that resembles the following:
<div class=errormsg>  <var>IP_Address</var> memory_card refers to a location that is unavailable. It could be on a hard drive on this computer, or on a network. Check to make sure that the disk is properly inserted, or that you are connected to the Internet or your network, and then try again. If it still cannot be located, the information might have been moved to a different location.</div>
<p>You cannot print the files that are stored on the memory card.</p>
<p>When this problem occurs, you may be able to use Windows Photo Gallery or Windows Live Photo Gallery to open the files on the memory card. However, you cannot save a file to the memory card by using a different name.</p>
<p>The memory card reader may support any of the following memory cards in addition to other memory cards:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>CompactFlash Type I</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>CompactFlash Type II</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>IBM Microdrive</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Memory Stick</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Secure Digital MultiMediaCard (MMC)</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>xD Picture Card</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RESOLUTION</h2>
<div class=sbody>
<h3 id=tocHeadRef>Windows Vista</h3>
<h4 id=tocHeadRef>Hotfix information</h4>
<p>A supported hotfix is now available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next service pack that contains this hotfix.</p>
<p>To resolve this problem, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:
<div class=indent><a href=http://go.microsoft.com/?linkid=6294451>http://go.microsoft.com/?linkid=6294451</a><span class=pLink> (http://go.microsoft.com/?linkid=6294451)</span></div>
<p><b>Note</b>  If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:
<div class=indent><a href=http://support.microsoft.com/contactus/?ws=support>http://support.microsoft.com/contactus/?ws=support</a><span class=pLink> (http://support.microsoft.com/contactus/?ws=support)</span></div>
<h5 id=tocHeadRef>File information</h5>
<p>The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the <strong class=uiterm>Time Zone</strong> tab in the Date and Time item in Control Panel.<b>Windows Vista, 32-bit (x86-based) versions</b><br />
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
</tr>
<tr>
<td>Kernel32.dll</td>
<td>6.0.6000.20530</td>
<td>875,008</td>
<td>06-Feb-2007</td>
<td>03:39</td>
<td>x86</td>
</tr>
<tr>
<td>Update.mum</td>
<td>Not Applicable</td>
<td>2,658</td>
<td>06-Feb-2007</td>
<td>21:26</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_8d6afd7e8f012a1b02284591048198e4_31bf3856ad364e35_6.0.6000.20530_none_060d2bc2b80a3c59.manifest</td>
<td>Not Applicable</td>
<td>696</td>
<td>06-Feb-2007</td>
<td>21:26</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_a65933bf6493d2b289a8b58095cfc797_31bf3856ad364e35_6.0.6000.20530_none_a392d5094e963b68.manifest</td>
<td>Not Applicable</td>
<td>695</td>
<td>06-Feb-2007</td>
<td>21:26</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-kernel32_31bf3856ad364e35_6.0.6000.20530_none_9240cfd6725af10c.manifest</td>
<td>Not Applicable</td>
<td>4,839</td>
<td>06-Feb-2007</td>
<td>21:30</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-shell32_31bf3856ad364e35_6.0.6000.20530_none_6aac15732e0b561d.manifest</td>
<td>Not Applicable</td>
<td>975,772</td>
<td>06-Feb-2007</td>
<td>21:30</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Shell32-ppdlic.xrm-ms</td>
<td>Not Applicable</td>
<td>3,150</td>
<td>06-Feb-2007</td>
<td>03:22</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Shell32.dll</td>
<td>6.0.6000.20530</td>
<td>11,314,688</td>
<td>06-Feb-2007</td>
<td>03:40</td>
<td>x86</td>
</tr>
</table>
<p><b>Windows Vista, 64-bit versions</b><br />
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
</tr>
<tr>
<td>Kernel32.dll</td>
<td>6.0.6000.20530</td>
<td>875,008</td>
<td>06-Feb-2007</td>
<td>03:39</td>
<td>x86</td>
</tr>
<tr>
<td>Update.mum</td>
<td>Not Applicable</td>
<td>2,658</td>
<td>06-Feb-2007</td>
<td>21:26</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_8d6afd7e8f012a1b02284591048198e4_31bf3856ad364e35_6.0.6000.20530_none_060d2bc2b80a3c59.manifest</td>
<td>Not Applicable</td>
<td>696</td>
<td>06-Feb-2007</td>
<td>21:26</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_a65933bf6493d2b289a8b58095cfc797_31bf3856ad364e35_6.0.6000.20530_none_a392d5094e963b68.manifest</td>
<td>Not Applicable</td>
<td>695</td>
<td>06-Feb-2007</td>
<td>21:26</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-kernel32_31bf3856ad364e35_6.0.6000.20530_none_9240cfd6725af10c.manifest</td>
<td>Not Applicable</td>
<td>4,839</td>
<td>06-Feb-2007</td>
<td>21:30</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-shell32_31bf3856ad364e35_6.0.6000.20530_none_6aac15732e0b561d.manifest</td>
<td>Not Applicable</td>
<td>975,772</td>
<td>06-Feb-2007</td>
<td>21:30</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Shell32-ppdlic.xrm-ms</td>
<td>Not Applicable</td>
<td>3,150</td>
<td>06-Feb-2007</td>
<td>03:22</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Shell32.dll</td>
<td>6.0.6000.20530</td>
<td>11,314,688</td>
<td>06-Feb-2007</td>
<td>03:40</td>
<td>x86</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>STATUS</h2>
<div class=sbody>Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the Applies to section.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>For more information about how hotfix packages are named, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=/Feedback.aspx?kbNumber=816915>816915</a><span class=pLink> (/Feedback.aspx?kbNumber=816915/)</span>New file naming schema for Microsoft Windows software update packages</div>
<p>For more information about the terms that are used to describe software updates, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=/Feedback.aspx?kbNumber=824684>824684</a><span class=pLink> (/Feedback.aspx?kbNumber=824684/)</span> Description of the standard terminology that is used to describe Microsoft software updates</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Starter</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Live Photo Gallery</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Microsoft Windows XP Media Center Edition Service Pack 2 (SP2)</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kberrmsg kbbug kbfix kbqfe kbexpertiseinter kbhotfixserver kbwinvistapostrtmfix kbwinliveportal KB930618</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/you-cannot-access-files-on-a-memory-card-in-a-networked-printers-built-in-memory-card-reader-and-you-receive-an-error-message-in-windows-vista-or-in-windows-xp-sp2-ltipaddress-gt-memorycard-refers-to-/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moveuser.exe is incompatible with Windows Vista and is replaced by the new Win32_UserProfile WMI functionality</title>
		<link>http://ossmall.info/moveuserexe-is-incompatible-with-windows-vista-and-is-replaced-by-the-new-win32userprofile-wmi-functionality/</link>
		<comments>http://ossmall.info/moveuserexe-is-incompatible-with-windows-vista-and-is-replaced-by-the-new-win32userprofile-wmi-functionality/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:50:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/moveuserexe-is-incompatible-with-windows-vista-and-is-replaced-by-the-new-win32userprofile-wmi-functionality/</guid>
		<description><![CDATA[Moveuser.exe is incompatible with Windows Vista and is replaced by the new Win32_UserProfile WMI functionality
View products that this article applies to.



Article ID
:
930955


Last Review
:
August 24, 2007


Revision
:
4.4




On This Page



SUMMARY
The Windows Resource Kit tool Moveuser.exe is incompatible with Windows Vista. In earlier versions of Windows, Moveuser.exe is used to map an existing local user account profile to a [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>Moveuser.exe is incompatible with Windows Vista and is replaced by the new Win32_UserProfile WMI functionality</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>930955</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>August 24, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>4.4</td>
</tr>
</table>
</div>
<div class=toc id=tocDiv>
<h5>On This Page</h5>
</div>
<p><noscript></noscript>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SUMMARY</h2>
<div class=sbody>The Windows Resource Kit tool Moveuser.exe is incompatible with Windows Vista. In earlier versions of Windows, Moveuser.exe is used to map an existing local user account profile to a new domain profile when a computer in a workgroup is joined to a domain. Alternatively the tool can also used to map an existing domain account profile to another new domain account profile. However, you cannot use the Moveuser.exe tool to perform these tasks on a Windows Vista-based computer.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RESOLUTION</h2>
<div class=sbody>After you install the update that is described in this article, the User Profile Windows Management Instrumentation (WMI) provider (Win32_UserProfile) is added in Windows Vista.  This User Profile WMI provider replaces Moveuser.exe in Windows Vista. The new User Profile WMI provider can be used to map an existing local account profile to a new domain based account. It can also be used to map an existing domain-based account profile to a new domain-based account profile.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<h3 id=tocHeadRef>Update information</h3>
<p>The following files are available for download from the MicrosoftDownload Center:</p>
<p><b>Windows Vista, 32-bit versions</b><br /><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/public/EN-US/Download.gif alt=Download title=Download><a href=http://www.microsoft.com/downloads/details.aspx?familyid=9106B9D4-BAA8-4C29-A605-A4D09C04A5F3>Download the Windows6.0-KB930955-x86.msu package now.</a><span class=pLink> (http://www.microsoft.com/downloads/details.aspx?familyid=9106B9D4-BAA8-4C29-A605-A4D09C04A5F3)</span></p>
<p><b>Windows Vista, 64-bit versions</b><br /><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/public/EN-US/Download.gif alt=Download title=Download><a href=http://www.microsoft.com/downloads/details.aspx?familyid=D812B06B-0601-4755-98D3-878093CAD40C>Download the Windows6.0-KB930955-x64.msu package now.</a><span class=pLink> (http://www.microsoft.com/downloads/details.aspx?familyid=D812B06B-0601-4755-98D3-878093CAD40C)</span>For more information about how to download Microsoft support files, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=/Feedback.aspx?kbNumber=119591>119591</a><span class=pLink> (/Feedback.aspx?kbNumber=119591/)</span> How to obtain Microsoft support files from online services</div>
<p>Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help prevent any unauthorized changes to the file.<br />
<h4 id=tocHeadRef>Prerequisites</h4>
<p>To apply this update, you must have Windows Vista installed.<br />
<h4 id=tocHeadRef>Restart requirement</h4>
<p>You must restart the computer after you apply this update.<br />
<h4 id=tocHeadRef>Update replacement information</h4>
<p>This update does not replace any other updates.<br />
<h4 id=tocHeadRef>File information</h4>
<p>The English version of this update has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the <strong class=uiterm>Time Zone</strong> tab in the Date and Time item in Control Panel.<br />
<h5 id=tocHeadRef>Windows Vista, 32-bit versions</h5>
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
</tr>
<tr>
<td>Profprov.dll</td>
<td>6.0.6000.20515</td>
<td>32,768</td>
<td>16-Jan-2007</td>
<td>03:35</td>
<td>x86</td>
</tr>
<tr>
<td>Profsvc.dll</td>
<td>6.0.6000.20515</td>
<td>163,840</td>
<td>16-Jan-2007</td>
<td>03:35</td>
<td>x86</td>
</tr>
<tr>
<td>Userprofilewmiprovider.mof</td>
<td>Not Applicable</td>
<td>10,702</td>
<td>16-Jan-2007</td>
<td>00:02</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-profsvc.d_31bf3856ad364e35_6.0.6000.20515_none_24c745098e822984.manifest</td>
<td>Not Applicable</td>
<td>691</td>
<td>16-Jan-2007</td>
<td>17:13</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>X86_microsoft-windows-profsvc_31bf3856ad364e35_6.0.6000.20515_none_fa4ee34c4ea7bad8.manifest</td>
<td>Not Applicable</td>
<td>49,152</td>
<td>16-Jan-2007</td>
<td>17:14</td>
<td>Not Applicable</td>
</tr>
</table>
<h5 id=tocHeadRef>Windows Vista, 64-bit versions</h5>
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
</tr>
<tr>
<td>Amd64_microsoft-windows-profsvc.d_31bf3856ad364e35_6.0.6000.20515_none_80e5e08d46df9aba.manifest</td>
<td>Not Applicable</td>
<td>695</td>
<td>16-Jan-2007</td>
<td>17:13</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Amd64_microsoft-windows-profsvc_31bf3856ad364e35_6.0.6000.20515_none_566d7ed007052c0e.manifest</td>
<td>Not Applicable</td>
<td>49,152</td>
<td>16-Jan-2007</td>
<td>17:19</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Profprov.dll</td>
<td>6.0.6000.20515</td>
<td>49,152</td>
<td>16-Jan-2007</td>
<td>04:42</td>
<td>x64</td>
</tr>
<tr>
<td>Profsvc.dll</td>
<td>6.0.6000.20515</td>
<td>180,224</td>
<td>16-Jan-2007</td>
<td>04:42</td>
<td>x64</td>
</tr>
<tr>
<td>Userprofilewmiprovider.mof</td>
<td>Not Applicable</td>
<td>10,702</td>
<td>16-Jan-2007</td>
<td>00:02</td>
<td>Not Applicable</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>
<h4 id=tocHeadRef>Information about how to use the User Profile WMI provider</h4>
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>	The source user profile cannot be private.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Any folder redirection to  a local volume or to a server must be disabled. </td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>	Access to the following settings is not preserved:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Encrypted files</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Certificates</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>The user account picture</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Disable encryption for any files before you map any profile to another new user account profile. </td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>User saved passwords will not be mapped from the local profile to the domain profile. Therefore, the user will be prompted to reenter these passwords the first time that they access the associated program. For example, the user will be prompted to reenter the password for Windows Live Messenger the first time that they start the program after the profile is moved. </td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>The User Profile WMI provider is implemented like other WMI interfaces by using WMI tools, scripts, or applications that use the WMI COM interface. For more information about how to use WMI, see theAbout WMI  topic at the following MSDN Web site:
<div class=indent><a href=http://msdn2.microsoft.com/en-us/library/aa384642.aspx>http://msdn2.microsoft.com/en-us/library/aa384642.aspx</a><span class=pLink> (http://msdn2.microsoft.com/en-us/library/aa384642.aspx)</span></div>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>	To learn specifically about the management functions that the User Profile WMI provider supports, use a repository browsing tool to explore the class in the  root CIMV2 namespace. </td>
</tr>
</table>
<h4 id=tocHeadRef>Visual Basic script examples</h4>
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>The following Microsoft Visual Basic script example retrieves a user profile object through the user name and the domain and then deletes the user profile object.<code>
<pre class=code>strComputer =. Set objAccount = GetObject(winmgmts:{impersonationLevel=impersonate}!   _                            &amp; strComputer &amp; root cimv2:Win32_UserAccount. _                            &amp;Domain='contoso',Name='fabrikam')     Set objUserProfile = GetObject(winmgmts:{impersonationlevel=impersonate}!   _                               &amp; strComputer &amp; root cimv2:Win32_UserProfile. _                               &amp;SID=' &amp; objAccount.SID &amp;') objUserProfile.Delete_</pre>
<p></code></td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text><b>RoamingPreference</b>is the only property that can be set by a user who has administrative credentials. The following Visual Basic script example retrieves and displays information about all the profiles on the local computer.<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>To run the Visual Basic script against a remote computer, set the value of the strComputer variable to the name or the IP address of the remote computer. The placeholder RemoteComputerName is used to set the variable in the following example:</p>
<p><b>strComputer = <var>â€œRemoteComputerNameâ€</var></b>.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>When you run this script by using Wscript.exe, one series of message boxes is displayed for each profile. You receive one message box for each profile. You have to click <strong class=uiterm>OK</strong>to close each message.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>To avoid these message boxes, run the script by using Cscript.exe instead of Wscript.exe. When you use Cscript.exe, the information is displayed at the command prompt instead of as message boxes. To run the following script by using Cscript.exe, type <span class=userInput>cscript.exe <var>script_name</var></span>at the command prompt, and then press <strong class=uiterm>ENTER</strong>.</td>
</tr>
</table>
</td>
</tr>
</table>
<p><code>
<pre class=code>strComputer =.Set objWMIService = GetObject(winmgmts:   &amp; strComputer &amp; root cimv2)Set colProfiles = objWMIService.ExecQuery(Select * from Win32_UserProfile)For Each objProfile in colProfiles    Set objSID = objWMIService.Get(Win32_SID.SID=' &amp; objProfile.SID &amp;')    Wscript.Echo======================================================&amp; VBNewLine _        &amp;Sid: &amp; objProfile.Sid &amp; VBNewLine _        &amp;User Name: &amp; objSID.AccountName &amp; VBNewLine _        &amp;User Domain: &amp; objSID.ReferencedDomainName &amp; VBNewLine _        &amp;LocalPath: &amp; objProfile.LocalPath &amp; VBNewLine _        &amp;Loaded: &amp; objProfile.Loaded &amp; VBNewLine _        &amp;RefCount: &amp; objProfile.RefCount &amp; VBNewLine _        &amp;RoamingConfigured: &amp; objProfile.RoamingConfigured &amp; VBNewLine _        &amp;RoamingPath: &amp; objProfile.RoamingPath &amp; VBNewLine  _        &amp;RoamingPreference: &amp; objProfile.RoamingPreference &amp; VBNewLine _        &amp;Status: &amp; objProfile.Status &amp; VBNewLine _        &amp;LastUseTime: &amp; objProfile.LastUseTime &amp; VBNewLine  _        &amp;LastDownloadTime: &amp; objProfile.LastDownloadTime &amp; VBNewLine  _        &amp;LastUploadTime: &amp; objProfile.LastUploadTime &amp; VBNewLine  Next</pre>
<p></code>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<div class=sbody>For more information about the terms that are used to describe software updates, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=/Feedback.aspx?kbNumber=824684>824684</a><span class=pLink> (/Feedback.aspx?kbNumber=824684/)</span> Description of the standard terminology that is used to describe Microsoft software updates</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business 64-bit Edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbbug kbfix kbqfe kbpubtypekc atdownload kbhotfixserver KB930955</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/moveuserexe-is-incompatible-with-windows-vista-and-is-replaced-by-the-new-win32userprofile-wmi-functionality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The upgrade option is unavailable when you start the computer by using the Windows Vista DVD</title>
		<link>http://ossmall.info/the-upgrade-option-is-unavailable-when-you-start-the-computer-by-using-the-windows-vista-dvd-2/</link>
		<comments>http://ossmall.info/the-upgrade-option-is-unavailable-when-you-start-the-computer-by-using-the-windows-vista-dvd-2/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:49:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/the-upgrade-option-is-unavailable-when-you-start-the-computer-by-using-the-windows-vista-dvd-2/</guid>
		<description><![CDATA[The upgrade option is unavailable when you start the computer by using the Windows Vista DVD
View products that this article applies to.



Article ID
:
928432


Last Review
:
March 15, 2007


Revision
:
1.3




SYMPTOMS
When you start the computer by using the Windows Vista DVD, the upgrade option is unavailable.
WORKAROUND
To work around this problem, make sure that the Windows Vista DVD is not inserted [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>The upgrade option is unavailable when you start the computer by using the Windows Vista DVD</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>928432</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>March 15, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.3</td>
</tr>
</table>
</div>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>When you start the computer by using the Windows Vista DVD, the upgrade option is unavailable.</div>
<h2 class=subTitle id=tocHeadRef>WORKAROUND</h2>
<div class=sbody>To work around this problem, make sure that the Windows Vista DVD is not inserted when you start the computer. Then, insert the Windows Vista DVD to upgrade to Windows Vista. To do this, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Make sure that the Windows Vista DVD is not inserted, and then start the computer.</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>Insert the Windows Vista DVD.</td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text>If the Windows Vista DVD does not automatically start, click <strong class=uiterm>Start</strong>, click <strong class=uiterm>Run</strong>, type <span class=userInput><var>DVDDriveLetter</var>: startup.exe</span>, and then press ENTER.</td>
</tr>
<tr>
<td class=number>4.</td>
<td class=text>In the <strong class=uiterm>Windows Vista</strong> dialog box, click <strong class=uiterm>Upgrade</strong>.</td>
</tr>
</table>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Starter</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbstartup kbupgrade kbexpertisebeginner kbtshoot kbprb KB928432</td>
</tr>
</table>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/the-upgrade-option-is-unavailable-when-you-start-the-computer-by-using-the-windows-vista-dvd-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>After you hot-replace a processor in a Windows Server 2008-based computer, you cannot remove the partition unit until you restart the computer</title>
		<link>http://ossmall.info/after-you-hot-replace-a-processor-in-a-windows-server-2008-based-computer-you-cannot-remove-the-partition-unit-until-you-restart-the-computer/</link>
		<comments>http://ossmall.info/after-you-hot-replace-a-processor-in-a-windows-server-2008-based-computer-you-cannot-remove-the-partition-unit-until-you-restart-the-computer/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 01:46:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commerce Server 2007]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/after-you-hot-replace-a-processor-in-a-windows-server-2008-based-computer-you-cannot-remove-the-partition-unit-until-you-restart-the-computer/</guid>
		<description><![CDATA[After you hot-replace a processor in a Windows Server 2008-based computer, you cannot remove the partition unit until you restart the computer
View products that this article applies to.



Article ID
:
949482


Last Review
:
March 25, 2008


Revision
:
1.0




On This Page



SYMPTOMS
After you hot-replace a processor in a Windows Server		  2008-based computer, you cannot  remove the partition unit   until [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>After you hot-replace a processor in a Windows Server 2008-based computer, you cannot remove the partition unit until you restart the computer</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>949482</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>March 25, 2008</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.0</td>
</tr>
</table>
</div>
<div class=toc id=tocDiv>
<h5>On This Page</h5>
</div>
<p><noscript></noscript>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>After you hot-replace a processor in a Windows Server		  2008-based computer, you cannot  remove the partition unit   until you restart the		  computer.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>CAUSE</h2>
<div class=sbody>This issue occurs because of a bug in the IA-64 version of		  the Hal.dll file.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RESOLUTION</h2>
<div class=sbody>
<h3 id=tocHeadRef>Hotfix information</h3>
<p>A supported hotfix is now			 available from Microsoft. However, this hotfix is intended to correct only the			 problem that is described in this article. Apply this hotfix only to systems			 that are experiencing this specific problem. This hotfix might receive			 additional testing. Therefore, if you are not severely affected by this			 problem, we recommend that you wait for the next Windows Server 2008 Service			 Pack that contains this hotfix.</p>
<p>To resolve this problem, submit a			 request to Microsoft Online Customer Services to obtain the hotfix. To submit			 an online request to obtain the hotfix, visit the following Microsoft Web site:
<div class=indent><a href=http://go.microsoft.com/?linkid=6294451>http://go.microsoft.com/?linkid=6294451</a><span class=pLink> (http://go.microsoft.com/?linkid=6294451)</span></div>
<p><b>Note</b> If additional issues occur or any troubleshooting is required,			 you might have to create a separate service request. The usual support costs			 will apply to additional support questions and issues that do not qualify for			 this specific hotfix. To create a separate service request, visit the following			 Microsoft Web site:
<div class=indent><a href=http://support.microsoft.com/contactus/?ws=support>http://support.microsoft.com/contactus/?ws=support</a><span class=pLink> (http://support.microsoft.com/contactus/?ws=support)</span></div>
<h4 id=tocHeadRef>Prerequisites</h4>
<p> To apply this hotfix, you must  have Windows Server 2008  		  installed.<br />
<h4 id=tocHeadRef>Restart requirement</h4>
<p>You must  restart the computer after you apply this hotfix.<br />
<h4 id=tocHeadRef>Hotfix replacement information</h4>
<p>This hotfix does not replace any other hotfixes.<br />
<h4 id=tocHeadRef>File information</h4>
<p>The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the <strong class=uiterm>Time Zone</strong> tab in the <strong class=uiterm>Date and Time</strong> item in Control Panel.<br />
<h5 id=tocHeadRef>Windows Server 2008, IA-64 version</h5>
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File				  size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
</tr>
<tr>
<td>Ia64_hal.inf_31bf3856ad364e35_6.0.6001.22136_none_038ce2e4211df833.manifest</td>
<td>Not				  Applicable</td>
<td>1,655</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_1_for_kb949482~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,804</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_2_for_kb949482~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,809</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_3_for_kb949482~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,809</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_for_kb949482_sc_0~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,425</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_for_kb949482_sc~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,426</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_for_kb949482_server_0~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,429</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_for_kb949482_server~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,434</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_for_kb949482_winpesrv_0~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,426</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Package_for_kb949482_winpesrv~31bf3856ad364e35~ia64~~6.0.1.0.mum</td>
<td>Not				  Applicable</td>
<td>1,433</td>
<td>14-Mar-2008</td>
<td>16:33</td>
<td>Not				  Applicable</td>
</tr>
<tr>
<td>Hal.dll</td>
<td>6.0.6001.22136</td>
<td>426,552</td>
<td>14-Mar-2008</td>
<td>03:48</td>
<td>IA-64</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>STATUS</h2>
<div class=sbody>Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the Applies to section.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Server 2008 for Itanium-Based Systems</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbexpertiseinter kbhotfixserver kbqfe KB949482</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/after-you-hot-replace-a-processor-in-a-windows-server-2008-based-computer-you-cannot-remove-the-partition-unit-until-you-restart-the-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS08-014: Description of the security update for Excel 2007: March 11, 2008</title>
		<link>http://ossmall.info/ms08-014-description-of-the-security-update-for-excel-2007-march-11-2008/</link>
		<comments>http://ossmall.info/ms08-014-description-of-the-security-update-for-excel-2007-march-11-2008/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 01:28:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS Office Excel]]></category>

		<guid isPermaLink="false">http://ossmall.info/ms08-014-description-of-the-security-update-for-excel-2007-march-11-2008/</guid>
		<description><![CDATA[MS08-014: Description of the security update for Excel 2007: March 11, 2008
View products that this article applies to.



Article ID
:
946974


Last Review
:
March 11, 2008


Revision
:
1.0




On This Page



INTRODUCTION
Microsoft has released security bulletin MS08-014. The security bulletin contains all the relevant information about the security update. This information includes file manifest information and deployment options. To view the complete security [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>MS08-014: Description of the security update for Excel 2007: March 11, 2008</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>946974</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>March 11, 2008</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.0</td>
</tr>
</table>
</div>
<div class=toc id=tocDiv>
<h5>On This Page</h5>
</div>
<p><noscript></noscript>
<div class=section>
<h2 class=subTitle id=tocHeadRef>INTRODUCTION</h2>
<div class=sbody>Microsoft has released security bulletin MS08-014. The security bulletin contains all the relevant information about the security update. This information includes file manifest information and deployment options. To view the complete security bulletin, visit one of the following Microsoft Web sites:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Home users:
<div class=indent><span class=ll><a href=http://www.microsoft.com/protect/computer/updates/bulletins/200803.mspx>http://www.microsoft.com/protect/computer/updates/bulletins/200803.mspx</a></span><span class=pLink> (http://www.microsoft.com/protect/computer/updates/bulletins/200803.mspx)</span></div>
<p><b>Skip the details</b>: Download the updates for your home computer or laptop from the Microsoft Update Web site now. To do this, visit the following Microsoft Web site:
<div class=indent><a href=http://update.microsoft.com/microsoftupdate>http://update.microsoft.com/microsoftupdate/</a><span class=pLink> (http://update.microsoft.com/microsoftupdate/)</span></div>
</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>IT professionals:
<div class=indent><a href=http://www.microsoft.com/technet/security/bulletin/ms08-014.mspx>http://www.microsoft.com/technet/security/bulletin/ms08-014.mspx</a><span class=pLink> (http://www.microsoft.com/technet/security/bulletin/ms08-014.mspx)</span></div>
</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>
<h3 id=tocHeadRef>How to obtain help and support for this security update</h3>
<p>For home users, support is available at no charge by calling 1-866-PCSAFETY in the United States and in Canada or by contacting your local Microsoft subsidiary. For more information about how to contact your local Microsoft subsidiary for security update support issues, visit the following International Support Web site:
<div class=indent><a href=http://support.microsoft.com/common/international.aspx>http://support.microsoft.com/common/international.aspx</a><span class=pLink> (http://support.microsoft.com/common/international.aspx)</span></div>
<p>For enterprise customers, support for security updates is available through your usual support contacts.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<h3 id=tocHeadRef>Removal information</h3>
<p>To remove this security update, use the <strong class=uiterm>Add or Remove Programs</strong> feature in Control Panel.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Microsoft Office Excel 2007</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kboffice2007postrtmfix kbexpertisebeginner kbqfe kbsecurity kbsecbulletin kbsecvulnerability kbbug kbfix KB946974</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/ms08-014-description-of-the-security-update-for-excel-2007-march-11-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Test-OwaConnectivity cmdlet and the Test-ActiveSyncConnectivity cmdlet do not run successfully on a computer that is running Microsoft Exchange Server 2007</title>
		<link>http://ossmall.info/the-test-owaconnectivity-cmdlet-and-the-test-activesyncconnectivity-cmdlet-do-not-run-successfully-on-a-computer-that-is-running-microsoft-exchange-server-2007/</link>
		<comments>http://ossmall.info/the-test-owaconnectivity-cmdlet-and-the-test-activesyncconnectivity-cmdlet-do-not-run-successfully-on-a-computer-that-is-running-microsoft-exchange-server-2007/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 17:05:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microsoft Exchange Server]]></category>

		<guid isPermaLink="false">http://ossmall.info/the-test-owaconnectivity-cmdlet-and-the-test-activesyncconnectivity-cmdlet-do-not-run-successfully-on-a-computer-that-is-running-microsoft-exchange-server-2007/</guid>
		<description><![CDATA[
 On a computer that is running Microsoft Exchange Server 		  2007, the Test-OwaConnectivity cmdlet and the Test-ActiveSyncConnectivity cmdlet do not run successfully.
Additionally, you 		  receive an error message that resembles the following error message:
 [PS] drive :\Documents and 		  Settings\msxservice&#62;test-owaconnectivity
WARNING: The test was unable 		  to log on to OWA [...]]]></description>
			<content:encoded><![CDATA[<p class="section">
<p class="sbody"> On a computer that is running Microsoft Exchange Server 		  2007, the <strong>Test-OwaConnectivity</strong> cmdlet and the <strong>Test-ActiveSyncConnectivity</strong> cmdlet do not run successfully.</p>
<p>Additionally, you 		  receive an error message that resembles the following error message:</p>
<p class="errormsg"><font color="#ff0000"> [PS] <var>drive</var> :\Documents and 		  Settings\msxservice&gt;test-owaconnectivity<br />
WARNING: The test was unable 		  to log on to OWA due to an authentication failure.<br />
WARNING: Test FAILED 		  for URL &#8216;https://mail. <var>company name</var> .com/owa/&#8217;.</font></p>
<p>Additionally, the following error message is logged in the Internet 		  Information Services (IIS) logs:</p>
<p class="errormsg"><font color="#ff0000"> The request failed with 		  HTTP status 401: Access Denied</font></p>
<p>This problem occurs when the NetBIOS 		  domain name is not identical to the first part of the fully qualified domain 		  name (FQDN).</p>
<p class="topOfPage">&nbsp;</p>
<h2 class="subTitle" id="tocHeadRef">RESOLUTION</h2>
<p class="sbody">To resolve this problem in Exchange Server 2007 Service Pack 1, install Update Rollup 1 for Exchange Server 2007 Service Pack 1. To resolve this problem in the release version of Exchange Server 2007, install Update Rollup 6 for Exchange Server 2007.</p>
<h2 class="subTitle" id="tocHeadRef">STATUS</h2>
<p class="sbody">Microsoft 			 has confirmed that this is a problem in the Microsoft products that are listed 			 in the &#8220;Applies to&#8221; section.</p>
<hr />
<h5>APPLIES TO</h5>
<table class="list">
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Exchange Server 2007 Enterprise Edition</td>
</tr>
<tr>
<td class="bullet">•</td>
<td class="text">Microsoft Exchange Server 2007 Standard Edition</td>
</tr>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/the-test-owaconnectivity-cmdlet-and-the-test-activesyncconnectivity-cmdlet-do-not-run-successfully-on-a-computer-that-is-running-microsoft-exchange-server-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A computer that is running an x86 version of Windows Vista or of Windows Server 2008 on an IDE/ATA disk does not generate a valid dump file when PAE mode is enabled</title>
		<link>http://ossmall.info/a-computer-that-is-running-an-x86-version-of-windows-vista-or-of-windows-server-2008-on-an-ideata-disk-does-not-generate-a-valid-dump-file-when-pae-mode-is-enabled-1/</link>
		<comments>http://ossmall.info/a-computer-that-is-running-an-x86-version-of-windows-vista-or-of-windows-server-2008-on-an-ideata-disk-does-not-generate-a-valid-dump-file-when-pae-mode-is-enabled-1/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 13:42:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commerce Server 2007]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/a-computer-that-is-running-an-x86-version-of-windows-vista-or-of-windows-server-2008-on-an-ideata-disk-does-not-generate-a-valid-dump-file-when-pae-mode-is-enabled-1/</guid>
		<description><![CDATA[A computer that is running an x86 version of Windows Vista or of Windows Server 2008 on an IDE/ATA disk does not generate a valid dump file when PAE mode is enabled
View products that this article applies to.



Article ID
:
953533


Last Review
:
June 9, 2008


Revision
:
1.0




On This Page



SYMPTOMS
Consider the following scenario:


â€¢
You have an x86 version of Windows Vista or [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>A computer that is running an x86 version of Windows Vista or of Windows Server 2008 on an IDE/ATA disk does not generate a valid dump file when PAE mode is enabled</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>953533</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>June 9, 2008</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.0</td>
</tr>
</table>
</div>
<div class=toc id=tocDiv>
<h5>On This Page</h5>
</div>
<p><noscript></noscript>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>Consider the following scenario:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>You have an x86 version of Windows Vista or of  Windows Server 2008 installed on a computer&#8217;s IDE/ATA disk.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>The computer has more than 4 gigabytes (GB) of physical memory.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>The system is running in Physical Address Extension (PAE) mode.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>You configure the system to generate a memory dump file when  a fatal system error occurs.</td>
</tr>
</table>
<p>However, when a fatal system error occurs, and you receive a Stop error message, no dump file is generated. Or, an invalid dump file is generated.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>CAUSE</h2>
<div class=sbody>The system must  initialize direct memory access (DMA) registers to write the dump file. However, in this scenario, these registers are not initialized correctly. Therefore, the system uses an incorrect physical memory address when it  writes the dump file.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RESOLUTION</h2>
<div class=sbody>
<h3 id=tocHeadRef>Windows Vista hotfix information</h3>
<p>A supported hotfix is available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix.</p>
<p>If the hotfix is available for download, there is a Hotfix download available section at the top of this Knowledge Base article. If this section does not appear, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:
<div class=indent><a href=http://go.microsoft.com/?linkid=6294451>http://go.microsoft.com/?linkid=6294451</a><span class=pLink> (http://go.microsoft.com/?linkid=6294451)</span></div>
<p><b>Note</b> If additional issues occur or if any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:
<div class=indent><a href=http://support.microsoft.com/contactus/?ws=support>http://support.microsoft.com/contactus/?ws=support</a><span class=pLink> (http://support.microsoft.com/contactus/?ws=support)</span></div>
<p><b>Note</b> The Hotfix download available section and the online request forms display the languages for which the hotfix is available. If you do not see your language, it is because a hotfix is not available for that language.<br />
<h4 id=tocHeadRef>Prerequisites</h4>
<p>No prerequisites are required.<br />
<h4 id=tocHeadRef>Restart requirement</h4>
<p>You must restart the computer after you apply this hotfix.<br />
<h4 id=tocHeadRef>Hotfix replacement information</h4>
<p>This hotfix does not replace any other hotfixes.<br />
<h4 id=tocHeadRef>File information</h4>
<p>The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the <strong class=uiterm>Time Zone</strong> tab in the <strong class=uiterm>Date and Time</strong> item in Control Panel.<br />
<h5 id=tocHeadRef>Windows Vista, x86-based versions</h5>
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
</tr>
<tr>
<td>Dumpata.sys</td>
<td>6.0.6000.20845</td>
<td>29,240</td>
<td>30-May-2008</td>
<td>05:49</td>
<td>x86</td>
</tr>
<tr>
<td>Aliide.sys</td>
<td>1.2.0.0</td>
<td>17,464</td>
<td>30-May-2008</td>
<td>05:50</td>
<td>x86</td>
</tr>
<tr>
<td>Amdide.sys</td>
<td>6.0.6000.20845</td>
<td>17,976</td>
<td>30-May-2008</td>
<td>05:50</td>
<td>x86</td>
</tr>
<tr>
<td>Atapi.sys</td>
<td>6.0.6000.20845</td>
<td>21,560</td>
<td>30-May-2008</td>
<td>05:49</td>
<td>x86</td>
</tr>
<tr>
<td>Ataport.sys</td>
<td>6.0.6000.20845</td>
<td>110,136</td>
<td>30-May-2008</td>
<td>05:50</td>
<td>x86</td>
</tr>
<tr>
<td>Cmdide.sys</td>
<td>2.0.7.0</td>
<td>19,000</td>
<td>30-May-2008</td>
<td>05:49</td>
<td>x86</td>
</tr>
<tr>
<td>Intelide.sys</td>
<td>6.0.6000.20845</td>
<td>17,976</td>
<td>30-May-2008</td>
<td>05:50</td>
<td>x86</td>
</tr>
<tr>
<td>Msahci.sys</td>
<td>6.0.6000.20845</td>
<td>28,216</td>
<td>30-May-2008</td>
<td>05:49</td>
<td>x86</td>
</tr>
<tr>
<td>Mshdc.inf</td>
<td>Not Applicable</td>
<td>47,986</td>
<td>30-May-2008</td>
<td>01:09</td>
<td>Not Applicable</td>
</tr>
<tr>
<td>Pciide.sys</td>
<td>6.0.6000.20845</td>
<td>15,928</td>
<td>30-May-2008</td>
<td>05:50</td>
<td>x86</td>
</tr>
<tr>
<td>Pciidex.sys</td>
<td>6.0.6000.20845</td>
<td>45,112</td>
<td>30-May-2008</td>
<td>05:49</td>
<td>x86</td>
</tr>
<tr>
<td>Viaide.sys</td>
<td>5.1.3790.150</td>
<td>20,024</td>
<td>30-May-2008</td>
<td>05:50</td>
<td>x86</td>
</tr>
</table>
<h5 id=tocHeadRef>Windows Vista with Service Pack 1, x86-based versions</h5>
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
<th>SP requirement</th>
</tr>
<tr>
<td>Dumpata.sys</td>
<td>6.0.6001.22190</td>
<td>29,240</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Aliide.sys</td>
<td>1.2.0.0</td>
<td>17,464</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Amdide.sys</td>
<td>6.0.6001.22190</td>
<td>17,976</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Atapi.sys</td>
<td>6.0.6001.22190</td>
<td>21,560</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Ataport.sys</td>
<td>6.0.6001.22190</td>
<td>110,136</td>
<td>30-May-2008</td>
<td>05:58</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Cmdide.sys</td>
<td>2.0.7.0</td>
<td>19,000</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Intelide.sys</td>
<td>6.0.6001.22190</td>
<td>17,976</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Msahci.sys</td>
<td>6.0.6001.22190</td>
<td>28,728</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Mshdc.inf</td>
<td>Not Applicable</td>
<td>47,458</td>
<td>30-May-2008</td>
<td>01:09</td>
<td>Not Applicable</td>
<td>SP1</td>
</tr>
<tr>
<td>Pciide.sys</td>
<td>6.0.6001.22190</td>
<td>16,440</td>
<td>30-May-2008</td>
<td>05:58</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Pciidex.sys</td>
<td>6.0.6001.22190</td>
<td>45,112</td>
<td>30-May-2008</td>
<td>05:58</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Viaide.sys</td>
<td>5.1.3790.150</td>
<td>20,024</td>
<td>30-May-2008</td>
<td>05:58</td>
<td>x86</td>
<td>SP1</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<h3 id=tocHeadRef>Windows Server 2008 hotfix information</h3>
<p>A supported hotfix is available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix.</p>
<p>If the hotfix is available for download, there is a Hotfix download available section at the top of this Knowledge Base article. If this section does not appear, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:
<div class=indent><a href=http://go.microsoft.com/?linkid=6294451>http://go.microsoft.com/?linkid=6294451</a><span class=pLink> (http://go.microsoft.com/?linkid=6294451)</span></div>
<p><b>Note</b> If additional issues occur or if any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:
<div class=indent><a href=http://support.microsoft.com/contactus/?ws=support>http://support.microsoft.com/contactus/?ws=support</a><span class=pLink> (http://support.microsoft.com/contactus/?ws=support)</span></div>
<p><b>Note</b> The Hotfix download available section and the online request forms display the languages for which the hotfix is available. If you do not see your language, it is because a hotfix is not available for that language.<br />
<h4 id=tocHeadRef>Prerequisites</h4>
<p>No prerequisites are required.<br />
<h4 id=tocHeadRef>Restart requirement</h4>
<p>You must restart the computer after you apply this hotfix.<br />
<h4 id=tocHeadRef>Hotfix replacement information</h4>
<p>This hotfix does not replace any other hotfixes.<br />
<h4 id=tocHeadRef>File information</h4>
<p>The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the <strong class=uiterm>Time Zone</strong> tab in the <strong class=uiterm>Date and Time</strong> item in Control Panel.<br />
<h5 id=tocHeadRef>Windows Server 2008, x86-based versions</h5>
<table cellspacing=1 class=table>
<tr>
<th>File name</th>
<th>File version</th>
<th>File size</th>
<th>Date</th>
<th>Time</th>
<th>Platform</th>
<th>SP requirement</th>
</tr>
<tr>
<td>Dumpata.sys</td>
<td>6.0.6001.22190</td>
<td>29,240</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Aliide.sys</td>
<td>1.2.0.0</td>
<td>17,464</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Amdide.sys</td>
<td>6.0.6001.22190</td>
<td>17,976</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Atapi.sys</td>
<td>6.0.6001.22190</td>
<td>21,560</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Ataport.sys</td>
<td>6.0.6001.22190</td>
<td>110,136</td>
<td>30-May-2008</td>
<td>05:58</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Cmdide.sys</td>
<td>2.0.7.0</td>
<td>19,000</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Intelide.sys</td>
<td>6.0.6001.22190</td>
<td>17,976</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Msahci.sys</td>
<td>6.0.6001.22190</td>
<td>28,728</td>
<td>30-May-2008</td>
<td>05:57</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Mshdc.inf</td>
<td>Not Applicable</td>
<td>47,458</td>
<td>30-May-2008</td>
<td>01:09</td>
<td>Not Applicable</td>
<td>SP1</td>
</tr>
<tr>
<td>Pciide.sys</td>
<td>6.0.6001.22190</td>
<td>16,440</td>
<td>30-May-2008</td>
<td>05:58</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Pciidex.sys</td>
<td>6.0.6001.22190</td>
<td>45,112</td>
<td>30-May-2008</td>
<td>05:58</td>
<td>x86</td>
<td>SP1</td>
</tr>
<tr>
<td>Viaide.sys</td>
<td>5.1.3790.150</td>
<td>20,024</td>
<td>30-May-2008</td>
<td>05:58</td>
<td>x86</td>
<td>SP1</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>STATUS</h2>
<div class=sbody>Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the Applies to section.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>For more information about software update terminology, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=>824684</a><span class=pLink> (/)</span> Description of the standard terminology that is used to describe Microsoft software updates</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Server 2008 Standard</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Server 2008 Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Server 2008 Datacenter</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Server 2008 Datacenter without Hyper-V</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Server 2008 Enterprise without Hyper-V</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Server 2008 for Itanium-Based Systems</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Server 2008 Standard without Hyper-V</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Web Server 2008</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbwinvistapostrtmfix kbautohotfix kbexpertiseinter kbbug kbfix kbhotfixserver kbqfe KB953533</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/a-computer-that-is-running-an-x86-version-of-windows-vista-or-of-windows-server-2008-on-an-ideata-disk-does-not-generate-a-valid-dump-file-when-pae-mode-is-enabled-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The characters in an equation are not printed when you print a Word 2007 document on a Windows XP-based or Windows Server 2003-based computer</title>
		<link>http://ossmall.info/the-characters-in-an-equation-are-not-printed-when-you-print-a-word-2007-document-on-a-windows-xp-based-or-windows-server-2003-based-computer/</link>
		<comments>http://ossmall.info/the-characters-in-an-equation-are-not-printed-when-you-print-a-word-2007-document-on-a-windows-xp-based-or-windows-server-2003-based-computer/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 12:56:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commerce Server 2007]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/the-characters-in-an-equation-are-not-printed-when-you-print-a-word-2007-document-on-a-windows-xp-based-or-windows-server-2003-based-computer</guid>
		<description><![CDATA[
Article ID: 960985 &#8211; Last Review: February 13, 2009 &#8211; Revision: 1.0
The characters in an equation are not printed when you print a Word 2007 document on a Windows XP-based or Windows Server 2003-based computer
View products that this article applies to.

Expand all &#124; Collapse all
SYMPTOMS


When you print a Microsoft Office Word 2007 document that		  [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a>
<div class=articleProperty>Article ID: 960985 &#8211; Last Review: February 13, 2009 &#8211; Revision: 1.0</div>
<p><strong class=title>The characters in an equation are not printed when you print a Word 2007 document on a Windows XP-based or Windows Server 2003-based computer</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div id=kb_section class=section>
<div id=kb_expandcollapseall class=expandcollapseall><a >Expand all</a> | <a >Collapse all</a></div>
<h2 class=subTitle id=tocHeadRef><span><a >SYMPTOMS</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>When you print a Microsoft Office Word 2007 document that		  contains an equation, the equation does not print, or the characters in the		  equation are not printed. </p>
<p>This issue occurs if the following		  conditions are true:
<ul>
<li>There is a bitmap on the same page as the equation.				</li>
<li> The 2007 Microsoft Office system is installed on a				Windows XP-based or Windows Server 2003-based computer. </li>
<li>The Complex Script support files are not installed.				</li>
</ul>
</div>
<h2 class=subTitle id=tocHeadRef><span><a >WORKAROUND</a></span>
<div class=sectionpreview_closed></div>
</h2>
<div class=sbody>To work around this issue, install the Complex Script		  support files. To do this, follow these steps:
<ol>
<li>Click <strong class=uiterm>Start</strong>, and then click				<strong class=uiterm>Run</strong></li>
<li>Type <span class=userInput>intl.cpl</span>, and then click				<strong class=uiterm>OK</strong>. </li>
<li>Click the <strong class=uiterm>Languages</strong> tab. </li>
<li>Under <strong class=uiterm>Supplemental language support</strong>, click				to select the <strong class=uiterm>Install files for complex script and right-to-left				languages (including Thai)</strong> check box. </li>
<li>When you receive the following message, click				<strong class=uiterm>OK</strong> to close the message:
<div class=message>You chose				to install the Arabic, Armenian, Georgian, Hebrew, Indic, Thai and Vietnamese				language files. This will require 10 MB or more of available disk space. The				files will be installed after you click OK or Apply on the Regional and				Language Options dialog box. </div>
</li>
<li>Click <strong class=uiterm>OK</strong> to close the <strong class=uiterm>Regional and				Language Options</strong> dialog box. </li>
</ol>
</div>
</div>
<div class=sbody norollup>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<ul>
<li>Microsoft Office Word 2007</li>
</ul>
</div>
<div class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></div>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Ã‚Â                             </h5>
</td>
<td class=text>kbqfe kbexpertisebeginner kbsurveynew kbprb KB960985</td>
</tr>
</table>
</div>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/the-characters-in-an-equation-are-not-printed-when-you-print-a-word-2007-document-on-a-windows-xp-based-or-windows-server-2003-based-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You cannot use the ImageX.exe tool as a backup tool on a Windows Vista-based computer</title>
		<link>http://ossmall.info/you-cannot-use-the-imagexexe-tool-as-a-backup-tool-on-a-windows-vista-based-computer/</link>
		<comments>http://ossmall.info/you-cannot-use-the-imagexexe-tool-as-a-backup-tool-on-a-windows-vista-based-computer/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:50:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/you-cannot-use-the-imagexexe-tool-as-a-backup-tool-on-a-windows-vista-based-computer/</guid>
		<description><![CDATA[You cannot use the ImageX.exe tool as a backup tool on a Windows Vista-based computer
View products that this article applies to.



Article ID
:
935467


Last Review
:
April 24, 2007


Revision
:
1.0




INTRODUCTION
This article describes the reasons why you cannot use the ImageX.exe tool as a backup tool on a Windows Vista-based computer. The ImageX.exe tool ships as part of the Windows Automated [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>You cannot use the ImageX.exe tool as a backup tool on a Windows Vista-based computer</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>935467</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>April 24, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>1.0</td>
</tr>
</table>
</div>
<div class=section>
<h2 class=subTitle id=tocHeadRef>INTRODUCTION</h2>
<div class=sbody>This article describes the reasons why you cannot use the ImageX.exe tool as a backup tool on a Windows Vista-based computer. The ImageX.exe tool ships as part of the Windows Automated Installation Kit (WAIK). </div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>You can use the ImageX.exe tool to capture an operating system installation  image on which you have run Sysprep (Sysprep.exe) from the Windows Preinstallation Environment (Windows PE). You can then deploy the operating system installation image on another computer.</p>
<p>Although the ImageX.exe tool may appear to be a mechanism to create an image of a computer for backup, there are several issues that prevent using the ImageX.exe tool as a supported backup mechanism.</p>
<p>The following are the issues when you use the ImageX.exe tool as a backup mechanism:<br />
<table class=list ul>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Extended attributes are lost.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>The ImageX.exe tool only applies reparse points that are symbolic links or junctions.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Sparse files on the system are captured and applied. However, the sparse files are no longer sparse after they have been applied.</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Object IDs on files are lost in the capture process or in the apply process.</td>
</tr>
</table>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Starter</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbexpertiseadvanced kbhowto KB935467</td>
</tr>
</table>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/you-cannot-use-the-imagexexe-tool-as-a-backup-tool-on-a-windows-vista-based-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Explorer crashes when you try to remove the $WINDOWS.OLD folder from a computer that has been upgraded to Windows Vista</title>
		<link>http://ossmall.info/windows-explorer-crashes-when-you-try-to-remove-the-windowsold-folder-from-a-computer-that-has-been-upgraded-to-windows-vista/</link>
		<comments>http://ossmall.info/windows-explorer-crashes-when-you-try-to-remove-the-windowsold-folder-from-a-computer-that-has-been-upgraded-to-windows-vista/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:50:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Explorer 7]]></category>
		<category><![CDATA[Vista Center]]></category>
		<category><![CDATA[Vista Easter Eggs]]></category>
		<category><![CDATA[Vista HowTo]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[Windows Defender]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windows Server 2008 - HowTo]]></category>
		<category><![CDATA[Windows Server 2008 - Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/windows-explorer-crashes-when-you-try-to-remove-the-windowsold-folder-from-a-computer-that-has-been-upgraded-to-windows-vista/</guid>
		<description><![CDATA[Windows Explorer crashes when you try to remove the $WINDOWS.OLD folder from a computer that has been upgraded to Windows Vista
View products that this article applies to.



Article ID
:
931702


Last Review
:
March 20, 2007


Revision
:
2.0




On This Page



SYMPTOMS
When you use Windows Explorer to  try to remove the drive: $WINDOWS.OLD folder from a computer that has been upgraded from an [...]]]></description>
			<content:encoded><![CDATA[<div><span id=oss><!-- - -KB 3 start- - --><a id=top></a><strong class=title>Windows Explorer crashes when you try to remove the $WINDOWS.OLD folder from a computer that has been upgraded to Windows Vista</strong>
<div class=appliesToLink><a href=#appliesto>View products that this article applies to.</a></div>
<div class=articleProperty>
<table>
<tr>
<td>Article ID</td>
<td>:</td>
<td>931702</td>
</tr>
<tr>
<td>Last Review</td>
<td>:</td>
<td>March 20, 2007</td>
</tr>
<tr>
<td>Revision</td>
<td>:</td>
<td>2.0</td>
</tr>
</table>
</div>
<div class=toc id=tocDiv>
<h5>On This Page</h5>
</div>
<p><noscript></noscript>
<div class=section>
<h2 class=subTitle id=tocHeadRef>SYMPTOMS</h2>
<div class=sbody>When you use Windows Explorer to  try to remove the <var>drive</var>: $WINDOWS.OLD folder from a computer that has been upgraded from an earlier version of Windows to Windows Vista, Windows Explorer crashes. In this scenario, you receive the following error message:
<div class=errormsg>Faulting application Explorer.EXE, version 6.0.5756.0, time stamp 0&#215;452999fb, faulting module SHELL32.dll, version 6.0.5756.0, time stamp 0&#215;4529b38a, exception code 0xc0000005, fault offset 0&#215;000000000000c941, process id 0xbf8, application start time 0&#215;01c6ecae8503dd46.</div>
<p><b>Note</b> The $WINDOWS.OLD folder is a hidden system folder. Sometimes, this folder has a name other than $WINDOWS.OLD. For example, this folder may be named $WINDOWS.~Q. For information about how to view this folder, see the More Information section.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>CAUSE</h2>
<div class=sbody>This issue occurs if at least one of the files that Windows Vista tries to delete from the $WINDOWS.OLD folder is corrupted.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>RESOLUTION</h2>
<div class=sbody>To resolve this issue, use one of the following methods to remove the $WINDOWS.OLD folder.</p>
<p><b>Important</b> Make sure that you back up any important data that is located in the $WINDOWS.OLD folder before you follow these steps.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<h3 id=tocHeadRef>Method 1: Use the Disk Cleanup tool</h3>
<p>The Disk Cleanup tool (Cleanmgr.exe) is  included with Windows Vista. You can use this tool to remove the $WINDOWS.OLD folder together with its contents. To do this, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Click <strong class=uiterm>Start</strong><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/VistaStartButton.jpg alt=Start button title=Start button>, and then click <strong class=uiterm>Computer</strong>.</td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>Right-click the hard disk from which you want to remove the $WINDOWS.OLD folder, and then click <strong class=uiterm>Properties</strong>.</td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text>Click the <strong class=uiterm>General</strong> tab, and then click <strong class=uiterm>Disk Cleanup</strong>.</td>
</tr>
<tr>
<td class=number>4.</td>
<td class=text>Click <strong class=uiterm>Files from all users on this computer</strong>.</p>
<p><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/SecurityShield.jpg alt= User Account Control permission  title= User Account Control permission > If you are prompted for an administrator password or for confirmation, type the password, or click <strong class=uiterm>Continue</strong>.  </td>
</tr>
<tr>
<td class=number>5.</td>
<td class=text>In the <strong class=uiterm>File to delete</strong> list, click to select the <strong class=uiterm>File discarded by Windows upgrade</strong> check box. </p>
<p><b>Note</b> Click to clear other check boxes, depending on the other files that you want to remove.</td>
</tr>
<tr>
<td class=number>6.</td>
<td class=text>Click <strong class=uiterm>OK</strong>, and then click <strong class=uiterm>Delete Files</strong> to confirm that you want to permanently remove the $WINDOWS.OLD folder together with its subfolders and files.</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<h3 id=tocHeadRef>Method 2: Use the RD command</h3>
<p>You can use the <b>RD</b> (Remove Directory) command-line command to remove the $WINDOWS.OLD folder together with its contents. To do this, follow these steps:<br />
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Click <strong class=uiterm>Start</strong><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/VistaStartButton.jpg alt=Start button title=Start button>, type <span class=userInput>cmd</span> in the <strong class=uiterm>Start Search</strong> box, right-click <strong class=uiterm>cmd.exe</strong> in the <strong class=uiterm>Programs</strong> list, and then click <strong class=uiterm>Run as administrator</strong>.</p>
<p><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/SecurityShield.jpg alt= User Account Control permission  title= User Account Control permission > If you are prompted for an administrator password or for confirmation, type the password, or click <strong class=uiterm>Continue</strong>.  </td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>Type <span class=userInput>cd </span>, and then press ENTER to change to the root directory of the current drive. Generally, this is drive C.</td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text>Type <span class=userInput><var>drive</var>:</span>, and then press ENTER to change to the drive from which you want to remove the $WINDOWS.OLD folder. For example, if the $WINDOWS.OLD folder is on drive D, type <span class=userInput>d:</span>, and then press ENTER. </p>
<p><b>Note</b> If the command prompt is already at the correct drive, skip this step.</td>
</tr>
<tr>
<td class=number>4.</td>
<td class=text>Type <span class=userInput>rd $windows.old /s</span>, and then press ENTER to remove the $WINDOWS.OLD folder together with its subfolders.</td>
</tr>
<tr>
<td class=number>5.</td>
<td class=text>When you are prompted to confirm the removal of the $WINDOWS.OLD folder, type <span class=userInput>y</span>, and then press ENTER.</td>
</tr>
</table>
<p>For more information about how to use the <b>RD</b> command, type <span class=userInput>rd /?</span> at a command prompt, and then press ENTER. For more information, click the following article number to view the article in the Microsoft Knowledge Base:
<div class=indent><a class=KBlink href=/Feedback.aspx?kbNumber=120716>120716</a><span class=pLink> (/Feedback.aspx?kbNumber=120716/)</span> How to remove files with reserved names in Windows</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>STATUS</h2>
<div class=sbody>Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the Applies to section.
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<h2 class=subTitle id=tocHeadRef>MORE INFORMATION</h2>
<div class=sbody>When you upgrade an earlier version of Windows to Windows Vista, the Windows Vista Setup program moves the files and the folders from the original Windows installation to a $WINDOWS.OLD folder. You can access the data in the $WINDOWS.OLD folder after the Windows Vista  Setup program is  finished. For more information about how the Setup program works, visit the following Microsoft Web site:
<div class=indent><span class=ll><a href=http://technet2.microsoft.com/WindowsVista/en/library/8b7d0f15-321f-471a-9674-f8a4b467c1091033.mspx?mfr=true>http://technet2.microsoft.com/WindowsVista/en/library/8b7d0f15-321f-471a-9674-f8a4b467c1091033.mspx?mfr=true</a></span><span class=pLink> (http://technet2.microsoft.com/WindowsVista/en/library/8b7d0f15-321f-471a-9674-f8a4b467c1091033.mspx?mfr=true)</span></div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<h3 id=tocHeadRef>How to view the $WINDOWS.OLD folder</h3>
<table class=list ol>
<tr>
<td class=number>1.</td>
<td class=text>Click <strong class=uiterm>Start</strong><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/VistaStartButton.jpg alt=Start button title=Start button>, type <span class=userInput>folder options</span> in the <strong class=uiterm>Start Search</strong> box, and then click <strong class=uiterm>Folder Options</strong> in the <strong class=uiterm>Programs</strong> list.</p>
<p><img class=graphic src=http://support.microsoft.com/library/images/support/kbgraphics/Public/EN-US/SecurityShield.jpg alt= User Account Control permission  title= User Account Control permission > If you are prompted for an administrator password or for confirmation, type the password, or click <strong class=uiterm>Continue</strong>.  </td>
</tr>
<tr>
<td class=number>2.</td>
<td class=text>Click the <strong class=uiterm>View</strong> tab, click <strong class=uiterm>Show hidden files and folders</strong>, and then click to clear the following two check boxes:
<div class=indent><strong class=uiterm>Hide extensions for known file types</strong><br /><strong class=uiterm>Hide protected operating system files (Recommended)</strong></div>
</td>
</tr>
<tr>
<td class=number>3.</td>
<td class=text>Click <strong class=uiterm>Yes</strong> to confirm that you want to display operating system files, and then click <strong class=uiterm>OK</strong>.</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
</div>
<div class=appliesTo>
<hr /><a id=appliesto></a><br />
<h5>APPLIES TO</h5>
<table class=list>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Business</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Enterprise 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Basic 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Home Premium 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Ultimate 64-bit edition</td>
</tr>
<tr>
<td class=bullet>â€¢</td>
<td class=text>Windows Vista Starter</td>
</tr>
</table>
</div>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
<div class=keywords>
<table>
<tr>
<td class=header>
<h5>Keywords:Â </h5>
</td>
<td class=text>kbpending kbbug kbdeployment kberrmsg kbfilesystems kbexpertisebeginner kbtshoot kbprb KB931702</td>
</tr>
</table>
<p class=topOfPage><a href=#top><img src=http://support.microsoft.com/library/images/support/kbgraphics/public/en-us/uparrow.gif alt=>Back to the top</a></p>
</div>
<p></span>					<A name=feedback>&nbsp;</A>                    <br/>				</div>
<h5>Microsoft Knowledge Base Article</h5>
<p class='MsoNormal'>This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href='http://support.microsoft.com/tou/'>Terms of Use</a> | <a href='http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx'>Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/windows-explorer-crashes-when-you-try-to-remove-the-windowsold-folder-from-a-computer-that-has-been-upgraded-to-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
