Skip to main content

Converting a broken laptop into a home media server

My wife had an old Compaq 610 laptop during her college days which was lying around and had not been switched on for past 2 years. Its battery was dead and the screen hadn't survived a fall from a desk during its heydays. One afternoon during this long weekend in Hyderabad (8 April-10 April), when I didn't have anything better to do, I pulled out the dusty laptop bag from the cupboard where it had been laid to rest. Remarkably all the paperwork and receipts were well preserved in the bag along with the laptop. The receipt said that it was bought in 2010, was sporting a Intel Core 2 Duo processor, 3 GB DDR2 RAM and 1 TB HDD. It didn't have a HDMI port just a VGA one. It certainly is not a beast according to current standards but not completely useless too. Obviously I embarked on the salvage mission like any self-respecting engineer would do.

I pulled out the dead battery, plugged in the charger cable directly and switched on the laptop. A blue LED flickered and the laptop showed signs of life. Amidst the cracks, the screen displayed a rainbow of colors proving that it was completely useless. I had no VGA cables or external monitor lying around that I could use as a screen. Suddenly the famous Windows 7 boot sound chimed in followed by Skype app launch sound. No better music had ever played in my ears. It proved two things - the speakers were okay and more importantly there was no password on the laptop and it was booting into the Windows Desktop. All I had to do now was Remote Desktop (RDP) into it. Sounds easy, right? Wrong!

I fished out an old Ethernet cable and paired the laptop with my home wireless router. DHCP worked and the laptop was assigned an IP which I could see in the router clients list. Joyfully I opened up Remote Desktop session and encountered this - 


A quick search revealed that the remote desktop feature might have been disabled on the laptop. How do I enable that when there is no screen! Enter Command Prompt (CMD) to the rescue.

When you press the Windows key and type in 'cmd', followed by Ctrl+Shift+Enter, it launches CMD in Administrator mode. Of course the UAC prompt comes up before that which by default is on "No" button. Press of Left arrow key followed by Enter and I was hopefully on the command prompt. To make sure that I was indeed positioned correctly, I typed "start foo" and Enter. The error sound confirmed my suspicion.

To enable RDP, I typed the following command (blindly)
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f

Still no luck! Some other article on the web suggested that Remote Desktop might be disabled at firewall level.
netsh firewall set service type=remotedesktop mode=enable

This time it worked! A prompt came up asking me to enter username and password. I knew the password as blank (no password) but didn't know the username too. My wife had no clue as she never bothered with these "user accounts nonsense". So close yet so far!

Thing is even if I knew the username, Windows won't allow a blank password to RDP. To enable it to accept blank password,
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa" /v LimitBlankPasswordUse /t REG_DWORD /d 1 /f

All Windows machines have an Administrator account by default. Since I didn't have the current username, I tried to RDP with Administrator account and blank password. A message popped up saying this account was disabled. No problem!
net user administrator /active:yes

Finally I was able to RDP into the dead laptop with the administrator account! I checked the username of the other user. It was "Compaq" (duh!). I uninstalled all the crapware from the laptop and started the upgrade process to Windows 10. I left it running overnight and in the morning I booted into a brand new Windows 10 desktop!

Next step was installing Plex Media Server on to it. I plugged in all my external drives containing media to the laptop and let Plex do its job. This 6-year old laptop is now running 24x7 inside the TV cabinet streaming entertainment and joy all over the house!

What old electronics components have you salvaged and made something interesting/useful from it? Let me know in the comments.

Comments

Popular posts from this blog

Integrating React with SonarQube using Azure DevOps Pipelines

In the world of automation, code quality is of paramount importance. SonarQube and Azure DevOps are two tools which solve this problem in a continuous and automated way. They play well for a majority of languages and frameworks. However, to make the integration work for React applications still remains a challenge. In this post we will explore how we can integrate a React application to SonarQube using Azure DevOps pipelines to continuously build and assess code quality. Creating the React Application Let's start at the beginning. We will use npx to create a Typescript based React app. Why Typescript? I find it easier to work and more maintainable owing to its strongly-typed behavior. You can very well follow this guide for jsx based applications too. We will use the fantastic Create-React-App (CRA) tool to create a React application called ' sonar-azuredevops-app '. > npx create-react-app sonar-azuredevops-app --template typescript Once the project creation is done, we ...

Use AI to build your house!

When a new housing society emerges, residents inevitably create chat groups to connect and share information using various chat apps like WhatsApp and Telegram. In India, Telegram seems to be the favorite as it provides generous group limits, admin tools, among other features. These virtual communities become treasure troves of invaluable insights. But whatever app you use, there is always a problem of finding the right information at right time. Sure, the apps have a "Search" button, but they are pretty much limited to keyword search and are useless when you have to search through thousands of messages. I found myself in this situation when it was my turn to start on an interior design project for my home. Despite being part of a vibrant Telegram group, where countless residents had shared their experiences with various interior designers and companies, I struggled to unearth the pearls of wisdom buried within the chat's depths. I remembered that I could take advantage o...

Add Git Commit Hash and Build Number to a Static React Website using Azure DevOps

While working on a React based static website recently, there was a need to see exactly what was deployed in the Dev/Test environments to reduce confusion amongst teams. I wanted to show something like this: A quick look at the site's footer should show the Git Commit Hash and Build Number which was deployed and click through to actual commits and build results. Let's see how we achieved this using Azure DevOps. Git Commit Hash Azure DevOps exposes a variable called  $(Build.SourceVersion) which contains the hash of the commit. So I defined a variable in the Build Pipeline using it. Build Id and Build Number Azure DevOps also exposes two release time variables  $(Build.BuildId) and  $(Build.BuildNumber) which can be used to define custom variables in the pipeline. So we have a total of 3 variables defined: Next we use these variables in our React App. I created 3 global variables in index.html and assigned a token value to them. < script   type = "text/JavaScri...