<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Configuration on Marko Apfel</title><link>http://blog.marko-apfel.de/tags/configuration/</link><description>Recent content in Configuration on Marko Apfel</description><generator>Hugo</generator><language>en-US</language><lastBuildDate>Thu, 20 Nov 2014 17:03:00 +0100</lastBuildDate><atom:link href="http://blog.marko-apfel.de/tags/configuration/index.xml" rel="self" type="application/rss+xml"/><item><title>Replace or keep existing configuration files during Linux updates/upgrades</title><link>http://blog.marko-apfel.de/posts/replace-or-keep-existing-configuration-files-during-linux-updates-upgrades/</link><pubDate>Thu, 20 Nov 2014 17:03:00 +0100</pubDate><guid>http://blog.marko-apfel.de/posts/replace-or-keep-existing-configuration-files-during-linux-updates-upgrades/</guid><description>&lt;p&gt;During updating/upgrading a fresh Moebius installation on a RaspberryPi with&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;apt-get update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; apt-get upgrade
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;it brought this question:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-txt" data-lang="txt"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Configuration file `/etc/issue&amp;#39;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;==&amp;gt; Modified (by you or by a script) since installation.
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;==&amp;gt; Package distributor has shipped an updated version.
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;What would you like to do about it ? Your options are:
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Y or I : install the package maintainer&amp;#39;s version
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;N or O : keep your currently-installed version
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;D : show the differences between the versions
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Z : start a shell to examine the situation
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;The default action is to keep your current version.
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;*** issue (Y/I/N/O/D/Z) [default=N] ?
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The default hint not to do that is mainly for longer running installations to avoid an overwriting of existing configuration files. In case of a fresh installation you should confirm with &lt;code&gt;Y&lt;/code&gt;.&lt;/p&gt;</description></item><item><title>OneNote: Change location of Unfiled Notes</title><link>http://blog.marko-apfel.de/posts/onenote-change-location-of-unfiled-notes/</link><pubDate>Fri, 20 Jul 2012 10:22:00 +0200</pubDate><guid>http://blog.marko-apfel.de/posts/onenote-change-location-of-unfiled-notes/</guid><description>&lt;p&gt;There are some links in google to do this. But no hint works for me.&lt;/p&gt;
&lt;p&gt;So I tried some own ideas. And indeed – I found a simple solution without registry editing and so on.&lt;/p&gt;</description></item><item><title>Wise settings for Git</title><link>http://blog.marko-apfel.de/posts/wise-settings-for-git/</link><pubDate>Thu, 31 May 2012 11:46:00 +0200</pubDate><guid>http://blog.marko-apfel.de/posts/wise-settings-for-git/</guid><description>&lt;p&gt;These settings reflecting my Git-environment. It a result of reading and trying several ideas of input from others.&lt;/p&gt;
&lt;h2 id="must-haves"&gt;Must-Haves&lt;/h2&gt;
&lt;h3 id="aliases"&gt;Aliases&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-fallback" data-lang="fallback"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;[alias]
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; ci = commit
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; st = status
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; co = checkout
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; oneline = log --pretty=oneline
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; br = branch
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; la = log --pretty=\&amp;#34;format:%ad %h (%an): %s\&amp;#34; --date=short
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; df = diff
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; dc = diff --cached
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; lg = log -p
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; lol = log --graph --decorate --pretty=oneline --abbrev-commit
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; ls = ls-files
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; ign = ls-files -o -i --exclude-standard
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="colors"&gt;Colors&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-ini" data-lang="ini"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[color]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;ui&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;auto&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[color &amp;#34;branch&amp;#34;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;current&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;yellow reverse
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; local = yellow
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; remote = green&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[color &amp;#34;diff&amp;#34;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;meta&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;yellow bold
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; frag = magenta bold
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; old = red bold
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; new = green bold
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; whitespace = red reverse&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[color &amp;#34;status&amp;#34;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;added&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;green
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; changed = red
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; untracked = cyan&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="core"&gt;Core&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-ini" data-lang="ini"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[core]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;autocrlf&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;true
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; excludesfile = c:/Users/&amp;lt;user&amp;gt;/.gitignore
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; editor = &amp;#39;C:/Program Files (x86)/Notepad++/notepad++.exe&amp;#39; -multiInst -notabbar -nosession –noPlugin&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="nice-to-have"&gt;Nice to have&lt;/h2&gt;
&lt;h3 id="merge-and-diff"&gt;Merge and Diff&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-ini" data-lang="ini"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[merge]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;tool&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;kdiff3&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[mergetool &amp;#34;kdiff3&amp;#34;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;path&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;c:/Program Files (x86)/KDiff3/kdiff3.exe&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[mergetool &amp;#34;p4merge&amp;#34;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;path&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;c:/Program Files (x86)/Perforce Merge/p4merge.exe
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; cmd = p4merge \&amp;#34;$BASE\&amp;#34; \&amp;#34;$LOCAL\&amp;#34; \&amp;#34;$REMOTE\&amp;#34; \&amp;#34;$MERGED\&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; keepTemporaries = false
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; trustExitCode = false
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; keepBackup = false&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[diff]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;guitool&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;kdiff3&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[difftool &amp;#34;kdiff3&amp;#34;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;path&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;c:/Program Files (x86)/KDiff3/kdiff3.exe&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;[difftool &amp;#34;p4merge&amp;#34;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;path&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;C:/Users/&amp;lt;user&amp;gt;/My Applications/Perforce Merge/p4merge.exe
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="s"&gt; cmd = \&amp;#34;p4merge.exe $LOCAL $REMOTE\&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description></item><item><title>Restoring removed thumbnails in Google Chrome “New Tab” overview site</title><link>http://blog.marko-apfel.de/posts/restoring-removed-thumbnails-in-google-chrome-new-tab-overview-site/</link><pubDate>Mon, 20 Feb 2012 11:26:00 +0100</pubDate><guid>http://blog.marko-apfel.de/posts/restoring-removed-thumbnails-in-google-chrome-new-tab-overview-site/</guid><description>&lt;p&gt;Normally the thumbnails at the new tab page are organized by how often you visited a page.&lt;/p&gt;
&lt;p&gt;But after removing such a thumbnail by clicking the little gray cross at the right top corner deactivates the logic for this page on the whole. The page is added to an internal black list.&lt;/p&gt;</description></item><item><title>Modify properties of “Git Bash Here” shortcut in Explorer and Console Enhancement Project</title><link>http://blog.marko-apfel.de/posts/modify-properties-of-git-bash-here-shortcut-in-explorer-and-console-enhancement-project/</link><pubDate>Fri, 19 Aug 2011 06:10:00 +0200</pubDate><guid>http://blog.marko-apfel.de/posts/modify-properties-of-git-bash-here-shortcut-in-explorer-and-console-enhancement-project/</guid><description>&lt;h2 id="essentials"&gt;Essentials&lt;/h2&gt;
&lt;p&gt;Run the bash for this as administrator. The shortcut is located in the Git installation folder. &amp;ldquo;%ProgramFiles(x86)%\Git”.&lt;/p&gt;
&lt;p&gt;Good Setting for the layout are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Screnn buffer size&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Width: 160&lt;/li&gt;
&lt;li&gt;Height: 3000&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Windows size&lt;/p&gt;</description></item><item><title>Running CopySourceAsHtml Add-in under Visual Studio 2010</title><link>http://blog.marko-apfel.de/posts/running-copysourceashtml-add-in-under-visual-studio-2010/</link><pubDate>Sun, 02 Jan 2011 10:41:00 +0100</pubDate><guid>http://blog.marko-apfel.de/posts/running-copysourceashtml-add-in-under-visual-studio-2010/</guid><description>&lt;p&gt;Until now &lt;a href="http://copysourceashtml.codeplex.com/"&gt;CopySourceAsHtml&lt;/a&gt; only supports &lt;em&gt;Visual Studio 2008&lt;/em&gt; out of the box.&lt;/p&gt;
&lt;p&gt;But it is no problem to pimp up the config-file for supporting Visual Studio 2010.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Copy all three files to &lt;code&gt;%userprofile%\Documents\Visual Studio 2010\Addins&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Open &lt;em&gt;CopySourceAsHtml.AddIn&lt;/em&gt; in a text editor and change both lines with&lt;br&gt;
&lt;code&gt;&amp;lt;Version&amp;gt;9.0&amp;lt;/Version&amp;gt;&lt;/code&gt; to &lt;code&gt;&amp;lt;Version&amp;gt;10.0&amp;lt;/Version&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Run Visual Studio 2010 and &lt;em&gt;CopySourceAsHtml&lt;/em&gt; works fine&lt;/li&gt;
&lt;/ol&gt;</description></item><item><title>Hudson error: could not delete ..config.xml</title><link>http://blog.marko-apfel.de/posts/hudson-error-could-not-delete-config-xml/</link><pubDate>Tue, 06 Jul 2010 16:44:00 +0200</pubDate><guid>http://blog.marko-apfel.de/posts/hudson-error-could-not-delete-config-xml/</guid><description>&lt;p&gt;Today we updated our &lt;em&gt;Hudson&lt;/em&gt; CI-server. After changing job-configuration &lt;em&gt;Hudson&lt;/em&gt; throws an error, that the &lt;code&gt;config.xml&lt;/code&gt; could not be deleted.&lt;/p&gt;
&lt;p&gt;But the new entries are correct saved.&lt;/p&gt;
&lt;p&gt;Nevertheless such behavior bothers.&lt;/p&gt;
&lt;p&gt;The trick was to update also the plugins. After that all works fine again.&lt;/p&gt;</description></item><item><title>Global SVN Ignore Patterns und Zeitstempel-Optionen</title><link>http://blog.marko-apfel.de/posts/global-svn-ignore-patterns-und-zeitstempel-optionen/</link><pubDate>Mon, 31 May 2010 09:13:00 +0200</pubDate><guid>http://blog.marko-apfel.de/posts/global-svn-ignore-patterns-und-zeitstempel-optionen/</guid><description>&lt;h2 id="globale-konfiguration"&gt;Globale Konfiguration&lt;/h2&gt;
&lt;p&gt;Die setzt man unter den globalen SVN-Einstellungen.&lt;/p&gt;
&lt;p&gt;Diese öffnet man per kontextsensitiven Menü im Explorer:&lt;/p&gt;
&lt;p&gt;&lt;figure&gt;
 &lt;img src="http://blog.marko-apfel.de/posts/global-svn-ignore-patterns-und-zeitstempel-optionen/tortoisesvn-configuration-01b.png" alt="Screenshot for Global SVN Ignore Patterns und Zeitstempel-Optionen" loading="lazy" decoding="async"&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;h3 id="global-ignores"&gt;Global Ignores&lt;/h3&gt;
&lt;h4 id="standard"&gt;Standard&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id="sinnvoll-sind-für-net-entwicklungen-und-visual-studio-und-resharper-folgende-ergänzungen"&gt;sinnvoll sind für .NET-Entwicklungen und Visual Studio und ReSharper folgende Ergänzungen&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;*.suo *.csproj.user */_ReSharper.* *.ReSharper.user */bin */obj *.cache *.gpState&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Der oft genannte Vorschlag &lt;code&gt;*bin&lt;/code&gt; und &lt;code&gt;*obj&lt;/code&gt; ist keine gute Idee da auch Dateien die mit &lt;code&gt;bin&lt;/code&gt; enden unterdrückt werden (&lt;code&gt;Something.bin&lt;/code&gt; oder &lt;code&gt;Taschendiebin&lt;/code&gt;).&lt;/p&gt;</description></item><item><title>Integrating F# in SharpDevelop</title><link>http://blog.marko-apfel.de/posts/integrating-f-sharp-in-sharpdevelop/</link><pubDate>Wed, 24 Mar 2010 13:10:00 +0100</pubDate><guid>http://blog.marko-apfel.de/posts/integrating-f-sharp-in-sharpdevelop/</guid><description>&lt;p&gt;After installing SharpDevelop 4 the F# Interactive could not be activated.&lt;/p&gt;
&lt;p&gt;In my case the correct folder for the F# installation must by specified in die application config file.
So i opened SharpDevelop.exe.config and set this entry in the appSettings section:&lt;/p&gt;</description></item><item><title>Outlook-Einstellungen für mich</title><link>http://blog.marko-apfel.de/posts/outlook-einstellungen-fur-mich/</link><pubDate>Fri, 23 Oct 2009 09:21:00 +0200</pubDate><guid>http://blog.marko-apfel.de/posts/outlook-einstellungen-fur-mich/</guid><description>&lt;h2 id="schriftart-für-mails"&gt;Schriftart für Mails&lt;/h2&gt;
&lt;p&gt;Tools | Options… | Mail Format | Fonts…&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;When composing a new message: 11 pt. Calibri, blau&lt;/li&gt;
&lt;li&gt;When replying and forwarding: 11 pt. Calibri, blau&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="signature-bauen"&gt;Signature bauen&lt;/h2&gt;
&lt;p&gt;Tools | Options… | Mail Format | Signatures&lt;/p&gt;</description></item><item><title>Sandcastle Help File Builder: Content Editor opens without functionality</title><link>http://blog.marko-apfel.de/posts/sandcastle-help-file-builder-content-editor-opens-without-functionality/</link><pubDate>Thu, 16 Apr 2009 10:52:00 +0200</pubDate><guid>http://blog.marko-apfel.de/posts/sandcastle-help-file-builder-content-editor-opens-without-functionality/</guid><description>&lt;p&gt;If the content editor of &lt;em&gt;SHFB&lt;/em&gt; opens without any functionality then the configuration file is corrupt.&lt;/p&gt;
&lt;p&gt;This is repairable through deleting the config-files under &lt;code&gt;C:\Documents and Settings\[YOUR\_USER\_ID]\Local Settings\Application Data\Eric\_Woodruff\...&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Sometimes an error occurred during opening content editor next time. In this case you must study the message. Often you have created a not XML-wellformed content file. Open your last used files with an other XML-editor and look for the place which is described in the message.
After fixing the prob you must close &lt;em&gt;SHFB&lt;/em&gt;, delete the config-file again and reopen your &lt;em&gt;SHFB&lt;/em&gt;-project.&lt;/p&gt;</description></item><item><title>Hierarchy of log4net-loggers (namespace vs class)</title><link>http://blog.marko-apfel.de/posts/hierarchy-of-log4net-loggers-namespace-vs-class/</link><pubDate>Thu, 20 Mar 2008 10:02:00 +0100</pubDate><guid>http://blog.marko-apfel.de/posts/hierarchy-of-log4net-loggers-namespace-vs-class/</guid><description>&lt;p&gt;If you want specify log-parameters for loggers of a whole namespace normally you use a scheme like&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-xml" data-lang="xml"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nt"&gt;&amp;lt;logger&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;GrandNS.ParentNS.ChildNS.\*&amp;#34;&lt;/span&gt; &lt;span class="err"&gt;..&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;this is the same like&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-xml" data-lang="xml"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nt"&gt;&amp;lt;logger&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;GrandNS.ParentNS.ChildNS&amp;#34;&lt;/span&gt; &lt;span class="err"&gt;..&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;There is no ambiguous name possible, because it is not allowed to define a class with the name of a namespace at the same namespace-level.&lt;/p&gt;</description></item><item><title>Konfigurationfile für eine Library lesen</title><link>http://blog.marko-apfel.de/posts/konfigurationfile-fur-eine-library-lesen/</link><pubDate>Thu, 10 May 2007 16:20:00 +0200</pubDate><guid>http://blog.marko-apfel.de/posts/konfigurationfile-fur-eine-library-lesen/</guid><description>&lt;p&gt;Beim Verwenden des Standard-Mechanismus zum Lesen von Konfigurationsdaten wird immer die config-Datei der EXE gelesen.&lt;/p&gt;
&lt;p&gt;Soll eine DLL über eine eigene Konfigurationsdatei verfügen, verwendet man die Klasse &lt;code&gt;ExeConfigurationFileMap&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Beispiel:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-cs" data-lang="cs"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;1&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;ExeConfigurationFileMap&lt;/span&gt; &lt;span class="n"&gt;ecfm&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="n"&gt;ExeConfigurationFileMap&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;2&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;ecfm&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;ExeConfigFilename&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;&amp;#34;MyLibrary.dll.config&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;3&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;Configuration&lt;/span&gt; &lt;span class="n"&gt;cfg&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;ConfigurationManager&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;OpenMappedExeConfiguration&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;ecfm&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;ConfigurationUserLevel&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;None&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;4&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;AppSettingsSection&lt;/span&gt; &lt;span class="n"&gt;ass&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;AppSettingsSection&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="n"&gt;cfg&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;GetSection&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;appSettings&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;5&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kt"&gt;string&lt;/span&gt; &lt;span class="n"&gt;configValue&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;String&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Empty&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;6&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;aSect&lt;/span&gt; &lt;span class="p"&gt;!=&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;7&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;8&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;configValue&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;ss&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Settings&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;blabla&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;].&lt;/span&gt;&lt;span class="n"&gt;Value&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="m"&gt;9&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description></item><item><title>Installationsanleitung BizTalk 2004 in einer Multi-Computer-Landschaft</title><link>http://blog.marko-apfel.de/posts/installationsanleitung-biztalk-2004-in-einer-multi-computer-landschaft/</link><pubDate>Wed, 15 Feb 2006 09:56:00 +0100</pubDate><guid>http://blog.marko-apfel.de/posts/installationsanleitung-biztalk-2004-in-einer-multi-computer-landschaft/</guid><description>&lt;h2 id="voraussetzungen"&gt;Voraussetzungen&lt;/h2&gt;
&lt;h3 id="hardware-server"&gt;&lt;em&gt;Hardware (Server)&lt;/em&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;EAI (BizTalk): &lt;code&gt;VSTB0007&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Datenbank (SQL Server): &lt;code&gt;VSTB0008&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;xml:namespace prefix = st1 ns = &amp;ldquo;urn:schemas-microsoft-com:office:smarttags&amp;rdquo; /Enterprise Single Sign-On VSTB0009&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="software-betriebssystem"&gt;Software (Betriebssystem)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Windows 2003 Server&lt;/li&gt;
&lt;li&gt;Installationsmodus von uns&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="software-medien-bzw-downloads"&gt;Software (Medien bzw Downloads)&lt;/h3&gt;
&lt;h4 id="vstb0007"&gt;VSTB0007&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;SQL Server 2000 Standard&lt;/li&gt;
&lt;li&gt;SQL Server 2000 SP3a&lt;/li&gt;
&lt;li&gt;SQL Server 2000 SP3a for Analysis Services&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id="vstb0008"&gt;VSTB0008&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Visual Studio.NET 2003&lt;/li&gt;
&lt;li&gt;MSXML 4.0 SP2&lt;/li&gt;
&lt;li&gt;MSXML 3.0 SP4&lt;/li&gt;
&lt;li&gt;SOAP Toolkit 3.0&lt;/li&gt;
&lt;li&gt;SqlXml 3.0 SP2&lt;/li&gt;
&lt;li&gt;Office XP Tool Web Components (OWC10)&lt;/li&gt;
&lt;li&gt;Windows SharePoint Services (2.0)&lt;/li&gt;
&lt;li&gt;BizTalk Server 2004&lt;/li&gt;
&lt;li&gt;BizTalk Server 2004 SP1&lt;/li&gt;
&lt;li&gt;Hotfix KB831950&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id="vstb0009"&gt;VSTB0009&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;DTC Tester Tool&lt;/li&gt;
&lt;li&gt;BizTalk Server 2004&lt;/li&gt;
&lt;li&gt;BizTalk Server 2004 SP1&lt;/li&gt;
&lt;li&gt;MSXML 4.0 SP2&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="user-und-gruppen-im-active-directory-einrichten"&gt;User und Gruppen im Active Directory einrichten&lt;/h3&gt;
&lt;h4 id="service-user"&gt;Service User&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;User cannot change password: check (enterprise security will batch change the passwords).&lt;/li&gt;
&lt;li&gt;Password never expires: check.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Allow logon to terminal server&lt;/em&gt;: uncheck.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Remote control&lt;/em&gt;: uncheck &lt;em&gt;enable remote control&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Log on to&lt;/em&gt;: none (disallow using the account on any other workstation).&lt;/li&gt;
&lt;/ol&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;User Name&lt;/th&gt;
					&lt;th&gt;First Name&lt;/th&gt;
					&lt;th&gt;Last Name&lt;/th&gt;
					&lt;th&gt;Full Name&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;SQLService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;SQL&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;SQLService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;SQL Service Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;SPAdmin&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;Admin&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;SPService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;SharePoint Admin Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTS&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Service Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTServiceBAS&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BAS&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Server BAS Application Pool Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTServiceBASWeb&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BASWeb&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk BAS Publishing Web Service Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTServiceEDI&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;EDI&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Base EDI Service Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTServiceHost&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;Host&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Host Instance Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTServiceHostIso&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;HostIso&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Isolated Host Instance Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;SSOService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;SSO&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;Enterprise Single Sign-On Service&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTServiceHWF&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;HWF&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;Human Workflow Services User Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTServiceREU&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;REU&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTService&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;Rule Engine Update Service&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;h4 id="interactive-user"&gt;Interactive User&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;User cannot change password: check (enterprise security will batch change the passwords).&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Password never expires&lt;/em&gt;: check.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Allow logon to terminal server&lt;/em&gt;: check.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Remote control&lt;/em&gt;: &lt;em&gt;check enable remote control&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Log on to&lt;/em&gt;: none (disallow using the account on any other workstation).&lt;/li&gt;
&lt;/ol&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;&lt;code&gt;User Name&lt;/code&gt;&lt;/th&gt;
					&lt;th&gt;&lt;code&gt;First Name&lt;/code&gt;&lt;/th&gt;
					&lt;th&gt;&lt;code&gt;Last Name&lt;/code&gt;&lt;/th&gt;
					&lt;th&gt;&lt;code&gt;Full Name&lt;/code&gt;&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTUserAdmin&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;Admin&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTUser&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Administrative User Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTUserBASTechMgr&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;TechManager&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTUser&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk BAS Tech Manager&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTUserBASTechPub&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;TechPublisher&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTUser&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk BAS Tech Publisher&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTUserDeploy&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;Deploy&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTUser&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Deployment User Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTUserHostInstance&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;HostInstance&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTUser&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Host Instance Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTUserHostIsolated&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;IsolatedlHost&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTUser&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Isolated Host Instance Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTUserInstall&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;Install&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTUser&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Installation User Account&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;&lt;code&gt;BTUserSupport&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;Support&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;&lt;code&gt;BTUser&lt;/code&gt;&lt;/td&gt;
					&lt;td&gt;BizTalk Support Access Account&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;h4 id="gruppen"&gt;Gruppen&lt;/h4&gt;
&lt;p&gt;To allow HAT to attach orchestrations to the debugger, the developer needs to belong to the BizTalk Server Administrators group, as outlined above in “BizTalk Development Accounts”.&lt;/p&gt;</description></item></channel></rss>