Archive for the ‘Windows 8’ Category

While scripting, you may encouter the problem that you have an expression that uses double-quotes as tags and therefore cannot use any double-quotes inside these tags. You can circumvent this problem by using ASCII codes to add certain keys. This is done by tagging out, joining with ASCII code and joining with the tagged expression again. Look at the following Visual Basic Script code:

set objshell = wcript.createobject(“wscript.shell”)
objshell.run “C:\Windows\system32\cmd.exe /K cd ” & Chr(34) &
“C:\Users\howtoforge\Desktop\A Folder” & Chr(34) & “”

The double-quotes inside the run command are represented by the expression Chr(34) that adds the ASCII character with the ID 34, which is double-quotes. This expression is outside the regular quotes and is joint with the command with an Ampersand (&). Thus the above line would result in following line being entered into cmd:

cd “C:\Users\howtoforge\Desktop\A Folder”

How to run Windows 8 in Virtualbox

Thursday, October 6, 2011 posted by CSch

Trying to run Microsoft’s Development Version of Windows 8 you might run into some problems – the two major ones being these two:

What Windows Version shall I choose in the construction of the machine?

The solution here is to choose the appropriate version of Windows 7. If you downloaded the 32 bit edition, choose Windows 7 32 bit, same for 64 bit.

When I start the machine I get some error!

Starting the machine for the first time you will most likely get the error stating:

“Windows failed to start. A recent hardware or software change might be the cause.”

[...]

Status: 0xc0000225

Info: An unexpected error has occured.

This is what you are shown:

To fix this, stop the machine and enter its settings. Go to Settings > System and check Enable IO APIC:

Exit the settings and start the machine again. You should now be able to configure the installation.