Popular art from my DeviantArt account:
Sunday, October 01, 2006
The Designer/Developer Workflow in Windows Presentation FoundationWorking with a designer for your application is a concept many developers find a bit new. A lot of developers we have been working with have struggled with different methods for working with us to design their app in WPF. So we wrote this little guide that explains one of the most efficient and effective methods of working with a designer or design studio to skin your WPF app.
Anyone can use this simple method. It allows the designer to work separately from the developer(s) in Microsoft Expression Interactive Designer or any other XAML editor. The developers work in Visual Studio (using "ORCAS" / "Cider") or ExprID and create forms as usual. The application would look just like any other Windows application. When the designer is finished with the styles, he or she gives the devs the file, they reference it in the project, compile, and voila!
You can read about the process, including source code, in detail in this file below:
PDF File (452K)
NOTE: This document is a draft version. Ignore any lingual or conceptual errors. The code, however, is error free. 
Saturday, September 30, 2006
Designers and Developers wanted for high-profile projects at Nukeation StudiosNukeation Studios has divided right into the thick of WPF since the first bits were released. We were the first company to offer WPF consulting services on the Internet. Over the last year we have made a lot of progress in WPF and are ready to offer even more services and products to the industry - all based around WPF and .NET 3.0.
We are looking for freelancers for the following roles:
- Windows Presentation Foundation Designer
- Windows Presentation Foundation Developer (C# or VB)
Intermediate knowledge of Microsoft Expression Interactive Designer is a must. Basic knowledge of Microsoft Visual Studio 2005 is also required. For WPF Designer position, extensive knowledge and experience with CorelDRAW or Adobe Illustrator, and Corel PhotoPaint or Adobe Photoshop, is a must.
Geographic location irrelevant. You will be expected to work via the Internet. Professional experience is not a requirement, but is a plus. We offer some of the finest perks and the opportunity to work on some seriously high-profile projects. If you're really good, you can also expect a long-term relationship with us.
Please submit your résumé with a link (do not attach!) to at least one sample (compiled EXE only, no source required) of work done in WPF to dax [at] nukeation [dot] com. Please make the subject of the email "WPF Designer" or "WPF Developer" as appropriate.
There is no deadline, but positions are limited. 
Wednesday, September 27, 2006
nAesthetic 2.0I'm expecting a rush on my blog soon - very soon. So I went ahead and made the blog interface more user-friendly. As usual, people reading this via RSS feeds are encouraged to visit http://www.naesthetic.com and check out the new UX.
There are some big, big, big things in the works. Stay tuned. ;) 
Saturday, September 23, 2006
How to use Aero Glass in your WPF applicationsAero Glass Just about everyone making (or thinking of making) an application for Windows Vista wants to try out the cool new Aero User Experience. Software such as Windows Media Player, Windows Calendar, and the Windows Sidebar really show off the Aero glass look.
While overusing the glass bit is a certain possibility (and a probability), using it judiciously can seriously help spice up your app. A few things to keep in mind when using Aero Glass:
- Avoid a full glass window. This creates performance as well as usability issues.
- Use full glass windows only for non-resizable, non-maximizing windows.
- The glass portions of the window should always allow the entire window to be dragged.
- When designing the window, keep in mind what it will look like in a pre-Vista OS – i.e., without glass. Always have a non-Glass look ready to fall back on if Aero is disabled or if the app is run on an older Windows.
This exercise will require a good GPU (128MB AGP recommended).
Thanks to Adam Nathan for the original code!
The Code
Create a new code file and add the following code:
using System;
using System.IO;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Navigation;
using System.Windows.Interop;
using System.Runtime.InteropServices;
using System.Collections.Generic;
namespace AeroGlassExample
{
public class GlassHelper
{
struct MARGINS
{
public MARGINS(Thickness t)
{
Left = (int)t.Left;
Right = (int)t.Right;
Top = (int)t.Top;
Bottom = (int)t.Bottom;
}
public int Left;
public int Right;
public int Top;
public int Bottom;
}
[DllImport("dwmapi.dll", PreserveSig = false)]
static extern void DwmExtendFrameIntoClientArea(IntPtr hwnd, ref MARGINS margins);
[DllImport("dwmapi.dll", PreserveSig = false)]
static extern bool DwmIsCompositionEnabled();
public static bool ExtendGlassFrame(Window window, Thickness margin)
{
if (!DwmIsCompositionEnabled())
return false;
IntPtr hwnd = new WindowInteropHelper(window).Handle;
if (hwnd == IntPtr.Zero)
throw new InvalidOperationException("The Window must be shown before extending glass.");
// Set the background to transparent from both the WPF and Win32 perspectives
SolidColorBrush background = new SolidColorBrush(Colors.Red);
background.Opacity = 0.5;
window.Background = Brushes.Transparent;
HwndSource.FromHwnd(hwnd).CompositionTarget.BackgroundColor = Colors.Transparent;
MARGINS margins = new MARGINS(margin);
DwmExtendFrameIntoClientArea(hwnd, ref margins);
return true;
}
}
}
In your Window.xaml file, make the DocumentRoot object's Background to NULL then just insert the following code (marked in bold) in the codebehind file:
using System;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace AeroGlassExample
{
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
public partial class Window1 : System.Windows.Window
{
private bool neverRendered = true;
public Window1()
{
InitializeComponent();
this.SourceInitialized += new EventHandler(Window1_SourceInitialized);
}
void Window1_SourceInitialized(object sender, EventArgs e)
{
GlassHelper.ExtendGlassFrame(this, new Thickness(-1));
}
protected override void OnContentRendered(EventArgs e)
{
if (this.neverRendered)
{
// The window takes the size of its content because SizeToContent
// is set to WidthAndHeight in the markup. We then allow
// it to be set by the user, and have the content take the size
// of the window.
this.SizeToContent = SizeToContent.Manual;
FrameworkElement root = this.Content as FrameworkElement;
if (root != null)
{
root.Width = double.NaN;
root.Height = double.NaN;
}
this.neverRendered = false;
}
base.OnContentRendered(e);
}
}
}
You will get the following result:

