chrison.net
Open in
urlscan Pro
81.20.84.206
Public Scan
URL:
http://chrison.net/
Submission Tags: tranco_l324
Submission: On November 07 via api from DE — Scanned from DE
Submission Tags: tranco_l324
Submission: On November 07 via api from DE — Scanned from DE
Form analysis
1 forms found in the DOMName: mainForm — POST /default.aspx
<form name="mainForm" method="post" action="/default.aspx" id="mainForm">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwUKMTM2MTcxNzAwMA9kFgJmD2QWAgIDD2QWBAIBDzwrAAoBAA8WAh4KVG9kYXlzRGF0ZQYAmPYoeaHZiGRkAgUPZBYEZg8VARNodHRwOi8vY2hyaXNvbi5uZXQvZAIBDxYCHgV2YWx1ZQUGU3VjaGVuZGQul8I7WlFZV2zdzCB9N5cJy1ZZ/w==">
<script type="text/javascript">
<!--
var theForm = document.forms['mainForm'];
if (!theForm) {
theForm = document.mainForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//
-->
</script>
<script type="text/javascript">
<!--
var ct_img_expanded = 'http://chrison.net/images/outlinedown.gif';
var ct_img_collapsed = 'http://chrison.net/images/outlinearrow.gif';
(new Image(15, 15)).src = ct_img_expanded; // caching
(new Image(15, 15)).src = ct_img_collapsed; // caching
function ct_Expand(htmlNode, imgNode) {
if (document.getElementById && document.getElementById(htmlNode) != null) {
document.getElementById(imgNode).src = ct_img_expanded;
document.getElementById(htmlNode).className = 'categoryListExpanded';
}
}
function ct_Collapse(htmlNode, imgNode) {
if (document.getElementById && document.getElementById(htmlNode) != null) {
document.getElementById(imgNode).src = ct_img_collapsed;
document.getElementById(htmlNode).className = 'categoryListCollapsed';
}
}
function ct_toggleExpansionStatus(htmlNode, imgNode) {
if (document.getElementById && document.getElementById(htmlNode) != null) {
nodeState = document.getElementById(htmlNode).className;
}
if (nodeState == 'categoryListCollapsed') {
ct_Expand(htmlNode, imgNode);
} else {
ct_Collapse(htmlNode, imgNode);
}
}
//
-->
</script>
<script type="text/javascript">
<!--
var br_img_expanded = 'http://chrison.net/images/outlinedown.gif';
var br_img_collapsed = 'http://chrison.net/images/outlinearrow.gif';
(new Image(15, 15)).src = br_img_expanded; // caching
(new Image(15, 15)).src = br_img_collapsed; // caching
function br_Expand(htmlNode, imgNode) {
if (document.getElementById && document.getElementById(htmlNode) != null) {
document.getElementById(imgNode).src = br_img_expanded;
document.getElementById(htmlNode).className = 'blogRollExpanded';
}
}
function br_Collapse(htmlNode, imgNode) {
if (document.getElementById && document.getElementById(htmlNode) != null) {
document.getElementById(imgNode).src = br_img_collapsed;
document.getElementById(htmlNode).className = 'blogRollCollapsed';
}
}
function br_toggleExpansionStatus(htmlNode, imgNode) {
if (document.getElementById && document.getElementById(htmlNode) != null) {
nodeState = document.getElementById(htmlNode).className;
}
if (nodeState == 'blogRollCollapsed') {
br_Expand(htmlNode, imgNode);
} else {
br_Collapse(htmlNode, imgNode);
}
}
//
-->
</script>
<script type="text/javascript">
<!--
/* http://www.kryogenix.org/code/browser/searchhi/ */
/* Modified 20021006 to fix query string parsing and add case insensitivity */
function highlightWord(node, word) {
// Iterate into this nodes childNodes
if (node.hasChildNodes) {
var hi_cn;
for (hi_cn = 0; hi_cn < node.childNodes.length; hi_cn++) {
highlightWord(node.childNodes[hi_cn], word);
}
}
// And do this node itself
if (node.nodeType == 3) { // text node
tempNodeVal = node.nodeValue.toLowerCase();
tempWordVal = word.toLowerCase();
if (tempNodeVal.indexOf(tempWordVal) != -1) {
pn = node.parentNode;
if (pn.className != "searchword") {
// word has not already been highlighted!
nv = node.nodeValue;
ni = tempNodeVal.indexOf(tempWordVal);
// Create a load of replacement nodes
before = document.createTextNode(nv.substr(0, ni));
docWordVal = nv.substr(ni, word.length);
after = document.createTextNode(nv.substr(ni + word.length));
hiwordtext = document.createTextNode(docWordVal);
hiword = document.createElement("span");
hiword.className = "searchword";
hiword.appendChild(hiwordtext);
pn.insertBefore(before, node);
pn.insertBefore(hiword, node);
pn.insertBefore(after, node);
pn.removeChild(node);
}
}
}
}
function googleSearchHighlight() {
if (!document.createElement) return;
ref = document.referrer;
if (ref.indexOf('?') == -1 || ref.indexOf('http://chrison.net/') != -1) {
if (document.location.href.indexOf('PermaLink') != -1) {
if (ref.indexOf('SearchView.aspx') == -1) return;
} else {
//Added by Scott Hanselman
ref = document.location.href;
if (ref.indexOf('?') == -1) return;
}
}
qs = ref.substr(ref.indexOf('?') + 1);
qsa = qs.split('&');
for (i = 0; i < qsa.length; i++) {
qsip = qsa[i].split('=');
if (qsip.length == 1) continue;
if (qsip[0] == 'q' || qsip[0] == 'p') { // q= for Google, p= for Yahoo
words = decodeURIComponent(qsip[1].replace(/\+/g, ' ')).split(/\s+/);
for (w = 0; w < words.length; w++) {
highlightWord(document.getElementsByTagName("body")[0], words[w]);
}
}
}
}
//
// addLoadEvent()
// Adds event to window.onload without overwriting currently assigned onload functions.
// Function found at Simon Willison's weblog - http://simon.incutio.com/
//
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}
}
addLoadEvent(googleSearchHighlight);
//
-->
</script>
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="CA0B0334">
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION"
value="/wEWLgLf8v77CQL+hKu9BgKy5IiMDAKy6vzLBQKy6uiuDQKXwfo3ApfB5uoJApfB0s0CApfBvqEKApfBqoQDApfBlv8MApfBgtIFApfB7rUNApfBmt4LApfBhrEDAryruvYJAryrpqkBAryrkowKAryr/ucDAryr6toMAryr1r0EAryrwpANAryrrvQGAryr2pwDAryrxvcMApGC2NgPApGCxLMHApGCsBcCkYKcygkCkYKIrQECkYL0gAoCkYLg+wMCkYLM3gwCkYL45wkCkYLk2gICxeGNrAcCxeH5BwLF4eX6CQLF4dHdAgLF4b2xCgLF4amUAwLF4ZXPDALF4YGiBALF4a3LAgLF4ZmuCgK4hv/QBbU8Csi1kE7AphkW9Fr/jNq7oL8S">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="200" valign="top">
<!-----------left----------------->
<div>
<div style="padding-top:15px">
<table id="weblogCalendar" class="hCalendarStyle" cellspacing="0" cellpadding="2" title="Kalender" border="0">
<tbody>
<tr>
<td colspan="7">
<table class="hCalendarMonthYearRow" cellspacing="0" border="0">
<tbody>
<tr>
<td class="hCalendarNextPrevStyle"><a href="javascript:__doPostBack('weblogCalendar','V7944')" title="Gehe zu vorherigem Monat"><</a></td>
<td align="center">November 2021</td>
<td class="hCalendarNextPrevStyle" align="right"><a href="javascript:__doPostBack('weblogCalendar','V8005')" title="Gehe zu nächstem Monat">></a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<th class="hCalendarDayNameRow" align="center" abbr="Montag" scope="col">Mo</th>
<th class="hCalendarDayNameRow" align="center" abbr="Dienstag" scope="col">Di</th>
<th class="hCalendarDayNameRow" align="center" abbr="Mittwoch" scope="col">Mi</th>
<th class="hCalendarDayNameRow" align="center" abbr="Donnerstag" scope="col">Do</th>
<th class="hCalendarDayNameRow" align="center" abbr="Freitag" scope="col">Fr</th>
<th class="hCalendarDayNameRow" align="center" abbr="Samstag" scope="col">Sa</th>
<th class="hCalendarDayNameRow" align="center" abbr="Sonntag" scope="col">So</th>
</tr>
<tr>
<td class="hCalendarOtherMonthStyle" align="center">25</td>
<td class="hCalendarOtherMonthStyle" align="center">26</td>
<td class="hCalendarOtherMonthStyle" align="center">27</td>
<td class="hCalendarOtherMonthStyle" align="center">28</td>
<td class="hCalendarOtherMonthStyle" align="center">29</td>
<td class="hCalendarOtherMonthWeekendStyle" align="center">30</td>
<td class="hCalendarOtherMonthWeekendStyle" align="center">31</td>
</tr>
<tr>
<td class="hCalendarDay" align="center">1</td>
<td class="hCalendarDay" align="center">2</td>
<td class="hCalendarDay" align="center">3</td>
<td class="hCalendarDay" align="center">4</td>
<td class="hCalendarDay" align="center">5</td>
<td class="hCalendarWeekendStyle" align="center">6</td>
<td class="hCalendarDayCurrent" align="center">7</td>
</tr>
<tr>
<td class="hCalendarDay" align="center">8</td>
<td class="hCalendarDay" align="center">9</td>
<td class="hCalendarDay" align="center">10</td>
<td class="hCalendarDay" align="center">11</td>
<td class="hCalendarDay" align="center">12</td>
<td class="hCalendarWeekendStyle" align="center">13</td>
<td class="hCalendarWeekendStyle" align="center">14</td>
</tr>
<tr>
<td class="hCalendarDay" align="center">15</td>
<td class="hCalendarDay" align="center">16</td>
<td class="hCalendarDay" align="center">17</td>
<td class="hCalendarDay" align="center">18</td>
<td class="hCalendarDay" align="center">19</td>
<td class="hCalendarWeekendStyle" align="center">20</td>
<td class="hCalendarWeekendStyle" align="center">21</td>
</tr>
<tr>
<td class="hCalendarDay" align="center">22</td>
<td class="hCalendarDay" align="center">23</td>
<td class="hCalendarDay" align="center">24</td>
<td class="hCalendarDay" align="center">25</td>
<td class="hCalendarDay" align="center">26</td>
<td class="hCalendarWeekendStyle" align="center">27</td>
<td class="hCalendarWeekendStyle" align="center">28</td>
</tr>
<tr>
<td class="hCalendarDay" align="center">29</td>
<td class="hCalendarDay" align="center">30</td>
<td class="hCalendarOtherMonthStyle" align="center">1</td>
<td class="hCalendarOtherMonthStyle" align="center">2</td>
<td class="hCalendarOtherMonthStyle" align="center">3</td>
<td class="hCalendarOtherMonthWeekendStyle" align="center">4</td>
<td class="hCalendarOtherMonthWeekendStyle" align="center">5</td>
</tr>
</tbody>
</table><br>
</div>
<div style="font-weight:bold;padding-top:5px">On this page...</div>
<hr>
<div>
<table class="titleListStyle" border="0">
<tbody>
<tr>
<td><a href="/default.aspx#a6772def6-858d-498a-8492-b8fb1a4951c1">Note to Self - Command Processor / CompletionChar</a></td>
</tr>
<tr>
<td><a href="/default.aspx#aa05a04f7-96ab-4433-8ba1-30961d335376">File In Use - Are You Kidding Me?</a></td>
</tr>
<tr>
<td><a href="/default.aspx#a64da7780-bd03-4e5b-add8-47ce5cc56c1c">Sharding in Subversion</a></td>
</tr>
<tr>
<td><a href="/default.aspx#a1ca23338-286d-4eb5-ae5a-3fc5bf3e7c08">Novell Netware 6.5 SP8 in Virtual PC 2007</a></td>
</tr>
<tr>
<td><a href="/default.aspx#a5367618d-6531-4358-9096-b814674770dd">Tech∙Days Defy All Challenges</a></td>
</tr>
<tr>
<td><a href="/default.aspx#a5d2e2885-39cf-4d10-b447-c29a723eb6da">VSTS Error Message: A test can be opened only within a test project</a></td>
</tr>
<tr>
<td><a href="/default.aspx#a78ebfb41-8314-46b4-aab9-890c7dfaa58a">TF42097: A work item could not be created due to a field error.</a></td>
</tr>
<tr>
<td><a href="/default.aspx#a41abc667-8feb-4e41-869f-58423f3c5b74">SSIS Error of the Day - "Expected the TEXT token in data stream for bulk copy of text or image data."</a></td>
</tr>
<tr>
<td><a href="/default.aspx#ae57ba5a6-626e-4b8b-9101-704bff5fb19a">TFS Alerts Editor - HowTo Make Alerts Stick (October 2008 Edition)</a></td>
</tr>
<tr>
<td><a href="/default.aspx#a00384b7a-52d6-455e-bf51-7668159debb3">Latest ProSafe VPN Firewall Client on x64</a></td>
</tr>
</tbody>
</table>
</div>
<div style="font-weight:bold;padding-top:15px">Search</div>
<hr>
<div>
<script type="text/javascript">
<!--
function doSearch(searchString) {
// Trim string.
searchString = searchString.replace(/^\s+|\s+$/g, "");
if (searchString.length > 0) {
location.href = "http://chrison.net/SearchView.aspx?q=" + encodeURIComponent(searchString);
}
return false;
}
-->
</script>
<div class="searchContainerStyle">
<input id="searchString" onkeypress="javascript:if (event.keyCode == 13) { doSearch(searchString.value); return false; }" type="text" class="searchTextBoxStyle">
<input name="_ctl11:searchButton" type="button" id="_ctl11_searchButton" onclick="doSearch(searchString.value);" class="searchButtonStyle" value="Suchen">
</div>
</div>
<div style="font-weight:bold;padding-top:15px">Links</div>
<hr>
<div>
<div class="navigatorLinksContainerStyle">
<table class="navigatorLinksTableStyle">
<tbody>
<tr>
<td class="navigatorLinksCellStyle"><a class="navigatorLinksLinkStyle" href="http://www.alphasierrapapa.com/">My Consulting Company</a></td>
</tr>
<tr>
<td class="navigatorLinksCellStyle"><a class="navigatorLinksLinkStyle" href="http://chrison.net">Blog Homepage</a></td>
</tr>
<tr>
<td class="navigatorLinksCellStyle"><a class="navigatorLinksLinkStyle" href="http://chrison.net/Impressum.aspx">Impressum (Imprint)</a></td>
</tr>
<tr>
<td class="navigatorLinksCellStyle"><a class="navigatorLinksLinkStyle" href="http://www.asp.net/">Official ASP.NET Site</a></td>
</tr>
<tr>
<td class="navigatorLinksCellStyle"><a class="navigatorLinksLinkStyle" href="http://www.icsharpcode.net/opensource/sd/">SharpDevelop (Free .NET IDE)</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div style="font-weight:bold;padding-top:15px">Member of...</div>
<hr>
<br>
<div align="center" style="width:200px">
<a href="http://www.aspinsiders.com/" target="_blank"><img src="themes/chrisondotnet/images/aspinsiders.gif" width="96" height="35" alt="ASP Insiders" border="0"></a>
</div>
<br>
<div align="center" style="width:200px">
<a href="https://mvp.support.microsoft.com/profile=42D363DA-9D05-4783-9206-AC06E49C302F" target="_blank"><img src="themes/chrisondotnet/images/mvplogo.gif" width="110" height="96" alt="MVP Visual Developer ASP/ASP.NET" border="0"></a>
</div>
<br>
<div align="center" style="width:200px">
<a href="http://www.codezone.de/" target="_blank"><img src="themes/chrisondotnet/images/codezone.gif" width="120" height="60" alt="Enter CodeZone" border="0"></a>
</div>
<br>
<div style="font-weight:bold;padding-top:15px">Blog Categories</div>
<hr>
<div>
<div class="categoryListContainerStyle">
<table class="categoryListTableStyle" border="0">
<tbody>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=.NET"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,NET.aspx">.NET</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=2+Ohhhh"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,2Ohhhh.aspx">2 Ohhhh</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=3.0"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,30.aspx">3.0</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=3.5"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,35.aspx">3.5</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Administration"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Administration.aspx">Administration</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=ASP.NET"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,ASPNET.aspx">ASP.NET</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=BCL"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,BCL.aspx">BCL</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Books"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Books.aspx">Books</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=C%23"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,C.aspx">C#</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Community"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Community.aspx">Community</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Cool+Download"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,CoolDownload.aspx">Cool Download</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=IIS"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,IIS.aspx">IIS</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Longhorn"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Longhorn.aspx">Longhorn</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=L-Word+Stuff"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,LWordStuff.aspx">L-Word Stuff</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=MSR"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,MSR.aspx">MSR</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Newsbites"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Newsbites.aspx">Newsbites</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Project+Management"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,ProjectManagement.aspx">Project Management</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Security"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Security.aspx">Security</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Smartphone+and+PocketPC"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,SmartphoneAndPocketPC.aspx">Smartphone and PocketPC</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Software+Architecture"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,SoftwareArchitecture.aspx">Software Architecture</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=SQL+Server"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,SQLServer.aspx">SQL Server</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Subversion"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Subversion.aspx">Subversion</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Team+System"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,TeamSystem.aspx">Team System</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=this"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,this.aspx">this</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Training+and+Conferences"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,TrainingAndConferences.aspx">Training and Conferences</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Tri+0"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Tri0.aspx">Tri 0</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=UAC"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,UAC.aspx">UAC</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Use+the+source+Luke"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,UseTheSourceLuke.aspx">Use the source Luke</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Virtual+PC"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,VirtualPC.aspx">Virtual PC</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Vista"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,Vista.aspx">Vista</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Visual+Studio"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,VisualStudio.aspx">Visual Studio</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=WCF"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,WCF.aspx">WCF</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Web+Services"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,WebServices.aspx">Web Services</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=Workflow+Foundation"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,WorkflowFoundation.aspx">Workflow Foundation</a>
</td>
</tr>
<tr>
<td class="categoryListCellStyle">
<a class="categoryListXmlLinkStyle" rel="tag" href="http://chrison.net/SyndicationService.asmx/GetRssCategory?categoryName=x64"><img src="http://chrison.net/images/feedButton.gif" alt="[RSS]" border="0"></a> <a class="categoryListLinkStyle" rel="tag" href="http://chrison.net/CategoryView,category,x64.aspx">x64</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div style="font-weight:bold;padding-top:15px">Microsoft</div>
<hr>
<div>
<div class="blogRollContainerStyle">
<table class="blogRollTableStyle" border="0">
<tbody>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://www.gotdotnet.com/community/resources/rss.aspx?feed=workspace"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.gotdotnet.com/">GDN Workspaces</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://www.thundermain.com/rss/"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://download.microsoft.com/">Download Center</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://msdn.microsoft.com/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://msdn.microsoft.com/">MSDN Just Published</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://research.microsoft.com/rss/downloads.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://research.microsoft.com/">MSR Downloads</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://research.microsoft.com/rss/news.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://research.microsoft.com/">MSR News and Headlines</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://research.microsoft.com/rss/publications.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://research.microsoft.com/">MSR Publications</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://www.microsoft.com/technet/security/bulletin/secrss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle">Security Bulletins</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div style="font-weight:bold;padding-top:15px">Blogroll</div>
<hr>
<div>
<div class="blogRollContainerStyle">
<table class="blogRollTableStyle" border="0">
<tbody>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://www.joelonsoftware.com/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.joelonsoftware.com/">Joel on Software</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.dotnetgerman.com/alexonasp.net/SyndicationService.asmx/GetRss"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.dotnetgerman.com/alexonasp.net/">Alex on ASP.NET (de)</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://msdn.microsoft.com/msdn-online/shared/components/rssaggregator.aspx?OPML=/asp.net/community/blogs/team/aspnet.opml&link=http://msdn.microsoft.com/asp.net/community/blogs/team/&title=Blogs+from+the+ASP.NET+Team&description=ASP.NET+Team+member+blogs"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.asp.net/">ASP.NET Team Members</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://www.sqlskills.com/blogs/bobb/SyndicationService.asmx/GetRss"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.sqlskills.com/blogs/bobb/">Bob Beauchemin</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.msdn.com/brada/Rss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.msdn.com/brada/">Brad Abrams</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://www.schneier.com/blog/index.rdf"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.schneier.com/blog/">Bruce Schneier</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.thinktecture.com/cweyer/rss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.thinktecture.com/cweyer">Christian Weyer</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://fredrik.nsquared2.com/rss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://fredrik.nsquared2.com/">Fredrik Normen</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.thinktecture.com/ingo/rss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.thinktecture.com/ingo/">Ingo Rammer</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.technet.com/security/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.technet.com/security/">Jeff Jones</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://pluralsight.com/blogs/keith/Rss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.pluralsight.com/blogs/keith/default.aspx">Keith Brown</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.msdn.com/michael_howard/Rss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.msdn.com/michael_howard/">Michael Howard</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.msdn.com/jmstall/Rss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.msdn.com/jmstall/">Mike Stall</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.msdn.com/pandrew/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.msdn.com/pandrew/">Paul Andrew</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.msdn.com/ricom/Rss.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.msdn.com/ricom/">Rico Mariani</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.msdn.com/robcaron/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.msdn.com/robcaron/">Rob Caron</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.msdn.com/rjacobs/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.msdn.com/rjacobs/">Ron Jacobs</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://feeds.feedburner.com/Iserializable"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://weblogs.asp.net/rosherove/">Roy Osherove</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://feeds.feedburner.com/ScottHanselman"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.hanselman.com/blog/default.aspx">Scott Hanselman</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.msdn.com/shawnfa/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.msdn.com/shawnfa/">Shawn Fanning</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.technet.com/steriley/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.technet.com/steriley/">Steve Riley</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div style="font-weight:bold;padding-top:15px">Deutsche Resourcen</div>
<hr>
<div>
<div class="blogRollContainerStyle">
<table class="blogRollTableStyle" border="0">
<tbody>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://www.aspxheute.com/syndication/rss.xml"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.aspxheute.com/">.NET & ASP Artikel</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://www.aspgerman.com/wiki/rss.aspx?namespace=AspGerman"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://www.aspgerman.com/wiki/default.aspx/AspGerman.HomePage">Active Server Pages Wiki</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://aspxfiles.com/rss.aspx?namespace=AspxFiles"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://aspxfiles.com/default.aspx/AspxFiles.HomePage">ASP.NET Wiki</a>
</td>
</tr>
<tr>
<td class="blogRollCellStyle">
<a class="blogRollXmlLinkStyle" href="http://blogs.dotnetgerman.com/mainfeed.aspx"><img src="http://chrison.net/images/feedButton.gif" alt="[Feed]" border="0"></a> <a class="blogRollLinkStyle" href="http://blogs.dotnetgerman.com/">DotNetGerman Blogs</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div style="font-weight:bold;padding-top:15px">Management</div>
<hr>
<a href="Login.aspx">Anmelden</a>
</div>
</td>
<!--------------left----------------->
<!-------------spacer---------------->
<td width="10"> </td>
<!-------------spacer---------------->
<!-------------content header-------->
<td valign="top">
<table style="width: 100%; ;border-collapse:collapse;border-spacing:0px;border:none">
<tbody>
<tr>
<td style="height:80px;padding:0px" valign="top" background="themes/chrisondotnet/images/header_background.png">
<table style="width:100%;height:80px;border-collapse:collapse;border-spacing:0px;border-left:1px solid silver;border-right:1px solid silver;border-top:1px solid silver" height="80">
<tbody>
<tr>
<td style="padding:0px"><a href="http://chrison.net/default.aspx"><img src="themes/chrisondotnet/images/header_chrisondotnet.png" width="440" height="80" border="0" alt=""></a></td>
<td style="width:100%;padding:0px"></td>
<td style="padding:0px;width:214px;"><a href="http://www.asp.net" target="_blank"><img src="themes/chrisondotnet/images/header_asp.net.png" width="214" height="80" border="0" alt=""></a></td>
</tr>
</tbody>
</table>
<table style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background.png');border-left:1px solid silver;border-right:1px solid silver;">
<tbody>
<tr>
<td style="width:100%;font-size:8pt;"></td>
</tr>
</tbody>
</table>
<!---------------content header-------->
<div>
<div style="background-color:white;border-left:1px solid silver;border-right:1px solid silver;border-bottom:1px solid silver">
<br>
<div style="margin-left:10px;margin-right:10px;background-color:white;">
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2009-06-09.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Dienstag, 9. Juni 2009</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="a6772def6-858d-498a-8492-b8fb1a4951c1"></a>
<div class="itemTitleStyle"><a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/NoteToSelfCommandProcessorCompletionChar.aspx">Note to Self - Command Processor / CompletionChar</a></div>
<div class="itemBodyStyle">
<p></p>
<p>Although I am reinstalling machines on such a regular basis, I keep forgetting enabling tab completion for cmd.exe. Therefore I am putting a note to self in my blog...</p>
<p>Where to define:</p>
<p><img border="0" src="http://chrison.net/content/binary/commandprocessor_completionchar.png"></p>
<p>How to do it automatically (copy / paste / save as .reg / double-click):</p>
<p>
<font face="Courier New">Windows Registry Editor Version 5.00</font>
</p>
<p>
<font face="Courier New">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]<br>"CompletionChar"=dword:00000009</font>
</p>
</div>
<div class="itemCategoryLinksStyle">Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,this.aspx">this</a></div>
<div class="itemFooterStyle"> Dienstag, 9. Juni 2009 10:29:22 (W. Europe Daylight Time,
UTC+02:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/NoteToSelfCommandProcessorCompletionChar.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,6772def6-858d-498a-8492-b8fb1a4951c1.aspx#commentstart">Kommentare [1]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2009-04-24.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Freitag, 24. April 2009</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="aa05a04f7-96ab-4433-8ba1-30961d335376"></a>
<div class="itemTitleStyle"><a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/FileInUseAreYouKiddingMe.aspx">File In Use - Are You Kidding Me?</a></div>
<div class="itemBodyStyle">
<p></p>
<p>Downloaded SQL 2008 Trials to my local disk and wanted to move them to an external harddisk:</p>
<p><img border="0" src="http://chrison.net/content/binary/FileInUse_YouAreKidding.png"></p>
<p>"The action can't be completed because the file is open in Microsoft SQL Server 2008" - that leaves me slightly puzzled.</p>
</div>
<div class="itemCategoryLinksStyle">Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,this.aspx">this</a></div>
<div class="itemFooterStyle"> Freitag, 24. April 2009 12:11:33 (W. Europe Daylight Time,
UTC+02:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/FileInUseAreYouKiddingMe.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,a05a04f7-96ab-4433-8ba1-30961d335376.aspx#commentstart">Kommentare [0]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2009-04-19.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Sonntag, 19. April 2009</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="a64da7780-bd03-4e5b-add8-47ce5cc56c1c"></a>
<div class="itemTitleStyle"><a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/ShardingInSubversion.aspx">Sharding in Subversion</a></div>
<div class="itemBodyStyle">
<p><a href="http://chrison.net/ct.ashx?id=64da7780-bd03-4e5b-add8-47ce5cc56c1c&url=http%3a%2f%2fsubversion.tigris.org%2fsvn_1.5_releasenotes.html%23fsfs-sharding">Sharding</a> was introduced for FSFS
repositories in Subversion 1.5, but only now I moved to a sharded repository (at time of this writing: Subversion 1.6.1). This meant - as usual - a dump / create / load dance. Followed by the pack operation:
</p>
<p>
<font face="Courier New">svnadmin dump c:\subversion\sharpdevelop > c:\sd.dump<br>svnadmin create c:\subversion\sharpdevelop<br>svnadmin load c:\subversion\sharpdevelop < c:\sd.dump<br>svnadmin pack
c:\subversion\sharpdevelop</font>
</p>
<p>Without svnadmin pack, you only get sharding. Executing svnadmin pack puts all the shards together into a single file. This makes certain operations such as svnadmin hotcopy way faster.</p>
</div>
<div class="itemCategoryLinksStyle">Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,Subversion.aspx">Subversion</a></div>
<div class="itemFooterStyle"> Sonntag, 19. April 2009 08:34:11 (W. Europe Daylight Time,
UTC+02:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/ShardingInSubversion.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,64da7780-bd03-4e5b-add8-47ce5cc56c1c.aspx#commentstart">Kommentare [0]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2009-04-17.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Freitag, 17. April 2009</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="a1ca23338-286d-4eb5-ae5a-3fc5bf3e7c08"></a>
<div class="itemTitleStyle"><a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/NovellNetware65SP8InVirtualPC2007.aspx">Novell Netware 6.5 SP8 in Virtual PC 2007</a></div>
<div class="itemBodyStyle">
<p>Don't ask why, but I needed an eDirectory setup - here is the proof (Novell Netware running in VPC 2007 on Windows 7):</p>
<p><img border="0" src="http://chrison.net/content/binary/netware65sp8_in_virtualpc2007.png"></p>
<p>The only stumbling block is that the network card is not properly detected, but
<a href="http://chrison.net/ct.ashx?id=1ca23338-286d-4eb5-ae5a-3fc5bf3e7c08&url=http%3a%2f%2fcvibes.net%2fcomputers%2fVirtualPC.html%23nw65">this trick still works</a>. The necessary driver is unsupported but lives
in c:\nwserver\drivers\unsupdrv\ at this point of the installation process.</p>
</div>
<div class="itemCategoryLinksStyle">Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,VirtualPC.aspx">Virtual PC</a></div>
<div class="itemFooterStyle"> Freitag, 17. April 2009 12:52:28 (W. Europe Daylight Time,
UTC+02:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/NovellNetware65SP8InVirtualPC2007.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,1ca23338-286d-4eb5-ae5a-3fc5bf3e7c08.aspx#commentstart">Kommentare [0]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2009-04-01.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Mittwoch, 1. April 2009</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="a5367618d-6531-4358-9096-b814674770dd"></a>
<div class="itemTitleStyle"><a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/TechDaysDefyAllChallenges.aspx">Tech∙Days Defy All Challenges</a></div>
<div class="itemBodyStyle">
<p>Wrapping up <a href="http://chrison.net/ct.ashx?id=5367618d-6531-4358-9096-b814674770dd&url=http%3a%2f%2fwww.msfttechdays.com%2f">Tech∙Days</a> by posting the live sessions I watched:</p>
<ul>
<li>DEV307 Starting Test Driven Development with Mock Objects </li>
<li>DEV320 Debugging managed code using WinDbg </li>
<li>OFC302 SharePoint Workflow for the Masses </li>
<li>OFC400 Enterprise SharePoint Workflow: Building and Managing a High-Performance Workflow Environment </li>
<li>DEV300 ASP.NET Model-View-Controller: Separation of Concerns and Unit Testing </li>
<li>WIN300 Scripting the Microsoft .NET Framework Using Windows PowerShell </li>
<li>WEB401 In-depth MVC </li>
<li>DEV309 Automating Task and Other Productivity Improvements for Windows Presentation Foundation Development </li>
</ul>
</div>
<div class="itemCategoryLinksStyle">
Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,this.aspx">this</a> | <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,TrainingAndConferences.aspx">Training and Conferences</a>
</div>
<div class="itemFooterStyle"> Mittwoch, 1. April 2009 21:32:23 (W. Europe Daylight Time,
UTC+02:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/TechDaysDefyAllChallenges.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,5367618d-6531-4358-9096-b814674770dd.aspx#commentstart">Kommentare [0]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2009-03-31.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Dienstag, 31. März 2009</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="a5d2e2885-39cf-4d10-b447-c29a723eb6da"></a>
<div class="itemTitleStyle">
<a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/VSTSErrorMessageATestCanBeOpenedOnlyWithinATestProject.aspx">VSTS Error Message: A test can be opened only within a test project</a></div>
<div class="itemBodyStyle">
<p>In a larger project, I got the following error message:</p>
<p><img border="0" src="http://chrison.net/content/binary/vsts_cannot_load_orderdtest1.png"></p>
<p>
<font face="Courier New">Visual Studio could not open the file "c:\TestAutomation\BuildVerificationTests.orderedtest" because the file contains tests. A test can be opened only within a test project. Add the file to a
test project, add the test project to the open solution, and then try again.</font>
</p>
<p>Reason: The solution contains a service model (<a href="http://chrison.net/ct.ashx?id=5d2e2885-39cf-4d10-b447-c29a723eb6da&url=http%3a%2f%2fwww.codeplex.com%2fservicefactory">Service Factory</a>). Right-clicking
and selecting Unload Project (on the service model) fixes the problem with not being able to open the ordered test.</p>
</div>
<div class="itemCategoryLinksStyle">
Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,TeamSystem.aspx">Team System</a> | <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,VisualStudio.aspx">Visual Studio</a>
</div>
<div class="itemFooterStyle"> Dienstag, 31. März 2009 11:20:37 (W. Europe Daylight Time,
UTC+02:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/VSTSErrorMessageATestCanBeOpenedOnlyWithinATestProject.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,5d2e2885-39cf-4d10-b447-c29a723eb6da.aspx#commentstart">Kommentare [0]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2009-03-30.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Montag, 30. März 2009</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="a78ebfb41-8314-46b4-aab9-890c7dfaa58a"></a>
<div class="itemTitleStyle"><a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/TF42097AWorkItemCouldNotBeCreatedDueToAFieldError.aspx">TF42097: A work item could not be created due to a field error.</a>
</div>
<div class="itemBodyStyle">
<p>If your Team Build informs you that "The following fields have incorrect values: ..." you are most likely the victim of someone modifying the Bug work item type, adding mandatory fields without default values. </p>
<p>Resolution: <em><SkipWorkItemCreation>true</SkipWorkItemCreation></em></p>
</div>
<div class="itemCategoryLinksStyle">
Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,TeamSystem.aspx">Team System</a> | <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,VisualStudio.aspx">Visual Studio</a>
</div>
<div class="itemFooterStyle"> Montag, 30. März 2009 12:39:15 (W. Europe Daylight Time,
UTC+02:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/TF42097AWorkItemCouldNotBeCreatedDueToAFieldError.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,78ebfb41-8314-46b4-aab9-890c7dfaa58a.aspx#commentstart">Kommentare [0]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2009-03-13.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Freitag, 13. März 2009</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="a41abc667-8feb-4e41-869f-58423f3c5b74"></a>
<div class="itemTitleStyle">
<a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/SSISErrorOfTheDayExpectedTheTEXTTokenInDataStreamForBulkCopyOfTextOrImageData.aspx">SSIS Error of the Day - "Expected the TEXT token in data stream for bulk copy of text or image data."</a>
</div>
<div class="itemBodyStyle">
<p>Importing table data is an easy enough task in SQL Server 2005 - but this week we stumbled across this error message:</p>
<p>
<font face="Courier New">Error 0xc0202009: Data Flow Task: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.<br>An OLE DB record is available. Source: "Microsoft SQL
Native Client" Hresult: 0x80004005 Description: "Expected the TEXT token in data stream for bulk copy of text or image data.".<br> (SQL Server Import and Export Wizard)</font>
</p>
<p>Funny thing is, there were only nvarchar(max) columns on the table, and no binary columns whatsoever. A bit of searching and more staring at the table definition finally pointed out us in the right direction - the
target table has a computed field in it, like so:</p>
<p>[MyComputedColumn] AS<br> (<br> [dbo].[MyFunction](OtherColumnAsParameter)<br> ),</p>
<p>Although we had told SSIS to <ignore> it, this error came up. The only work around for SSIS: remove the computed field before doing the import.</p>
<p>References:</p>
<p>
<a href="http://chrison.net/ct.ashx?id=41abc667-8feb-4e41-869f-58423f3c5b74&url=http%3a%2f%2fwww.eggheadcafe.com%2fconversation.aspx%3fmessageid%3d30015415%26threadid%3d30015404">http://www.eggheadcafe.com/conversation.aspx?messageid=30015415&threadid=30015404</a><br><a href="http://chrison.net/ct.ashx?id=41abc667-8feb-4e41-869f-58423f3c5b74&url=http%3a%2f%2fsqlug.be%2fforums%2fthread%2f821.aspx">http://sqlug.be/forums/thread/821.aspx</a>
</p>
</div>
<div class="itemCategoryLinksStyle">Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,SQLServer.aspx">SQL Server</a></div>
<div class="itemFooterStyle"> Freitag, 13. März 2009 11:47:18 (W. Europe Standard Time,
UTC+01:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/SSISErrorOfTheDayExpectedTheTEXTTokenInDataStreamForBulkCopyOfTextOrImageData.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,41abc667-8feb-4e41-869f-58423f3c5b74.aspx#commentstart">Kommentare [1]</a>
</div>
<p> </p>
<a name="ae57ba5a6-626e-4b8b-9101-704bff5fb19a"></a>
<div class="itemTitleStyle">
<a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/TFSAlertsEditorHowToMakeAlertsStickOctober2008Edition.aspx">TFS Alerts Editor - HowTo Make Alerts Stick (October 2008 Edition)</a></div>
<div class="itemBodyStyle">
<p></p>
<p>Adding an alert via the Team Foundation Power Tools Alerts Editor (October 2008) is innocent enough:</p>
<p><img border="0" src="http://chrison.net/content/binary/alertseditor1.png"></p>
<p>If you close and reopen the Alerts Editors, the alert definiton is still there (in the above screenshot for "A work item was assigned to me"). However, closing & reopening VS is a different thing - now your alert
definition is gone - poof, vanished mysteriously.</p>
<p>It took a while and quite a bit of searching, but finally I found out why and made a slight change:</p>
<p><img border="0" src="http://chrison.net/content/binary/alertseditor2.png"></p>
<p>The username that is pre-filled in in the "Send to:" field doesn't work - you have to use your email address! That much for trusting defaults, but I'm more than happy that it now works as advertised.</p>
</div>
<div class="itemCategoryLinksStyle">Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,TeamSystem.aspx">Team System</a></div>
<div class="itemFooterStyle"> Freitag, 13. März 2009 11:38:47 (W. Europe Standard Time,
UTC+01:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/TFSAlertsEditorHowToMakeAlertsStickOctober2008Edition.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,e57ba5a6-626e-4b8b-9101-704bff5fb19a.aspx#commentstart">Kommentare [0]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
<div style="width:100%;height:19px;border-collapse:collapse;background-image:url('themes/chrisondotnet/images/topmenu_background_gray.png');font-weight:bold">
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:1px">
<tbody>
<tr>
<td><a class="archiveLinkStyle" href="http://chrison.net/default,date,2008-11-19.aspx"><img class="archiveLinkImageStyle" src="http://chrison.net/images/dayLink.gif" alt="#" border="0"></a></td>
<td> Mittwoch, 19. November 2008</td>
</tr>
</tbody>
</table>
</div>
<div style="border:1px solid #E6E6E6">
<div style="margin:4px"><a name="a00384b7a-52d6-455e-bf51-7668159debb3"></a>
<div class="itemTitleStyle"><a class="TitleLinkStyle" rel="bookmark" href="http://chrison.net/LatestProSafeVPNFirewallClientOnX64.aspx">Latest ProSafe VPN Firewall Client on x64</a></div>
<div class="itemBodyStyle">
<p></p>
<p>No, this time it is not Microsoft - it is NetGear that is not providing an x64-capable version of their software. The very latest VPN client software for a ProSafe router (FVS338) doesn't work (install) on Vista
x64: </p>
<p><img src="http://chrison.net/content/binary/netgearvpnclient_x64.png" border="0"></p>
<p>I think it is needless to say that I am not amused. Who are you kidding in late 2008?</p>
</div>
<div class="itemCategoryLinksStyle">
Categories: <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,Security.aspx">Security</a> | <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,this.aspx">this</a> | <a class="categoryLinkStyle" href="http://chrison.net/CategoryView,category,x64.aspx">x64</a>
</div>
<div class="itemFooterStyle"> Mittwoch, 19. November 2008 19:20:45 (W. Europe Standard Time,
UTC+01:00) <a class="permalinkStyle" rel="bookmark" href="http://chrison.net/LatestProSafeVPNFirewallClientOnX64.aspx"><img title="Benutzen Sie die URL dieses Links, um dauerhafte Referenzen zu diesem Artikel zu schlagen." class="permalinkImageStyle" src="http://chrison.net/images/itemLink.gif" alt="#" border="0"></a> <a class="commentLinkStyle" href="http://chrison.net/CommentView,guid,00384b7a-52d6-455e-bf51-7668159debb3.aspx#commentstart">Kommentare [1]</a>
</div>
<p> </p>
</div>
</div>
<br><br>
</div>
<p style="margin:10px">
<table cellpadding="10" cellspacing="0" border="0" align="right">
<tbody>
<tr>
<td>
</td>
</tr>
</tbody>
</table> © Copyright 2021 Christoph Wille<br>
<br> newtelligence dasBlog
2.3.9074.18820<br><a class="xmlCoffeeMugStyle" href="http://127.0.0.1:5335/system/pages/subscriptions?url=http://chrison.net/SyndicationService.asmx/GetRss"><img title="Abonnieren" class="xmlCoffeeMugImageStyle" src="http://chrison.net/images/xmlCoffeeMug.gif" alt="Abonnieren" border="0"></a> <a class="rssLinkStyle" href="http://chrison.net/SyndicationService.asmx/GetRss"><img title="RSS 2.0" class="rssLinkImageStyle" src="http://chrison.net/images/feed-icon-16x16.gif" alt="RSS 2.0" border="0"></a>|<a class="atomLinkStyle" href="http://chrison.net/SyndicationService.asmx/GetAtom"><img title="Atom 1.0" class="rssLinkImageStyle" src="http://chrison.net/images/atomButton.gif" alt="Atom 1.0" border="0"></a> <a class="mailToStyle" href="javascript:var e1='%67%6d%61%69%6c%2e%63%6f%6d',e2='mailto: ', e3='%63%68%72%69%73%74%6f%70%68%2e%77%69%6c%6c%65';var e0=e2+e3+'%40'+e1+'?Subject=Comments on: this.Pose() as Expert';(window.location?window.location.replace(e0):document.write(e0)); "><img title="E-Mail an den Autor" class="mailToImageStyle" src="http://chrison.net/images/mailTo.gif" alt="E-Mail an den Autor" border="0"></a><br
clear="right"><br>
</p>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</td>
<td width="200"> </td>
</tr>
</tbody>
</table>
<div style="visibility:hidden;"> Don't <a href="mailto:fleischfalle@alphasierrapapa.com">contact us</a> via this (fleischfalle@alphasierrapapa.com) email address. </div>
</form>
Text Content
<November 2021> MoDiMiDoFrSaSo2526272829303112345678910111213141516171819202122232425262728293012345 On this page... -------------------------------------------------------------------------------- Note to Self - Command Processor / CompletionChar File In Use - Are You Kidding Me? Sharding in Subversion Novell Netware 6.5 SP8 in Virtual PC 2007 Tech∙Days Defy All Challenges VSTS Error Message: A test can be opened only within a test project TF42097: A work item could not be created due to a field error. SSIS Error of the Day - "Expected the TEXT token in data stream for bulk copy of text or image data." TFS Alerts Editor - HowTo Make Alerts Stick (October 2008 Edition) Latest ProSafe VPN Firewall Client on x64 Search -------------------------------------------------------------------------------- Links -------------------------------------------------------------------------------- My Consulting Company Blog Homepage Impressum (Imprint) Official ASP.NET Site SharpDevelop (Free .NET IDE) Member of... -------------------------------------------------------------------------------- Blog Categories -------------------------------------------------------------------------------- .NET 2 Ohhhh 3.0 3.5 Administration ASP.NET BCL Books C# Community Cool Download IIS Longhorn L-Word Stuff MSR Newsbites Project Management Security Smartphone and PocketPC Software Architecture SQL Server Subversion Team System this Training and Conferences Tri 0 UAC Use the source Luke Virtual PC Vista Visual Studio WCF Web Services Workflow Foundation x64 Microsoft -------------------------------------------------------------------------------- GDN Workspaces Download Center MSDN Just Published MSR Downloads MSR News and Headlines MSR Publications Security Bulletins Blogroll -------------------------------------------------------------------------------- Joel on Software Alex on ASP.NET (de) ASP.NET Team Members Bob Beauchemin Brad Abrams Bruce Schneier Christian Weyer Fredrik Normen Ingo Rammer Jeff Jones Keith Brown Michael Howard Mike Stall Paul Andrew Rico Mariani Rob Caron Ron Jacobs Roy Osherove Scott Hanselman Shawn Fanning Steve Riley Deutsche Resourcen -------------------------------------------------------------------------------- .NET & ASP Artikel Active Server Pages Wiki ASP.NET Wiki DotNetGerman Blogs Management -------------------------------------------------------------------------------- Anmelden Dienstag, 9. Juni 2009 Note to Self - Command Processor / CompletionChar Although I am reinstalling machines on such a regular basis, I keep forgetting enabling tab completion for cmd.exe. Therefore I am putting a note to self in my blog... Where to define: How to do it automatically (copy / paste / save as .reg / double-click): Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor] "CompletionChar"=dword:00000009 Categories: this Dienstag, 9. Juni 2009 10:29:22 (W. Europe Daylight Time, UTC+02:00) Kommentare [1] Freitag, 24. April 2009 File In Use - Are You Kidding Me? Downloaded SQL 2008 Trials to my local disk and wanted to move them to an external harddisk: "The action can't be completed because the file is open in Microsoft SQL Server 2008" - that leaves me slightly puzzled. Categories: this Freitag, 24. April 2009 12:11:33 (W. Europe Daylight Time, UTC+02:00) Kommentare [0] Sonntag, 19. April 2009 Sharding in Subversion Sharding was introduced for FSFS repositories in Subversion 1.5, but only now I moved to a sharded repository (at time of this writing: Subversion 1.6.1). This meant - as usual - a dump / create / load dance. Followed by the pack operation: svnadmin dump c:\subversion\sharpdevelop > c:\sd.dump svnadmin create c:\subversion\sharpdevelop svnadmin load c:\subversion\sharpdevelop < c:\sd.dump svnadmin pack c:\subversion\sharpdevelop Without svnadmin pack, you only get sharding. Executing svnadmin pack puts all the shards together into a single file. This makes certain operations such as svnadmin hotcopy way faster. Categories: Subversion Sonntag, 19. April 2009 08:34:11 (W. Europe Daylight Time, UTC+02:00) Kommentare [0] Freitag, 17. April 2009 Novell Netware 6.5 SP8 in Virtual PC 2007 Don't ask why, but I needed an eDirectory setup - here is the proof (Novell Netware running in VPC 2007 on Windows 7): The only stumbling block is that the network card is not properly detected, but this trick still works. The necessary driver is unsupported but lives in c:\nwserver\drivers\unsupdrv\ at this point of the installation process. Categories: Virtual PC Freitag, 17. April 2009 12:52:28 (W. Europe Daylight Time, UTC+02:00) Kommentare [0] Mittwoch, 1. April 2009 Tech∙Days Defy All Challenges Wrapping up Tech∙Days by posting the live sessions I watched: * DEV307 Starting Test Driven Development with Mock Objects * DEV320 Debugging managed code using WinDbg * OFC302 SharePoint Workflow for the Masses * OFC400 Enterprise SharePoint Workflow: Building and Managing a High-Performance Workflow Environment * DEV300 ASP.NET Model-View-Controller: Separation of Concerns and Unit Testing * WIN300 Scripting the Microsoft .NET Framework Using Windows PowerShell * WEB401 In-depth MVC * DEV309 Automating Task and Other Productivity Improvements for Windows Presentation Foundation Development Categories: this | Training and Conferences Mittwoch, 1. April 2009 21:32:23 (W. Europe Daylight Time, UTC+02:00) Kommentare [0] Dienstag, 31. März 2009 VSTS Error Message: A test can be opened only within a test project In a larger project, I got the following error message: Visual Studio could not open the file "c:\TestAutomation\BuildVerificationTests.orderedtest" because the file contains tests. A test can be opened only within a test project. Add the file to a test project, add the test project to the open solution, and then try again. Reason: The solution contains a service model (Service Factory). Right-clicking and selecting Unload Project (on the service model) fixes the problem with not being able to open the ordered test. Categories: Team System | Visual Studio Dienstag, 31. März 2009 11:20:37 (W. Europe Daylight Time, UTC+02:00) Kommentare [0] Montag, 30. März 2009 TF42097: A work item could not be created due to a field error. If your Team Build informs you that "The following fields have incorrect values: ..." you are most likely the victim of someone modifying the Bug work item type, adding mandatory fields without default values. Resolution: <SkipWorkItemCreation>true</SkipWorkItemCreation> Categories: Team System | Visual Studio Montag, 30. März 2009 12:39:15 (W. Europe Daylight Time, UTC+02:00) Kommentare [0] Freitag, 13. März 2009 SSIS Error of the Day - "Expected the TEXT token in data stream for bulk copy of text or image data." Importing table data is an easy enough task in SQL Server 2005 - but this week we stumbled across this error message: Error 0xc0202009: Data Flow Task: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Expected the TEXT token in data stream for bulk copy of text or image data.". (SQL Server Import and Export Wizard) Funny thing is, there were only nvarchar(max) columns on the table, and no binary columns whatsoever. A bit of searching and more staring at the table definition finally pointed out us in the right direction - the target table has a computed field in it, like so: [MyComputedColumn] AS ( [dbo].[MyFunction](OtherColumnAsParameter) ), Although we had told SSIS to <ignore> it, this error came up. The only work around for SSIS: remove the computed field before doing the import. References: http://www.eggheadcafe.com/conversation.aspx?messageid=30015415&threadid=30015404 http://sqlug.be/forums/thread/821.aspx Categories: SQL Server Freitag, 13. März 2009 11:47:18 (W. Europe Standard Time, UTC+01:00) Kommentare [1] TFS Alerts Editor - HowTo Make Alerts Stick (October 2008 Edition) Adding an alert via the Team Foundation Power Tools Alerts Editor (October 2008) is innocent enough: If you close and reopen the Alerts Editors, the alert definiton is still there (in the above screenshot for "A work item was assigned to me"). However, closing & reopening VS is a different thing - now your alert definition is gone - poof, vanished mysteriously. It took a while and quite a bit of searching, but finally I found out why and made a slight change: The username that is pre-filled in in the "Send to:" field doesn't work - you have to use your email address! That much for trusting defaults, but I'm more than happy that it now works as advertised. Categories: Team System Freitag, 13. März 2009 11:38:47 (W. Europe Standard Time, UTC+01:00) Kommentare [0] Mittwoch, 19. November 2008 Latest ProSafe VPN Firewall Client on x64 No, this time it is not Microsoft - it is NetGear that is not providing an x64-capable version of their software. The very latest VPN client software for a ProSafe router (FVS338) doesn't work (install) on Vista x64: I think it is needless to say that I am not amused. Who are you kidding in late 2008? Categories: Security | this | x64 Mittwoch, 19. November 2008 19:20:45 (W. Europe Standard Time, UTC+01:00) Kommentare [1] © Copyright 2021 Christoph Wille newtelligence dasBlog 2.3.9074.18820 | Don't contact us via this (fleischfalle@alphasierrapapa.com) email address.