Monday 3 October 2011

Speeding Up Logon

There's always things you can do to improve the startup time of your computer. Here is another.

If you have a password to logon to Windows, your startup programs are not loaded until after logging on. What I have looked into is a way to load these programs so that when you come to use your computer, they have already been loaded. Note that this will only work if there is only 1 user account on the computer.

The way to do this would seem to be to bypass the initial welcome / logon screen, then lock the computer.

The main challenge with this is skipping the welcome screen where you enter your password, yet keeping your account password.

To do this, Click Start, then Run, and type "netplwiz". This works on Windows 7 Professional, it should be the same for Vista and if you use XP use the command "Control Userpasswords2". This will open an Advanced User Accounts Window. Untick the box, "Users must enter a username and password to use this computer". You are no longer required to enter your password to logon but you still have the password on your account.

Next, you need to simulate locking the computer through the Command Prompt.
In a text editor, type the following:
@ECHO OFF
%windir%\system32\ribbons.scr /s
rundll32.exe user32.dll, LockWorkStation
CLS
EXIT
The key line is the third. This will lock the computer. The second line is optional, it will run a screensaver if you so wish when you execute it.
In this example, when the file is run the "Ribbons" screensaver is started, then when the mouse is moved the lock screen is shown.

Save this text as a .bat file in your startup folder.

That is it, but there are a couple of small tweaks you can do. You will notice that when the file is executed, the Command Prompt is shown. In the file properties, on the Shortcut tab is a field "Run" which you can set to Minimised. If you so wish, you can also change the icon for the shortcut.

Restart your computer, it should automatically logon then present you with the lock screen, so when you come to use the computer your startup programs have already been loaded.

Saturday 17 September 2011

Windows 7- Installing on an SSD and another drive

Intro
More and more of us are buying SSDs to use in our computers due to their faster speeds, however you may not want to shell out a lot of money to get one of a decent size. This leaves you with the possibility of installing your OS on the SSD and use another (mechanical) drive for everything else, such as your files.
While this does work, I do not want to have to worry about which drive my program is going to install on, or where a picture is going to be saved. I want to run through an installer and not have to change anything, the same for saving documents. I want it all to be in the correct place.

Today I'm using Windows 7 x64 and a 60GB SSD, so all of the following is aimed at that. If you use x32, you are in luck, everything is the same and just miss out the commands that differentiate between 32 and 64 bit. If you still use Vista, everything should still apply.

I ventured online looking for some answers, most of which provided some registry changes to fool Windows as to where the users folder is located. The same for Program Files.

I then found a guide that allowed you to enter Command Prompt during a Windows install and make the changes there. However, they were a bit vague when it came to x64 installations and if you missed out a command, you may find yourself not being able to logon.

After about 5 or so attempts at installing Windows, I finally cracked it. I now have Windows on my SSD and users and program files on my Caviar Black. My SSD is drive C and my mechanical drive is D.

The Installation Changes
After Windows has copied all the files to disk you are prompted to restart. You are then greeted with a welcome screen where you can create a user account. At this point, press Shift + F10 to bring up a Command Prompt.

You then have 3 commands to enter. The first simply copies 1 directory to another. In this case, the users folder on the SSD to the mechanical drive. The second command removes the folder from the SSD and the final command creates a symbolic link between the two- so if anything tries to access C:\Users, it will actually be accessing D:\Users.
robocopy "C:\Users" "D:\Users" /E /COPYALL /XJ
rmdir "C:\users" /S /Q
mklink /J "C:\users" "D:\users"

These 3 commands can be repeated for the Program Files folder and if you're using x64, Program Files (x86).
robocopy "C:\Program Files" "D:\Program Files" /E /COPYALL /XJ
rmdir "C:\Program Files" /S /Q
mklink /J "C:\Program Files" "D:\Program Files"

robocopy "C:\Program Files (x86)" "D:\Program Files (x86)" /E /COPYALL /XJ
rmdir "C:\Program Files (x86)" /S /Q
mklink /J "C:\Program Files (x86)" "D:\Program Files (x86)"
You have now successfully moved the files on disk, but according to Windows, they are still in the old locations. We now need to adjust the registry. In the Command Prompt, enter "regedit" to open Windows Registry Editor.

Go to the following locations, and replace 'D' with the letter of your mechanical drive.
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion]
"CommonFilesDir" = "D:\Program Files\Common Files"
"CommonFilesDir (x86)" = "D:\Program Files (x86)\Common Files"
"CommonW6432Dir" = "D:\Program Files\Common Files"
"ProgramFilesDir" = "D:\Program Files"
"ProgramFilesDir (x86)" = "D:\Program Files (X86)"
"ProgramW6432Dir" = "D:\Program Files"

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList]
"Default" = "D:\Users\Default"
"ProfilesDirectory" = "D:\Users"
"Public" = "D:\Users\Public"

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion]
"CommonFilesDir" = "D:\Program Files\Common Files"
"CommonFilesDir (x86)" = "D:\Program Files (x86)\Common Files"
"CommonW6432Dir" = "D:\Program Files\Common Files"
"ProgramFilesDir" = "D:\Program Files"
"ProgramFilesDir (x86)" = "D:\Program Files (X86)"
"ProgramW6432Dir" = "D:\Program Files"

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\WindowsNT\CurrentVersion\ProfileSet]
"Default" = "D:\Users\Default"
"ProfilesDirectory" = "D:\Users"