If you replace the thickness(-1) with thickness(5,70,5,42) you get something like this:

You can download the full code below. It requires Windows Vista RC1 or later, .NET Framework 3.0 (RC1), and Microsoft Expression Interactive Designer September CTP.
AeroGlassExample.zip (14.43 KB) 
Thursday, September 21, 2006
Perplex: Coming Soon
I've tried often to keep a personal website. First there was this unmentionable, horrible website (my first actually! back in the day you made a web page - not a web site), then long years later, there was AFTER-IMAGES (art), then PIXELATED FOCUS (photography), then recently DIGITAL EXILE (art + photography).
In this long tradition the newest generation shall soon be unveiled - PERPLEX. The site will no longer be nomadic but be anchored to http://dax.nukeation.com where it shall stay until the end of time.
Perplex? That's a weird name.
Oh, not really. If you personally know me, you may know that I live by the motto: "the purpose of my life is to confuse as many people as possible". And I always do. I'm often confused myself.
This name was also chosen to reflect the look on the viewer's face when seeing my work or words.
Subscribe to the new RSS feed (a category of this very blog) for updates to my photography and art collections. The site will be online soon enough. 
Wednesday, September 20, 2006
The Code Veterans ReunionLt. Cmdr. D. Code: "Aye, laddie, when we cohded back in the dayh, we haid no stryctyrs. We just payssed 'em vayriabuls one by one." Gen. A. Bugbyte: "vayriabuls? you had vayriabuls? Back in my day we didn't even have 1's and 0's, we just had 1. (we had to simulate 0)" 
Saturday, September 16, 2006
The Solace AdventureA few weeks ago, I had the opportunity to cover new territory near Solitude. The whole place is amazing! As I've mentioned a hundred times, we actually have GRASS this year! And a desert animal like me goes wild when he sees all this green!
Now the trek from Solitude to the new place I've dubbed Solace, is not quite that long. But it is a bit deeper into the hills, and these parts are known to have wolves and even a panther or two. I've seen both of 'em first hand (in another place) so I know the danger. Joining me for this little adventure was Nukeation's newest addition, Parvez Ansari. We were both armed. No, no. No firearms. Just your standard issue melee weapon (see Parvez try to attack me with it in a later photo).
Just look at this photo from the point where we started. Wouldn't that make you just want to go ahead and explore?!

