<?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>..::\\ www.christiano.ch //::..</title>
	<atom:link href="http://www.christiano.ch/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.christiano.ch/wordpress</link>
	<description>christiano.ch blog - personal knowledgebase, news, memoirs et cetera</description>
	<lastBuildDate>Sun, 14 Mar 2010 09:14:10 +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>Microsoft Exchange 2007 / 2010 &#8211; Statistics using Exchange Management Shell (EMS)</title>
		<link>http://www.christiano.ch/wordpress/2010/03/14/microsoft-exchange-2007-2010-statistics-using-exchange-management-shell-ems/</link>
		<comments>http://www.christiano.ch/wordpress/2010/03/14/microsoft-exchange-2007-2010-statistics-using-exchange-management-shell-ems/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 09:14:10 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/03/14/microsoft-exchange-2007-2010-statistics-using-exchange-management-shell-ems/</guid>
		<description><![CDATA[


Using Microsoft Exchange 2007 / 2010 Management Shell (PowerShell with extensions), you can pull out some very exciting statistics. That was never that easy in the pre Exchange 2007 era.
 



 
Let’s start with some easy stuff..
Get the number of Public Folders
Get-PublicFolder -Recurse &#124; Measure-Object
Get the sum / number of Mails / Object in all [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="676">Using Microsoft Exchange 2007 / 2010 Management Shell (PowerShell with extensions), you can pull out some very exciting statistics. That was never that easy in the pre Exchange 2007 era.</td>
<td valign="top" width="10"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/03/Logo_ExchangeSvr.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Logo_ExchangeSvr" border="0" alt="Logo_ExchangeSvr" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/03/Logo_ExchangeSvr_thumb.png" width="160" height="90" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-898"></span>
<p>Let’s start with some easy stuff..</p>
<p><strong>Get the number of Public Folders</strong></p>
<p><code>Get-PublicFolder -Recurse | Measure-Object</code></p>
<p><strong>Get the sum / number of Mails / Object in all Public Folders</strong></p>
<p><code>Get-PublicFolderStatistics | Measure-Object -Property ItemCount -Sum</code></p>
<p><strong>Get the number of Mailboxes</strong></p>
<p><code>Get-Mailbox | Measure-Object</code></p>
<p><strong>Get the number of sent messages / emails within a date range</strong></p>
<p><code>Get-MessageTrackingLog -Start &quot;29.11.2009&quot; -End &quot;30.12.2009&quot; -ResultSize Unlimited | Measure-Object</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/03/14/microsoft-exchange-2007-2010-statistics-using-exchange-management-shell-ems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: Creating large dummy files with .NET</title>
		<link>http://www.christiano.ch/wordpress/2010/03/13/powershell-creating-large-dummy-files-with-net/</link>
		<comments>http://www.christiano.ch/wordpress/2010/03/13/powershell-creating-large-dummy-files-with-net/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 13:23:02 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/03/13/powershell-creating-large-dummy-files-with-net/</guid>
		<description><![CDATA[


Ok, this one’s is cool i think. Whenever i needed a large dummy file, i opened up notepad, write ASDFASDFASDFA CTRL-A, CTRL-C, CTRL-V,CTRL-V,CTRL-V,CTRL-V. CTRL-A, CTRL-C, CTRL-V,CTRL-V,CTRL-V,CTRL-V,CTRL-V.. Then i saved the file, opened up a CMD-Shell and wrote copy dummyFile.txt+dummyFile.txt+dummyFile.txt until the file was large enough.. ok, there’s fsutil.exe which does the same in a much [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="666">Ok, this one’s is cool i think. Whenever i needed a large dummy file, i opened up notepad, write ASDFASDFASDFA CTRL-A, CTRL-C, CTRL-V,CTRL-V,CTRL-V,CTRL-V. CTRL-A, CTRL-C, CTRL-V,CTRL-V,CTRL-V,CTRL-V,CTRL-V.. Then i saved the file, opened up a CMD-Shell and wrote copy dummyFile.txt+dummyFile.txt+dummyFile.txt until the file was large enough.. ok, there’s fsutil.exe which does the same in a much more efficient manner.. OR, unleash the Power of .NET – no, you don’t have to start programming using Visual Studio, just open up PowerShell.. </td>
<td valign="top" width="10"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/03/Logo_PowerShell1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Logo_PowerShell" border="0" alt="Logo_PowerShell" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/03/Logo_PowerShell_thumb1.png" width="160" height="125" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-895"></span>
<p>Ok, the goal is to have a 1gb large dummy file .. </p>
<p>first we declare a string variable called file: </p>
<p><code>PS C:\&gt; $file = &quot;$env:temp\dummyFile.txt&quot;</code></p>
<p>no we create on object of type Io.File    <br /><code>PS C:\&gt; $objFile = [io.file]::Create($file)</code></p>
<p>on the object, we call the void SetLength parameterized with 1gb&#160; <br /><code>PS C:\&gt; $objFile.SetLength(1gb)</code></p>
<p>no we call the close method and the file is written    <br /><code>PS C:\&gt; $objFile.Close()</code></p>
<p>using get-item $file we list the file we just created:</p>
<p><code>PS C:\&gt; Get-Item $file </code><code>Directory: C:\Users\&lt;removed&gt;\AppData\Local\Temp </code></p>
<p><code>Mode&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; LastWriteTime&#160;&#160;&#160;&#160; Length Name      <br />----&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; -------------&#160;&#160;&#160;&#160; ------ ----       <br />-a---&#160;&#160;&#160;&#160;&#160;&#160;&#160; 13.03.2010&#160;&#160;&#160;&#160; 14:07 1073741824 dummyFile.txt </code></p>
<p><code>PS C:\&gt;</code></p>
<p>Ok, finally we can call an ii (Invoke-Item) to open the Path where the dummyFile resides in Windows Explorer. </p>
<p>To get the Path from a File, we can use Get-ChildItem (Get-ChildItems returns a FileInfo Object/Class). This object has a DirectoryName Property. </p>
<p>We declare an Object $path</p>
<p><code>$path = Get-ChildItem $file</code></p>
<p>Finally we call the mentioned ii (Invoke-Item) to open the path in Windows Explorer.</p>
<p><code>ii $path.DirectoryName</code></p>
<p><strong><em>The complete Script </em></strong></p>
<p><code>$file = &quot;$env:temp\dummyFile.txt&quot;      <br />$objFile = [io.file]::Create($file)       <br />$objFile.SetLength(1gb)       <br />$objFile.Close()       <br />$path = Get-ChildItem $file       <br />ii $path.DirectoryName</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/03/13/powershell-creating-large-dummy-files-with-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WCF: Configuring HTTP / HTTPS to host a System.ServiceModel WCF Service</title>
		<link>http://www.christiano.ch/wordpress/2010/03/11/wcf-configuring-http-https-to-host-a-system-servicemodel-wcf-service/</link>
		<comments>http://www.christiano.ch/wordpress/2010/03/11/wcf-configuring-http-https-to-host-a-system-servicemodel-wcf-service/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 06:17:32 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Windows Communication Foundation]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/03/11/wcf-configuring-http-https-to-host-a-system-servicemodel-wcf-service/</guid>
		<description><![CDATA[


Using Windows Communication Foundation (WCF) over HTTP either requires the use of a host, such as Internet Information Services (IIS), or manual configuration of the HTTP settings through the HTTP Server API. This post describes how to manually configure WCF when using HTTP and HTTPS.
 



 
The tool used to configure HTTP settings depends on [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="546">Using Windows Communication Foundation (WCF) over HTTP either requires the use of a host, such as Internet Information Services (IIS), or manual configuration of the HTTP settings through the HTTP Server API. This post describes how to manually configure WCF when using HTTP and HTTPS.</td>
<td valign="top" width="128"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/03/Logo_WCF.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Logo_WCF" border="0" alt="Logo_WCF" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/03/Logo_WCF_thumb.png" width="160" height="80" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-891"></span>
<p>The tool used to configure HTTP settings depends on the operating system the computer is running. </p>
<p>When running Windows Server 2003 or Windows XP, use the <strong><em>HttpCfg.exe</em></strong> tool. With Windows Server 2003 this tool is installed. With Windows XP, you can download the tool at <a href="http://go.microsoft.com/fwlink/?LinkId=88606" target="_blank">Windows XP Service Pack 2 Support Tools</a>. For more information, see <a href="http://go.microsoft.com/fwlink/?LinkId=88605" target="_blank">Httpcfg Overview</a>. </p>
<p>With Windows Vista, you configure these settings with the <strong><em>Netsh.exe</em></strong> tool. </p>
<p>However, before you try running a Console Application or Windows Service application that hosts a WCF service with <em>basicHttpBinding </em>or <em>wsHttpBinding</em>, see <a title="MSDN article about &quot;Configuring HTTP and HTTPS&quot;" href="http://msdn.microsoft.com/en-us/library/ms733768.aspx">this MSDN article about &quot;Configuring HTTP and HTTPS&quot;</a>. If you are WAS-hosted or Web App-hosted, the urlacl entries are made on your behalf.</p>
<p>You can view the current entries with &quot;netsh http show urlacl&quot;. To make the changes, you&#8217;ll need to &quot;Run as Administrator&quot; when going into your Command Prompt.</p>
<p>I decided to use the following command: </p>
<p> <code>netsh http add urlacl url=http://+:8080/ user=\Everyone </code>
<p>You should adjust the ports and/or path as necessary for your situation:</p>
<p> <code>netsh http add urlacl url=http://+:8080/MyConsoleAppHostedService user=DOMAIN\user netsh http add urlacl url=http://+:8091/MyWindowsServiceHostedService user=\SYSTEM </code>
<p>to delete an urlacl do:</p>
<p> <code>delete urlacl url=https://*:8172/</code>
<p><strong></strong></p>
<p><strong>Links</strong></p>
<p><a title="Configuring HTTP and HTTPS on Microsoft MSDN" href="http://msdn.microsoft.com/en-us/library/ms733768.aspx" target="_blank">Configuring HTTP and HTTPS on Microsoft MSDN</a></p>
<p><a title="Netsh Commands for Hypertext Transfer Protocol on Microsoft Technet" href="http://technet.microsoft.com/en-us/library/cc725882%28WS.10%29.aspx" target="_blank">Netsh Commands for Hypertext Transfer Protocol on Microsoft Technet</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/03/11/wcf-configuring-http-https-to-host-a-system-servicemodel-wcf-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: Running PowerShell Scripts as Scheduled Task</title>
		<link>http://www.christiano.ch/wordpress/2010/03/10/powershell-running-powershell-scripts-as-scheduled-task/</link>
		<comments>http://www.christiano.ch/wordpress/2010/03/10/powershell-running-powershell-scripts-as-scheduled-task/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 06:04:39 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scheduled Task]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/03/10/powershell-running-powershell-scripts-as-scheduled-task/</guid>
		<description><![CDATA[


Schtasks.exe &#8211; Enables an administrator to create, delete, query, change, run, and end scheduled tasks on a local or remote computer. Running Schtasks.exe without arguments displays the status and next run time for each registered task.           
If you have jobs that need to execute regularly, [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="671">Schtasks.exe &#8211; Enables an administrator to create, delete, query, change, run, and end scheduled tasks on a local or remote computer. Running Schtasks.exe without arguments displays the status and next run time for each registered task.          <br /> 
<p>If you have jobs that need to execute regularly, you can manage them with a PowerShell script and make it a scheduled task:</p>
</td>
<td valign="top" width="10"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/03/Logo_PowerShell.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Logo_PowerShell" border="0" alt="Logo_PowerShell" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/03/Logo_PowerShell_thumb.png" width="160" height="125" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-888"></span>
<p>To create a scheduled task do.</p>
<p><code>schtasks /CREATE /TN CheckHealthScript /TR &quot;powershell.exe -noprofile -executionpolicy Unrestricted -file %public%\checkhealth.ps1&quot; /IT /RL HIGHEST /SC DAILY</code></p>
<p>To get a list of scheduled tasks / enumerate scheduled tasks do:</p>
<p><code>schtasks /query</code></p>
<p><strong>Links</strong></p>
<p><a title="Running PowerShell Scripts as Scheduled Task" href="http://powershell.com/cs/blogs/tips/archive/2010/03/09/running-powershell-scripts-as-scheduled-task.aspx" target="_blank">Running PowerShell Scripts as Scheduled Task</a></p>
<p><a title="About Scheduled Tasks on MSDN" href="http://msdn.microsoft.com/en-us/library/bb736357%28VS.85%29.aspx" target="_blank">About Scheduled Tasks on MSDN</a></p>
<p><a title="About Scheduled Tasks on Technet" href="http://technet.microsoft.com/en-us/library/bb490996.aspx" target="_blank">About Scheduled Tasks on Technet</a></p>
<p>&#160;</p>
<p><strong><em>Script to enumerate / list scheduled tasks on a list of servers..</em></strong></p>
<p> <code>$Version=&quot;v8.4.28 Aaron Dodd&quot;   <br />$Description=&quot;Generate CSV of scheduled tasks in the environment&quot;    </p>
<p>#------------------------------------------------------------------------------    <br /># Settings / Variables    <br />#------------------------------------------------------------------------------    <br />If (Test-Path &quot;QueryScheduledTasks.config&quot;) {    <br />$cfg=[xml](get-content &quot;QueryScheduledTasks.config&quot;)    <br />} Else {    <br />Write-Host &quot;!! ERROR !! - Config file not found&quot;    <br />Write-Host &quot;A file with the same name as this script, ending in .config, must exist in the same directory as this script.&quot;    <br />exit    <br />}    </p>
<p>$ServerList = Import-Csv $cfg.configuration.ServerList.name    <br />$FinalReport=$cfg.configuration.FinalReport.name    <br />$TempDir=$cfg.configuration.TempFolder.name    <br />$TempReport=$TempDir + &quot;\temp.csv&quot;    <br />$ErrorActionPreference=$cfg.configuration.ErrorAction.value    <br />#------------------------------------------------------------------------------    </p>
<p>#------------------------------------------------------------------------------    <br /># Process tasks    <br />#------------------------------------------------------------------------------    <br />ForEach ($Server in $ServerList) {    <br />schtasks /QUERY /S $Server.Name /FO CSV /V &gt; $TempReport    <br />$TempCsv += Import-Csv $TempReport    <br />}    <br />Remove-Item $TempReport    <br />$TempCsv | Export-Csv $FinalReport -notype    <br />#----------------------------------------------------------------</code>
<p>found here =&gt; <a title="http://blog.geekpoet.net/2008/04/powershell-script-to-report-on-all.html" href="http://blog.geekpoet.net/2008/04/powershell-script-to-report-on-all.html" target="_blank">http://blog.geekpoet.net/2008/04/powershell-script-to-report-on-all.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/03/10/powershell-running-powershell-scripts-as-scheduled-task/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel 2010: PowerPivot</title>
		<link>http://www.christiano.ch/wordpress/2010/02/25/excel-2010-powerpivot/</link>
		<comments>http://www.christiano.ch/wordpress/2010/02/25/excel-2010-powerpivot/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 11:51:44 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[Excel 2010]]></category>
		<category><![CDATA[PowerPivot]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/02/25/excel-2010-powerpivot/</guid>
		<description><![CDATA[


Microsoft PowerPivot for Excel 2010, formerly known as Project &#34;Gemini&#34;, is a data analysis add-in that delivers unmatched computational power directly withing Microsoft Excel 2010
 



 
PowerPivot gives users the power to create compelling self-service BI solutions, facilitates sharing and collaboration on user-generated BI solutions in a Microsoft SharePoint Server 2010 environment, and enables IT [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="715">Microsoft PowerPivot for Excel 2010, formerly known as Project &quot;Gemini&quot;, is a data analysis add-in that delivers unmatched computational power directly withing Microsoft Excel 2010</td>
<td valign="top" width="10"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_Excel_2010.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Logo_Excel_2010" border="0" alt="Logo_Excel_2010" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_Excel_2010_thumb.png" width="165" height="65" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-885"></span>
<p>PowerPivot gives users the power to create compelling self-service BI solutions, facilitates sharing and collaboration on user-generated BI solutions in a Microsoft SharePoint Server 2010 environment, and enables IT organizations to increase operational efficiencies through Microsoft SQL Server 2008 R2-based management tools. </p>
<p><strong>Links</strong></p>
<p><a title="Microsoft PowerPivot" href="http://www.powerpivot.com/" target="_blank">Microsoft PowerPivot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/02/25/excel-2010-powerpivot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Exec: VSS Snapshot warning. File &lt;path&gt; is not present on the snapshot.</title>
		<link>http://www.christiano.ch/wordpress/2010/02/25/backup-exec-vss-snapshot-warning-file-path-is-not-present-on-the-snapshot/</link>
		<comments>http://www.christiano.ch/wordpress/2010/02/25/backup-exec-vss-snapshot-warning-file-path-is-not-present-on-the-snapshot/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 11:22:38 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Backup Exec]]></category>
		<category><![CDATA[Volume Shadow Copy Service]]></category>
		<category><![CDATA[VSS]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/02/25/backup-exec-vss-snapshot-warning-file-path-is-not-present-on-the-snapshot/</guid>
		<description><![CDATA[


Ok, i have/had this exception in five different Backup Exec installations. It’s not an error, it’s just a exception/notification that one setup (most often a driver installation) registered a file for the VSS (Volume Shadow Service) to backup. 
 



 
The i found this one here:
A product installer &#8211; possibly from a 3rd party app [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="572">Ok, i have/had this exception in five different Backup Exec installations. It’s not an error, it’s just a exception/notification that one setup (most often a driver installation) registered a file for the VSS (Volume Shadow Service) to backup. </td>
<td valign="top" width="102"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_SymantecBackupExec.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Logo_SymantecBackupExec" border="0" alt="Logo_SymantecBackupExec" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_SymantecBackupExec_thumb.png" width="165" height="47" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-882"></span>
<p>The i found this one here:</p>
<p>A product installer &#8211; possibly from a 3rd party app has registered that file as being required for a System State backup and not then removed the registration from the System State when the file was removed. </p>
<p>Either identify the vendor of the file and speak to them about a fix &#8211; or create a file with the same name in the same folder. Note it is unlikely that you will need the specific file for a restore (assuming your server does restart correctly currently)</p>
<p>So, to have a short break fix, just create a dummy file OR contact the vendor of the driver/program.</p>
<p><a title="Volume Shadow Copy Service (VSS) System Writer backup fails, and error messages reference nonexistent files in Windows Server 2008" href="http://support.microsoft.com/kb/955078" target="_blank">Microsoft KB955078</a> <em>Volume Shadow Copy Service (VSS) System Writer backup fails, and error messages reference nonexistent files in Windows Server 2008</em></p>
<p>Symantec had a KB entry, but the removed it.. i found it in the Google cache:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><a href="http://www.symantec.com"></a></p>
<p>Document ID: 303664    <br /><a href="http://support.veritas.com/docs/303664">http://support.veritas.com/docs/303664</a> <a href="http://209.85.229.132/"><img border="0" alt="E-Mail Colleague Icon" src="http://seer.entsupport.symantec.com/images/icoemail.gif" width="20" height="15" />E-Mail this document to a colleague</a></p>
<p>System State backup of a Windows 2008 server completes with an exception </p>
<hr noshade="noshade" />
<p>Exact Error Message   <br />Backup- System?State System?State    <br />VSS Snapshot warning. File [PATH] [FILENAME] is not present on the snapshot.</p>
<p>Details:</p>
<p>System State backup of a Windows 2008 server may complete with the above mentioned exception if a driver file(s) was deleted/renamed. For example in the Figure 1, 04mmdat.sys is causing the exception.   </p>
<p>Volume Shadow Copy Service (VSS) System Writer may list a file to be backed up even though the file is no longer present on the server. View the {GUID}-System_Writer.xml file located in the directory C:\Program Files\Symantec\Backup Exec\Logs to confirm if the writer lists the file present as an exception in the job log.    <br /><b>NOTE:</b>    <br />The exception can be safely ignored as it does not affect the functionality of the Backup set.    <br /><b>Workaround:</b>    <br />Follow the steps listed below:    <br />1. Create a empty text file with the same name as the file mentioned in the exception    <br />2. Place the document in the same location as in the exception    <br /><b>Resolution:</b>    <br />For more details on resolution refer to the following article from Microsoft:    <br /><a href="http://support.microsoft.com/kb/955078">http://support.microsoft.com/kb/955078</a></p>
<p>Supplemental Material:</p>
<p>System: Ref.#   <br />Description</p>
<p>ETrack: 1264044    <br />VSS Snapshot exceptions happen during system state backup if tape drivers were deleted</p>
<p>Acknowledgements   <br />Microsoft </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Symantec_DocID303664.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Symantec_DocID303664" border="0" alt="Symantec_DocID303664" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Symantec_DocID303664_thumb.png" width="657" height="1118" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/02/25/backup-exec-vss-snapshot-warning-file-path-is-not-present-on-the-snapshot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2008 R2: Features Poster</title>
		<link>http://www.christiano.ch/wordpress/2010/02/23/windows-server-2008-r2-features-poster/</link>
		<comments>http://www.christiano.ch/wordpress/2010/02/23/windows-server-2008-r2-features-poster/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 08:22:24 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/02/23/windows-server-2008-r2-features-poster/</guid>
		<description><![CDATA[


This poster provides a visual reference for understanding key technologies in Windows Server 2008 R2. It focuses on Active Directory Domain Services, Hyper-V, Internet Information Services, Remote Desktop Services (including Virtual Desktop Infrastructure (VDI)), BranchCache, and DirectAccess technologies.
 



 
In addition, updates to core file services and server management are illustrated. You can use this [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="597">This poster provides a visual reference for understanding key technologies in Windows Server 2008 R2. It focuses on Active Directory Domain Services, Hyper-V, Internet Information Services, Remote Desktop Services (including Virtual Desktop Infrastructure (VDI)), BranchCache, and DirectAccess technologies.</td>
<td valign="top" width="77"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_WindowsServer_2008R2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Logo_Windows-Server_2008R2" border="0" alt="Logo_Windows-Server_2008R2" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_WindowsServer_2008R2_thumb.png" width="165" height="56" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-877"></span>
<p>In addition, updates to core file services and server management are illustrated. You can use this poster in conjunction with the previously published Windows Server 2008 Component Posters. </p>
<p><a title="Microsoft Windows Server 2008 R2 Features Poster" href="http://www.christiano.ch/common/multimedia/images/windowsserver2008r2features_Poster.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="windowsserver2008r2features_Poster" border="0" alt="windowsserver2008r2features_Poster" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/windowsserver2008r2features_Poster.png" width="644" height="382" /></a>     <br /><a title="Microsoft Windows Server 2008 R2 Features Poster" href="http://www.christiano.ch/common/multimedia/images/windowsserver2008r2features_Poster.png" target="_blank">click picture or here to enlarge</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/02/23/windows-server-2008-r2-features-poster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WCF Service: Adding a reference results in: System.BadImageFormatException</title>
		<link>http://www.christiano.ch/wordpress/2010/02/20/wcf-service-adding-a-reference-results-in-system-badimageformatexception/</link>
		<comments>http://www.christiano.ch/wordpress/2010/02/20/wcf-service-adding-a-reference-results-in-system-badimageformatexception/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 12:57:24 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[Service Reference]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Winform]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/02/20/wcf-service-adding-a-reference-results-in-system-badimageformatexception/</guid>
		<description><![CDATA[


I have a Solution with a WCF Service Project, a few Classes in projects and a Winform Project. When trying to add a Service Reference from within the Winform Project i always got the Microsoft WCF Service Host &#8211; ‘System.BadImageFormatException: Could not load file or assembly &#8216;file’..
 



 
An explanation or better, a direction I’ve [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="672">I have a Solution with a WCF Service Project, a few Classes in projects and a Winform Project. When trying to add a Service Reference from within the Winform Project i always got the <em>Microsoft WCF Service Host &#8211; ‘System.BadImageFormatException: Could not load file or assembly &#8216;file’..</em></td>
<td valign="top" width="10"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_Visual_Studio_20101.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Logo Microsoft Visual Studio" border="0" alt="Logo Microsoft Visual Studio" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_Visual_Studio_2010_thumb1.jpg" width="165" height="64" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-873"></span>
<p>An explanation or better, a direction I’ve found at <a href="http://www.atalasoft.com/kb/article.aspx?id=10165" target="_blank">Atalasoft Knowledgebase Q10165</a>.</p>
<p>I just changed the <strong><em>Platform target </em></strong>from <strong><em>x86 </em></strong>to <strong><em>Any CPU</em></strong>, recompiled both projects in the solution and since then, i can add a service reference. Who knows why.. you? drop me a mail/comment!</p>
<p><strong><em>Error Message i got: </em></strong></p>
<p><em>System.BadImageFormatException: Could not load file or assembly &#8216;file:///D:\Development\WCFTestService.SQL.2010\Media.Manager.SQL.Services.WCF\bin\Debug\Media.Manager.SQL.Services.WCF.exe&#8217; or one of its dependencies. An attempt was made to load a program with an incorrect format.     <br />File name: &#8216;file:///D:\Development\WCFTestService.SQL.2010\Media.Manager.SQL.Services.WCF\bin\Debug\Media.Manager.SQL.Services.WCF.exe&#8217;      <br />&#160;&#160; at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark&amp; stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)      <br />&#160;&#160; at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection, Boolean suppressSecurityChecks)      <br />&#160;&#160; at System.Reflection.Assembly.Load(AssemblyName assemblyRef)      <br />&#160;&#160; at Microsoft.Tools.SvcHost.ServiceHostHelper.LoadServiceAssembly(String svcAssemblyPath) </em></p>
<p><em>WRN: Assembly binding logging is turned OFF.     <br />To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.      <br />Note: There is some performance penalty associated with assembly bind failure logging.      <br />To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/02/20/wcf-service-adding-a-reference-results-in-system-badimageformatexception/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS.NET: Add Service Reference, Discover Service does not work</title>
		<link>http://www.christiano.ch/wordpress/2010/02/20/vs-net-add-service-reference-discover-service-does-not-work/</link>
		<comments>http://www.christiano.ch/wordpress/2010/02/20/vs-net-add-service-reference-discover-service-does-not-work/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 12:35:01 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[Service Reference]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/02/20/vs-net-add-service-reference-discover-service-does-not-work/</guid>
		<description><![CDATA[


Trying to add a Service Reference in Visual Studio using the Discover Services in Solution and the Wizard can’t find the Service in the Solution?
 



 
In order to use the &#34;Discover services in solution&#34; functionality, the service projects must be based on one of the WCF project templates.    If you want [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="668">Trying to add a Service Reference in Visual Studio using the Discover Services in Solution and the Wizard can’t find the Service in the Solution?</td>
<td valign="top" width="10"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_Visual_Studio_2010.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Logo Microsoft Visual Studio" border="0" alt="Logo Microsoft Visual Studio" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_Visual_Studio_2010_thumb.jpg" width="165" height="64" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-870"></span>
<p>In order to use the &quot;Discover services in solution&quot; functionality, the service projects must be based on one of the WCF project templates.   <br /> If you want to alter your existing project(s) so that they will be identified as projects containing WCF service(s), do the following:</p>
<ul>
<li> Right-click on the project in the Solution Explorer, and select Unload project</li>
<li>Right-click the project again (this time the node will end in (unavailable) ) and choose Edit xxxxx.csproj</li>
<li>In the first &lt;PropertyGroup&gt; section, add the following line:     <br /><b>&lt;ProjectTypeGuids&gt;{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&lt;/ProjectTypeGuids&gt;</b></li>
<li>Save and close the file </li>
<li>Reload the project by right-clicking it again and choose Reload.</li>
</ul>
<p>&#160; You should then be able to use the &quot;Discover services in solution&quot; functionality.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/02/20/vs-net-add-service-reference-discover-service-does-not-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS.NET: Visual Studio 2010 Extension Manager</title>
		<link>http://www.christiano.ch/wordpress/2010/02/20/vs-net-visual-studio-2010-extension-manager/</link>
		<comments>http://www.christiano.ch/wordpress/2010/02/20/vs-net-visual-studio-2010-extension-manager/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 12:18:35 +0000</pubDate>
		<dc:creator>christian</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://www.christiano.ch/wordpress/2010/02/20/vs-net-visual-studio-2010-extension-manager/</guid>
		<description><![CDATA[


One of the powerful aspect of Visual Studio is its ability to be extended and many people do that. You can find numerous extensions at the Visual Studio Gallery. The VSX team links to a 4-part blog series on how to create and share templates. You can also look find extension examples on the vsx [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="2" width="675">
<tbody>
<tr>
<td valign="top" width="499">One of the powerful aspect of Visual Studio is its ability to be extended and many people do that. You can find numerous extensions at the <a href="http://www.visualstudiogallery.com/">Visual Studio Gallery</a>. The VSX team links to a 4-part blog series on <a href="http://blogs.msdn.com/vsxteam/archive/2009/06/08/how-do-i-create-and-share-a-template-on-the-visual-studio-gallery.aspx">how to create and share templates</a>. You can also look find extension examples on the <a href="http://code.msdn.microsoft.com/vsx">vsx code gallery</a>.</td>
<td valign="top" width="165"><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_MS_Visual_Studio_2010.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Logo Microsoft Visual Studio" border="0" alt="Logo Microsoft Visual Studio" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Logo_MS_Visual_Studio_2010_thumb.jpg" width="165" height="64" /></a> </td>
</tr>
</tbody>
</table>
<p> <span id="more-867"></span>
<p>With Visual Studio 2010, you can search for items and install them directly from within Visual Studio&#8217;s new <a href="http://msdn.microsoft.com/en-us/library/dd293638%28VS.100%29.aspx">Extension Manager</a>. You launch it from the Tools menu:</p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Visual.Studio.2010.Extension.Manager.Menu_.Entry_.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Visual.Studio.2010.Extension.Manager.Menu.Entry" border="0" alt="Visual.Studio.2010.Extension.Manager.Menu.Entry" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Visual.Studio.2010.Extension.Manager.Menu_.Entry_thumb.png" width="351" height="397" /></a> </p>
<p>When the dialog comes up, be sure to explore the various actionable areas on the left and also note the search on the right. For example, i clicked on <strong><em>Online Gallery</em></strong> on the left, in the Textbox in the upper right corner i typed <strong><em>Go To Definition </em></strong>(which is one of my favorite extensions atm) et voila:</p>
<p>Click on <strong><em>Download</em></strong>, restart Studio and you can Ctrl-Click and Variable, type, object to jump to its declaration</p>
<p><a href="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Visual.Studio.2010.Extension.Manager_Sample.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Visual.Studio.2010.Extension.Manager_Sample" border="0" alt="Visual.Studio.2010.Extension.Manager_Sample" src="http://www.christiano.ch/wordpress/wp-content/uploads/2010/02/Visual.Studio.2010.Extension.Manager_Sample_thumb.png" width="800" height="450" /></a> </p>
</p>
<p>have phun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.christiano.ch/wordpress/2010/02/20/vs-net-visual-studio-2010-extension-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
