by Sven
22. February 2012 22:03
I bought the Odsys Twin Video Player for my kids and struggled a little bit on how to get TS files from my Technisat Digit HD8-C Recorder. I use Avidemux for this job and here are my settings:
First open the TS File in Avidemux:

For Video choose MPEG-4 ASP(Xvid). Configure it to use “Video Size (Two Pass)”. In Filters select Resize and set it to 480x274.
For Audio choose MP3 (lame) and finally set the format to AVI. That’s it.
by Sven
18. February 2012 11:25
I had the very strange problem, that the RDP Client for Mac from Microsoft did not work with nested RDP sessions. That means when I connect from my Mac to my Windows 7 Desktop and from that to a remote Windows Server, the shift key was only working occasionally. Argh!
The solution is CoRD! A fancy RDP Client for Mac (http://cord.sourceforge.net/) Works like a charm!
by Sven
29. September 2011 14:11
Hin und wieder darf ich mich mit Kerberos Authentifizierung rumärgern. Vor allem beim Setup von neuen Systemen bringt mich das meist an den Rand der Verzweiflung. Retter in der Not ist da DelegConfig (http://www.iis.net/community/default.aspx?tabid=34&g=6&i=1887). Quasi das Schweizer Taschenmesser für die Kerberos Delegierung mit mehreren Servern. Erwähnenswert sei noch folgender Artikel zur Einrichtung von DelegConfig unter IIS 7: http://blogs.technet.com/b/askds/archive/2009/01/26/addendum-making-the-delegconfig-website-work-on-iis-7.aspx
by Sven
22. September 2011 21:47
Wer in Hamburg nach einer .NET User Group sucht, der sollte sich mal unter
http://dotnet-usergroup-hamburg.de/
bzw. unter
https://www.xing.com/net/pri0ecd1fx/dotnetusergrouphamburg/
umschauen.
Man sieht sich!
by Sven
26. July 2011 09:51
I am running BlogEngine.NET in a shared hosting environment and had the following problem after upgrading to Version 2.5:

HTTP Error 404.3 - Not Found
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
The solution is, to add the following handlers to web.config:
<system.webServer>
<handlers>
<add name="cshtml-ISAPI-4.0_32bit" path="*.cshtml" verb="GET,HEAD,POST,DEBUG"
modules="IsapiModule"
scriptProcessor="C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll"
preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
<add name="cshtml-ISAPI-4.0_64bit" path="*.cshtml" verb="GET,HEAD,POST,DEBUG"
modules="IsapiModule"
scriptProcessor="C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll"
preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
<add name="cshtml-Integrated-4.0" path="*.cshtml" verb="GET,HEAD,POST,DEBUG"
type="System.Web.HttpForbiddenHandler"
preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer>
That’s it!