We started at around 5pm. Just 20 minutes of walking later, I saw this cool roundish hill that I just HAD to climb. The surface was covered with small loose stones, hidden by the new grass. Parvez decided to stay back (afraid of heights, I believe) as I ventured forth. To boldly go where some men have gone before. That's my motto. So I climb easily halfway up the hill when I suddenly realized that the rest of the slope was practically unclimbable. The loose stones were dangerous. So then I decide to turn back only to notice that the climb down from the hill would be just as bad, if not worse. Too bad I had the camera, otherwise Parvez might've gotten some cool shots of me panicking.
Now as I'm trying to decide whether to go up, down, or sideways, I suddenly look down and find myself standing not more than 3 centimeters away from a SNAKEHOLE! It's actually a mouse hole. But you can often find snakes living inside them after having the previous resident for dinner. I threw my backpack to Parvez, and slowly began to climb back down. It's a wonder that I did not fall. I did manage to get this beautiful shot of Solitude as seen from this hill. It's a good thing I wasn't able to climb up the hill. The top, as we saw from the other side later, was filled with dry bushes that would definetely hold one or more snakes or other small creatures that might be harmful.

We decided to go around the hill and the nearby lake. Just take a look at all the grass covering the land!!! Woohoo!

We kept following the small creek (see the first photo above) as it had made a clean path through the rocks. I was a bit disappointed that there were no snakes around. But here's a resident of these parts. Isn't he a beauty?! (that one's for you Steve-o!) It's a dragonfly! I've seen this particular dragonfly and his mate (or her mate?) before, I think. The photos I took have the same wing and body patterns. I wonder how long they live.

As soon as we followed the creek path to its end, I saw this AMAZING rocky structure. I couldn't not climb it!! It was beautiful! See for yourself:

The rock was roughly 25 to 30 feet in height. Not making the same mistake again, I gave my camera to Parvez and climb this sucker. This one had loose stones on it as well (the whole damn place was covered in them, it seems), but this was pure rock not gravel, and I'm much more comfortable climbing those. Took me only a couple of minutes to climb it, and the view from atop was AMAZING! Too bad Parvez had the camera. Too bad we took only one camera!!! I have to go back there soon!

This rock, dubbed The Holy Mound of Solace (hey, I had climbed it, if that ain't holy, nothing is!) may seem easy to climb but I tell you there were sharp rocks jutting from bigger rocks, and the climb wasn't as easy as it seems. I nearly broke my leg. What I noticed AFTER I was on top was that this was a quake damaged rock. Half of it had fallen (behind the face you see here). And the whole thing was somewhat unstable. Look at this photo I took of the underside of the rock I was standing on.

A few inches of rock supporting the whole top of one side. Scary. Especially if you have been standing on it. That put a scary end to my rock surfing career you see here.

It was getting dark and we had a lot of ground to cover to get back to the car. But I definetely intend to visit this place again real soon. I plan to spend a whole day scouting out the area as well following the now almost empty river bed of a cool river where you can find crystals inside just about every rock! Check this out!

I'm not rock expert but this seems to be somewhere between a flintstone and a rubble ... I mean flintstone and granite. But its only semi-precious and has no real value.
Here are some other shots from the trip including a vulture that hovered over us a couple of times, Parvez getting tired of my antics (I knew I should've kept the short sword!), a cool spider I found under a rock in the river, the Eye of God we saw as we were leaving, and a strange manmade (?) rock formation we found near the lake.



This was one of my more fun adventures and I definetely intend to revisit this place. Like I said I'm gonna go spend a whole day in the hills and scout out all the paths. 
Tuesday, September 12, 2006
MillaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhThe alien kickin', monkey smackin', ditch diggin', code rushin' hero (?) of the geeks is here and caught in the middle of an international incident. Get your ass over to http://www.millahseconds.com and get your overdose of Millah!  Installing Windows XP after Windows Vista RC1One of my primary machines burnt to a crisp from overuse recently, and I had to build a new computer. Must say, Windows Vista running on 2 gigs of RAM and a Pentium D 2.8GHz is really cool. Not to mention a nVidia PCI-E worth 256 megs. Anyways, so there are some compatibility issues - especially with games and applications that rely heavily on 3D hardware. So I decided to install Windows XP on a separate hard drive. Everything worked fine until I went to reboot to Vista. It couldn't. After several seconds of panicking, I understood that the bootmanager was overwritten. After some research, this is what I essentially did: - Get the Windows Vista media (on E: in this case) and run the following commandline:
- E:\boot>bootsect /nt60 /C: (/nt60 is for Vista, C: is the target drive)
- Then run BCDEdit (found in C:\Windows\System32 - the Vista installation)
- Execute the commands mentioned in my previous post.
- Reboot and you're done.
Everything is intact as far as I know. 
Friday, September 08, 2006
Become a Wildlife Warrior: In memory of Steve Irwin

Steve Irwin made a profound impact on my life. The death of my "other hero" (as a close friend put it) was a huge shock. If you would like to help - either as a tribute to Steve or just to help our magnificient wildlife - you can find many ways to do so by becoming a Wildlife Warrior at http://www.wildlifewarriors.org.au/ - this is an organization set up by Steve himself, and I'm a proud donor. 
Thursday, September 07, 2006
Saturday, August 05, 2006
Workaround for the CLICK TO ACTIVATE irritantIf you have a Flash control that needs to be "activated" - especially on a fully Flash site - you know how problematic and anti-productive it can be. Here's a workaround:
//work-around for IE "click to activate" object var objects = document.getElementsByTagName("object"); for (var i = 0; i < objects.length; i++) { objects[i].outerHTML = objects[i].outerHTML; }
This code will "activate" all OBJECT tags in your page. Use with care. The irritant in IE may not fun, but the security concern is valid.  Termination: Paul ThurrottAn incident today reminded me of an email I wrote (exactly) one year ago. I was reading WinInfo Daily Update SHORT TAKES, and had the sudden inspiration to write a very non-characteristic anti-Microsoft funny story and sent to Paul Thurrott who reportedly "spit coffee all over his monitor". This is my only anti-Microsoft story ever, so I thought I might as well immortalize it in public.
To give you some background in case you don't remember that SHORT TAKES, here's the truncated version:
WinInfo Daily Update Short Takes August 5, 2005
==== Short Takes Blog ==== by Paul Thurrott
It's been quite a week. Thanks to the release of Windows Vista Beta 1 last week, I've been inundated with email messages, many of which I haven't been able to reply to yet. I'll keep trying. But summer is usually a slow time, and as I've mentioned before, my family tries to spend as much time as possible at the beach during July and August. I wonder how ridiculous I'd look sitting on the beach with a laptop.
I expected that my Vista Beta 1 coverage would generate a lot of activity--and it did--but one thing that really took me by surprise was the reaction to my "Boycott IE" comments in an otherwise pretty mundane article about Microsoft Internet Explorer (IE) 7.0 Web standards support. I told Microsoft's Gary Schare and Chris Wilson that I frequently don't think through the effects my words can have. I know that sounds disingenuous, but it's true. I honestly thought nothing of the article; I've been recommending Firefox over IE for years. My mistake. Apparently, I'm leading a crusade now. Note to self: Think, then write.
On a related note, on Tuesday a minor post on my personal blog, the Internet Nexus, brought Microsoft down on me like a lead hammer. This incident, too, was completely unexpected. I can't discuss the post per se, but I will discuss Microsoft's interaction with me during this event because it was so silly. After demanding that I remove the post, which appears on a free blog read by about 12 people, I was told that I had violated a nondisclosure agreement (NDA--I hadn't) and that the information I had posted--in all its vagueness--was a Microsoft trade secret. I was also told that various people at Microsoft were "very upset" with me, although none of them contacted me directly. And yes, they have my phone number. So... I'm not sure what all this means. But like I said, it was quite a week.
==== Short Takes ==== An irreverent look at some of the week's other stories, by Paul Thurrott
Windows Vista Hasn't Slipped to Late 2006 I love the media--and not because I have the dubious distinction of living within its outer fringes. This week, I saw several reports noting that the release of Windows Vista had slipped yet again, this time to late 2006. I'm particularly amazed at the lack of research that went into those reports. At the annual Microsoft Financial Analysts Meeting a week ago, Microsoft Senior Vice President Will Poole noted that Vista won't ship until holiday season 2006, which places the release in the October 2006 to December 2006 time frame--exactly when the company said the OS would ship the last time it publicly discussed the date. However, some people saw this announcement as a slip from the "second half of 2006" time frame the company has also mentioned. News flash: Vista has been expected in late 2006 for quite a while now. This "news" isn't new.
Download IE 7.0 Although Microsoft intended to ship Microsoft Internet Explorer (IE) 7.0 Beta 1 only to private beta testers and Microsoft Developer Network (MSDN) and TechNet subscribers, the browser began appearing on a variety of download sites this week, and Microsoft doesn't seem to be doing anything to stop the downloads. So if you're really interested in getting IE 7.0 Beta 1, here's your chance. Just don't say I didn't warn you. The browser overwrites IE 6.0, is buggy, and has compatibility problems with certain plug-ins. Still interested? OK; go nuts. http://list.windowsitpro.com/t?ctl=10337:25693
First Windows Vista Virus Appears Just a week after Microsoft shipped Vista Beta 1 to the world, the fledgling OS has been blessed with its first virus. OK, maybe blessed isn't the right word. (Come on, Paul. Think, then write.) An Austrian hacker has released a virus that uses Vista Beta 1's new command shell (code-named Monad) and actually includes a tutorial about writing other Monad-based viruses. "Monad will be like Linux's BASH [shell]," the hacker noted. "We will be able to make as huge and complex scripts as we do in Linux." The virus is categorized as proof-of-concept only and doesn't do anything harmful. But it raises some interesting concerns.
WARNING: The content of this e-mail is purely fictional and intended for entertainment purposes only. Any resemblence to any person, organization, events, or other entities – living or dead – is purely coincidental.
Internal email from Microsoft Executive John Conner of the Inhuman Resources Division. Intercepted via temporal vortex created by the Microsoft Borg (formerly “Microsoft AntiSpyware”).
To: T-1000 CC: B. Gates From: J. Conner Subject: Termination Order Importance: Urgent Sensitivity: Medium Sent: 2:39pm July 8, 2012
Our research division has shown that 87% users chose to uninstall the pre-installed version of Internet Explorer 7 in Windows Vista released last week. We did some extensive digging and have found that the root cause of this is a small “supposedly insignificant” article written by Paul Thurrott back in mid-2005 about boycotting IE. Our shares have dropped drastically because of this. Bill has personally asked for your “special touch” in this matter. He particularly praised your handling of that Netscape matter back around the turn of the millennium.
Your primary objective is: Terminate Paul Thurrott.
Direct termination is not an option. It is recommended that you travel back in time to August 2005, and instruct the SWAT Team (referred to as the Microsoft Legal Division back then) to start harassing Thurrott with petty matters at first. Get him all riled up. Facilitate a state of agitation. He will make mistakes. Our recon shows he is prone to writing before thinking. Take full advantage of that weakness. Once everyone starts dismissing him comments, and unsubscribes from his newsletter, you are authorized to enter the Thurrott residence and initiate termination protocols. Do not leave any evidence.
Secondary Objective: You are to self destruct after the primary objective is achieved. If possible, initiate self destruction inside the Mozilla foundation building.
Report to the Microsoft® Time® Machine® (formerly code name “Bull”) in Building 398 at 0700 hours tomorrow. I’ll see you off myself.
Thanks,
John
STANDING INSTRUCTIONS: Delete all e-mails regarding the Microsoft Inhuman Resources Division after reading them. Failure to do so will result in immediate termination.
Paul, don’t sit on your computer with your back to the window. If you see a red dot on your screen – duck! We are trying to salvage and send back an old T-800 model built to silently replace the former Californian Governor in 2004.
Good luck to all of us.
Tux
Now that I've blogged this, I'm going to go hide somewhere before Warner Bros, Arnie, Bill, Linus, or all of the above try to kill me. In case you are a lawyer for these parties, I didn't do it - I was in Cleveland that week!! 
Tuesday, August 01, 2006
I pity the fool!
10 minutes ago, I recieved an email asking me to update my eBay account info. Seeing that it was obviously a phishing attempt (and that I don't have an account on eBay) I decided to ignore it. But I couldn't. I clicked the link, entered a random user and pass and got to this page, which I lovingly filled up and submitted.
If anyone else wants to do the same, please email me for the link.
PS. Do note the small print right under the CONTINUE button.
 
Saturday, July 29, 2006
Thursday, July 27, 2006
Where did...  Pwop 2006 goes onlineThe 2006 version of Pwop Productions Inc's website has officially been launched. Take a look at what Pwop (in my, and others, opinion, THE place to go for making podcasts) has to offer at http://www.pwop.com
The new Pwop website was created by us in record time (something under 2 hours - from pixels to code, everything!). 
Wednesday, July 26, 2006
Adventures in Vista build 5472Vista keeps getting better! Sure, there are still many bugs and improvements to be done, but this is a very stable work, and we're doing all our WPF experiments in Vista now.
Setup still managed to erase my Windows XP from the bootloader, and had to do the same thing as with the previous CTP. But other than the experience has been very good.
There are some neat new graphics - especially the Aero cursors now on by default!
I also noticed that the performance of WPF applications is much better on this build. There is a small glitch with ExprID and Vista, tho. Unless I disabled Desktop Composition, the menus dont show or rather don't draw.
I highly recommend trying out this build!  Nothing to blog aboutDidn't you read the title? 
Tuesday, July 25, 2006
Parvez: Indoctrination Phase Aurek
Parvez Ansari, the new Chief Software Architect of Nukeation Studios, is being shown the world of Nukeation.
For those of you who don't know (seriously!?) the guy with the guitar is Carl Franklin.  Andy Eick Blogs!Just missed him. What? No ... that's the title of his blog!
I should've blogged this days ago, but an accident (broken leg) had kept me away from the computer for some time.
Anyways, I would like to take credit (until I am served a notice) for pushing Andy to start his own blog, which was also *ahem* designed by yours truly. I seriously advise you to subscribe to his blog. Andy is kind of a guru to me (I don't call him Andy-Wan for nothing) and he will (supposedly) be posting pearls of wisdom on his blog soon.
http://blog.andyeick.com
And don't forget to check out the new gallery of cool photos (the GALLERY tab on top of the blog)! 
Sunday, July 16, 2006
Oooh, the things I could tell you...Really, big, big, big things. Seriously, if you knew about it, your eyes and mouth would water. Your fingers would twitch.
I can't remember when I last knew something this important and mind boggling.
Do you want to know?
...
...
...
...
...
Do you REALLY want to know?
...
...
...
...
...
...
Do you REALLY REALLY want to know?
...
...
...
...
Really?
...
...
...
...
...
...
...
...
...
...
Can't tell you, sorry. NDA. What can I say? 
Wednesday, July 05, 2006
5456 Update 2 - XP goes missing after installing VistaWindows Vista build 5456 is just plain cool! I love the new animations and graphics, as well as all the little updates and the stability. But when I installed 5456 last night (the media wasn't corrupt, thankfully), it installed in about 40+ minutes (on a 2GB RAM / P4-HT 3GHz) and I was presented with a black blank screen with a little screwed up strip of garbled pixels at the bottom. Y'know, the kind you get if you yank the VGA cord out of the display card's port. Anyways, if I wait a minute or two, it loads ok - something with the display drivers, I guess.
So, everything is ok, but when I went to reboot into my old WinXP, I saw only one "Microsoft Windows" entry in the dual-boot window. And that led to Vista.
I panicked for 5 minutes, experimented for 20, and went online for help after that. All the info I needed was found here.
The problem is that good ol' boot.ini has been replaced by the new bootloader that ships with Vista. It controls which OS loads, and stays even if you rip out Vista.
Here's what you do. Load Vista, go to START | Programs | Accessories, right-click Command Prompt, and click RUN AS ADMINISTRATOR. Then punch in the following command lines, one by one. The italics lines are my comments.
BCDEDIT /create {legacy} /d "Windows XP SP2"
The /d is just the description, and can be anything you want. I suspect Vista overwrites your description regardless. You may also get some message about {legacy} already existing. Ignore that, and go with the following.
BCDEDIT /set {legacy} device boot
BCDEDIT /set {legacy} path \ntldr
BCDEDIT /displayorder {legacy} /addlast
Each command should return a "operation completed successfully".
Reboot, and you will see the Legacy Windows in the boot list. You can log on to Vista, go to Control Panel | SYSTEM | Advanced Settings | Startup and Recovery, and select the legacy item as the default loader. Or enter the following in the command line as before:
BCDEDIT /default {legacy}
It wasn't too much trouble, but the boot thingie in Vista does have its problems. 
Tuesday, July 04, 2006
5456 Update 1Power failure. Gradual, yet instantenous power loss, caused the backup power to not hold up. System rebooted. Possible corruption of ISO of 5456. 538MB left. Integrity failure will require a re-download of the ISO. 5 gigs of bandwidth down the drain. Sithspit. 
|