Once this is complete, exit the registry editor and the command prompt. You can now continue through the wizard to create your user account on drive D.
Once you're logged in, when you come to install a program it will be installed on drive D.
If you take a look on C:, you will see the symbolic links between the folders on the 2 drives.

The only things left on your SSD will be the Windows folder. I still have about 30GB free space, which I can use for caches etc, such as the Adobe Creative Suite cache.

Some of you may ask why have I moved the Program Files off of the SSD. Well, I have a relatively small SSD and don't want to have to think about whether this program should go on the SSD or elsewhere. Furthermore, most program .exe's are relatively small, so whether the amount of time saved by putting them on an SSD is questionable.

And finally, the changes for the registry can probably be put into a .reg file so you don't have to type them yourself. But after 5 failed installations, I was not in the mood to work this out.

Tuesday 30 August 2011

HP DM1-3100SA Netbook Review- Part 4

Webcam
Ok, if I am told to review a webcam built in to a laptop, the people asking the question must think something of it.
Well, in the bluntest form, it is really not that great. The humble 640x480 resolution is disappointing; it takes me back to when mobile phones first had integrated cameras.

The HP webcam software does include a load of different customisations and features, so you can take photos of yourself wearing ridiculous hats, or in front of the Eiffel Tower. This is a fun feature to see, however I am no longer a 12 year old and I rarely use a webcam anyway.
I recorded the following picture of myself so you can see the image quality:


I also took a video and spoke over it. The audio sounded pretty good, until I started typing. The microphone picked up the sound of typing and so it sounds as if I’m typing really heavily and covers the voice a bit., but nothing to different to other laptops.

HP DM1 Summary
Ok, and now to sum up how the netbook has been over the last few weeks.
First of all, I generally use my desktop with dual screens for raw power while I do have a 15” Dell laptop which I take in to uni but don’t use that much.

The keyboard was really easy to type on, I was surprised. The screen resolution was decent too but the touchpad was quite difficult to use.
The battery has lasted about 5 hours each charge. It is nice knowing I don’t need to always carry the charger around with me unlike a laptop. Furthermore, I’ve given out the laptop for other people to use, from just having a nosy around and browsing to shooting tethered in a photography studio hooked up to an external monitor.

Yes, netbooks have moved on and I was surprised how well it coped with HD videos and rendering photos. But I still don’t think I would get a netbook myself. It doesn’t quite have the power to remain fast all of the time, unlike a laptop but it does have the portability and battery life advantage. Also, at £350 it is quite a lot. You could pick up a half decent laptop for £400, for example.
Therefore, if I were to purchase a new portable device, I would probably look away from a 15” laptop to an ultraportable, maybe something around 13”.

Monday 29 August 2011

HP DM1-3100SA Netbook Review- Part 3

Graphics
This task was quite open ended so I tried it out on a few things.
TL:DR- There were some issues playing HD content with video becoming choppy, but normal content should be fine.

Firstly I tried playing a couple of .mkv files in VLC media player. I have a copy of the Top Gear Middle East Special, which is 720p and played perfectly well in a window and full screen. This was with mains power and the power settings on High Performance. I also have a 720p Family Guy Special episode, which again worked fine. However if I unplugged the mains, the netbook changed power plan to HP Recommended and the video instantly became choppy and unwatchable.

