I bumped into a nice guide/rant on how to do this. It’s available here but a lot of rant and not a lot of instructions.
What you need to do is go to
http://www.techspot.com/downloads/29-windows-live-messenger.html
and grab the Messenger install. Basically the Windows Live installer is the only part not compatible with server 03, so if you just get this it all works fine.
Leave the first comment ▶
I reconfigured our Subversion install last night, and the Apache service wouldn’t start. The event viewer said
The Apache service named reported the following error:
>>> SVNParentPath takes one argument, specifies the location in the filesystem whose subdirectories are assumed to be Subversion repositories.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
The problem was I had specified
C:\Production Source\
as our repository, this has a space in it, so in
C:\Program Files\CollabNet Subversion Server\httpd\conf\httpd.conf
I modified
<Location /svn>
DAV svn
SVNParentPath “C:\Production Source\ORS2\Repository”
</Location>
Putting the quotes around the parent path. Silly problem, easy fix.
2 comments so far, add yours ▶
For one weeks salary for a graduate here you could outsource for probably a month? Everyone who works on your project has a “degree”… surely you’d be mad not to outsource and save a fortune?
I’d argue that the overall quality of the work produced will suffer (having seen some horific work); here might be the reason:
http://blog.uncool.in/2009/01/19/computer-science-fail-higher-education-in-india/
In case this site goes missing, lesson one of “Introduction to Programming” in this guys college in India included these helpful lessons he noted:
- Linux is basically a DOS based OS.
- These days we are using 128 and 256 bit processors.
- A compiler is a software that converts code written in a particular programming language to machine code. To compile a program, you must hit ALT+F9. (It took me a while to realize he was talking about the Borland Turbo C++ IDE from 1992, a prehistoric compiler Indian colleges use for all C and C++ courses.)
- The object code generated by a C++ compiler is almost identical to that produced by a Java compiler.
- The first high level language was Ada, also known as Smalltalk. (This was a big WTF moment.)
- The second high level language was COBOL, which was an improvement over Ada. (Cringe, cringe, cringe.)
- FOTRAN came after COBOL. (No, “FOTRAN” is not a typo. This is what he said.)
- FOTRAN, COBOL, Ada and Smalltalk were not general purpose languages.
- This one is classic: C was the first language to run on UNIX systems. All languages before C ran only on Windows.
Leave the first comment ▶
I had this error when trying to run some asp.net under IIS6.
Server Error in '/' Application.
--------------------------------------------------------------------------------
The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access to ‘C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files’.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access to ‘C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files’.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[HttpException (0x80004005): The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.]
System.Web.HttpRuntime.SetUpCodegenDirectory(CompilationSection compilationSection) +3570267
System.Web.HttpRuntime.HostingInit(HostingEnvironmentFlags hostingFlags) +218
[HttpException (0x80004005): The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.]
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +3465427
System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +69
System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +279
——————————————————————————–
Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
To solve it you can run aspnet_regiis. First make sure the .net framework is in your host path variable (something like C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727). Then run
aspnet_regiis -ga “NT AUTHORITY\NETWORK SERVICE”
from cmd prompt. More information on aspnet_regiis here.
3 comments so far, add yours ▶
I have a WAMP install under Vista that I use for some quick dev. When you create a database in mysql under Windows (remember Windows isn’t case sensitive, but Linux is) with any capitalisation in the name it gets lost, i.e.
CREATE DATABASE `myDatabase`;
gives you a database called ‘mydatabase’. You need to set
lower_case_table_names=2
In my.ini, restart the mysql service and tada, case sensitive mysql when you create/rename, and case insensitive when you perform lookups
Read more about it here http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html
Leave the first comment ▶
Microsoft sneekily removed the Windows Service template from VS 2008 standard, but without mentioning that in the Standard vs Pro data sheet. This causes a problem, in that I bought VS to write a service…
However this article has some nice links that gives you the code to write your own service and include the installer, thanks Justin.
http://justinjmoses.wordpress.com/2008/03/27/visual-studio-2008-standard-vs-professional/
Update: I have downloaded VS2008 Pro and produced a default Windows Service project you can download here. The only changes I made were to rename the Project/Namespace from WindowsService1 to WindowsService.
One comment so far, add another ▶
The Windows Live search integration is really crap in Server ’03. To default back to the traditional search functionality I found this guide here
http://www.johnsadventures.com/archives/2006/11/how_to_default_to_search_companion_with_windows_de/
But in short Regedit -> HKEY_CURRENT_USER\Software\Microsoft\Windows Desktop Search\DS ->
set ShowStartSearchBand to 0.
Leave the first comment ▶
Honda VTR1000 SP-2 (RC51)
999cc, 4-stroke, 8 valve, DOHC v-twin
133 bhp / 75 lbft, 194kg











Leave the first comment ▶
Kawasaki ZX-7RR
748cc, 4-stroke, 16 valve, DOHC inline four
121 bhp, 200kg










Leave the first comment ▶
Suzuki TL1000R
995cc, 4-stroke, 8 valve, DOHC v-twin
119 rwhp / 72 lbft, 197kg (228kg wet)












Leave the first comment ▶