Next up I ventured on to Youtube and did a search for “HD”. I decided to try and play the TRON: Legacy film trailer in 1080p (http://www.youtube.com/watch?v=L9szn1QQfas).
First time I tried this, it wouldn’t play full screen. When in 720p, this was fine in window mode and acceptable full screen, although there was some slightly judderiness to the video.

I tried out some HD videos on BBC’s IPlayer. First HD programme I could find was ‘Made in Britain’. In both window and full screen mode this suffered the same slight judderiness as Youtube on 720p.

I left the recommended videos to last, just in case these were any different to real word use (such as TV shops showing uber awesome HD footage that works particularly well on that set).
A link to an IMAX HD clip was provided (http://www.youtube.com/watch?v=Ou6_MkIvKOo), which suffered the same problems as TRON.
There was also an Adobe Flash video (http://labs.adobe.com/technologies/flashplayer10/live-player/). This worked fine full screen and looked awesome.

At the end I went back to Youtube and TRON and it appeared to play full screen. Maybe the moral of the story here is that it will play 1080p, if you are doing nothing else at the same time.


I previously mentioned in a previous review that I used Adobe Photoshop Lightroom to render some photos. It was not the greatest, the overall speed of the application was quite slow on the netbook and netbook screen itself didn’t have the best colour reproduction while it did have a decent resolution for the size of the screen.

Games wise, I haven’t time to try any games, but if I do I’ll make a post.

Sunday 28 August 2011

HP DM1-3100SA Netbook Review- Part 2

Mobility
When I first saw the subject of the review I immediately thought I’m going to find it difficult to find much to say.
After all, it is a netbook and common sense tells me it will be portable. Anything below 15” I would classify as something you could move around. The decent battery life does mean that if you plan to use it for less than 5 hours, you won’t need the charger. That is some bulk lost.

I took it outside to test the wireless and the screen. First issue- OMGZ glossy screen. As with all glossy screens the visibility in bright light is terrible. I don’t know why manufacturers still use it.

As for the wireless, it seemed to pick up the signal ok, nothing uber strong, but probably fine with what you’re used to. As an aside I’ve used the netbook with my HTC Desire S acting as a wireless hotspot and that worked well.

If I were buying a netbook, I would definitely like to see it before purchasing it, to get a feel for the size, weight, keyboard and screen. Yes, you could be plastered with numbers but you won’t get a real sense without seeing it. You will also get a chance to type and check out the screen, which play a high role in something you are going to be carrying out and about. As mentioned somewhere in another thread, the clicklet keyboard is good to type on, despite the small size.

Final Thoughts
Finally, I’ve been using it quite a bit this week. I’ve been rebuilding my desktop and checking out webpages / guides every now and then on the netbook. It has been nice being able to wake it from sleep, use it, then put it back to sleep, without having to think ‘is it going to run out of battery / do I need to charge it soon?’.

Saturday 27 August 2011

HP DM1-3100SA Netbook Review- Part 1

Intro
As a regular poster on a student forum (The Student Room), I was kindly invited to take part in a netbook review on behalf of AMD. Six members of the forum were given netbooks to review over a few weeks, with each week concentrating on a different area.

The first week was battery life- read on for the review.

Battery Life
After charging the battery and booting up, the battery meter showed 4 hours 47 minutes.

I started using the laptop with the screen on full brightness and WiFi on. First instincts were the range of bloatware HP crammed onto it, so I spent some time removing unnecessary programs and rebooting etc.

After 1.5 hours, of this light usage, the battery meter was at 3:14 (52%).

Next day I booted up and ran Adobe Lightroom. I imported a load of RAW files and set it to render full resolution previews for an hour, then returned to light usage. At this point, there was still an impressive 2 hours (38%) left on the meter.

After another hour of light usage, 20% of the battery was left.

Then I played a standard definition video on iplayer (non fullscreen) and after 25 minutes I’m down to the last 10% of battery.

The netbook finally hibernated at 5% battery level after watching a further 12 minutes on iplayer, bringing the grand total to 4 hours 40 minutes. Not bad for a netbook that I carried out a range of different programs on, from light web browsing to image rendering.

Other Points
On more general notes, I’m not a fan of the touchpad. The buttons are in the same surface as the touch area, they still click to press, but any slight hovering of a finger over the click area causes erratic movement of the cursor. Therefore for most of the above tests a usb mouse was connected.

It was however nice to see the Ctrl and Fn keys are the correct way round. On the F keys are the usual secondary function keys. HP decided to make these default in the BIOS, meaning Alt + F4 becomes Alt + Fn + F4. This was quickly changed back to normal. The keyboard did lack a few keys I like to use, such as the Page Up, Down, Home and End keys.

The range of ports include: 3x USB, 1x HDMI, 1x VGA, headphone/microphone, SD/MMC card reader and an Ethernet port. The Ethernet port is located on the rear corner of the netbook, under a tacky plastic cover and at an angle. Not particularly classy, but it is gigabit LAN (something that is missed on cheaper computers) and the wireless was wireless N. Apparently there is also Bluetooth connectivity, but I haven’t tried it.

Hard drive is of average to decent size for a netbook, 320GB. This will be fine for most users, but those expecting speed and better portability from their netbook may prefer an SSD.

3 GB RAM is again, average which leads me on to the OS. The netbook can support 8GB RAM, yet HP have decided to install a 32 bit OS.

Screen has a decent resolution for an 11” screen, 1366x768, however for a photographer the temperature is a bit cool by default.

Speakers pack a decent punch at full volume, with little distortion but with all small speakers are lacking bass. The speakers are situated in the front edge of the netbook below the touchpad.

Heat dissipation is fine, after rendering the images it wasn’t that hot, which may be due to the fan which may be a touch noisy, but not the loudest I’ve heard.

And on a completely unrelated note, there were files in the Downloads folder.

Unboxing