RandomSequence

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg
Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Friday, July 19, 2013

ComboFix - Malware Removal Tool

Posted on 6:58 AM by Unknown
Again, I am writing this down more for my own future reference, with the hope that it will benefit others Googling for this info as well.

ComboFix is a relatively unknown but surprisingly good anti-malware tool. I had in the past received a number of computers from relatives/friends that have been infected with malware. The general characteristics are that the machines boots OK into Windows, but runs erratically eg. displays fake error messages, prevents you from running certain executables, logs you off after awhile etc.

In my experience, it was impossible to get the existing antivirus software to perform a proper scan, or to install a new antivirus software because the system ran so erratically. Offline antivirus software that runs off a CD didn't help much either. I have a collection of them and none of them had helped on the computers I was trying to fix.

Enter ComboFix, which was able to get the computers back into good enough working condition so that I can reinstall the antivirus software and perform a proper scan. I am not sure what's the exact magic behind the program. It seems to "implement a collection of pre-made fixes for large amount of known malware and hunts down all files associated with it". Sounds good to me!

Windows Repair (All In One) is also helpful after running ComboFix. Some malware messes up all kinds of stuff, and functions like "Set Windows Services To Default Startup" is invaluable for straightening the system.

Of course, some people will tell you it's best to wipe the machine when it has been compromised. From a technical point of view, I would totally agree and will do it with my own machines. But in the real world with real people, that's not always the ideal solution for them. So I am glad ComboFix and Windows Repair AIO has enabled me to help some people along the way.
Read More
Posted in antivirus, windows | No comments

Sunday, December 16, 2012

Adding "Stereo Mixer" to Windows 7 with Conexant sound card

Posted on 4:16 AM by Unknown
This procedure worked for my laptop (Thinkpad E530) with a Conexant 20671 sound card, but I suspect it will work for other sound cards in the Conexant family.

I was playing with CamStudio to do a video capture of a Flash-based cartoon so that I can put it on the WDTV media player and play it on the big screen in the living room for my kids. The video capture worked brilliantly, but to do a sound capture, I needed to do some hacking.

Apparently, there was this recording device called "Stereo Mixer" that was pretty standard in the Windows XP days. This allowed you to capture whatever was played to the speaker in all its digital glory. Then under pressure from various organizations on the dark side of the force, Microsoft and soundcard makers starting disabling this wonderful feature from Windows Vista onwards.

So after much Googling around, I found out that for most sound cards, the hardware feature is still there, just not enabled on the software side. Unfortunately, to enable the "Stereo Mixer" feature is not as simple as ticking a checkbox. The procedure is frequently complicated and is different for various soundcard chipset families.

Luckily, for the Conexant sound card on my laptop, the procedure to enable the stereo mixer feature was comparatively straightforward.

First, right-click on the "Sound" icon in the system tray and select "Recording devices":

 

Then right-click on the whitespace and select "Show Disabled Devices":


Make sure you don't see a "Stereo Mix" device that was previously hidden.

Now, you need to add some entries to the registry. Create a ".reg" file with a text editor with the following content:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96C-E325-11CE-BFC1-08002BE10318}\0000\Settings\EPattributes\EpSettings\StereoMixEnable]
"Enable"=hex:01
"MixAssocSeq"=hex:e0,e0
"MuteGainSettings"=hex:00,00


Double-click on the .reg file and enter it into the registry. Verify by firing up "regedit".


This enters the "StereoMixEnable" values under "HKLM\System\CurrentControlSet". You also need to enter this into all "ControlSet00x" subtrees under "HKLM\System". So for example, since I have "ControlSet001" and "ControlSet002" under "HKLM\System" on my machine, I edit the .reg file to:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\
ControlSet001\Control\Class\{4D36E96C-E325-11CE-BFC1-08002BE10318}\0000\Settings\EPattributes\EpSettings\StereoMixEnable]
"Enable"=hex:01
"MixAssocSeq"=hex:e0,e0
"MuteGainSettings"=hex:00,00


and double-click to enter it into the registry. I repeat for "ControlSet002".

Now reboot the machine. Then follow the previous steps to bring up the recording devices. If all goes well, you should now see a new, disabled "Stereo Mix" device in the list.

Right-click on the device and select "Enable":


Then set it to the default device by highlighting it, and selecting "Set Default".


Now, under CamStudio, I select "Options, Record audio from microphone". Since the default recording device is now "Stereo Mix", anything that is played through the speaker is now piped through to CamStudio for recording.

Mission accomplished!
Read More
Posted in windows | No comments

Wednesday, June 6, 2012

Make Google Chrome Portable the system default browser

Posted on 12:28 AM by Unknown
Making Chrome Portable the system default browser turned out to be more complicated than I'd expected.

I am currently running Windows 7 x64. I first tried Change Default Browser, which seems to be the tool recommended by everybody, but that didn't work for some reason. I tried a few other methods, but none of them worked. Finally I found salvation in this discussion, in the last post made by jonasformolo.

What is needed is to created the chrome.reg file, then fire up the text editor and replace all occurrences of:

  D:\\Softwares\\Portable\\Extracted\\GoogleChromePortable\\GoogleChromePortable.exe

with the full path to Chrome Portable on your system (mind the double backslashes!). Finally double-click to enter it into the registry.

However, there is one additional and crucial step to take which is missing in the original instructions. Since you can't easily edit the value in:

  HKEY_LOCAL_MACHINE\SOFTWARE\Classes\GoogleChromePortableURL\shell\open\command

with a text editior (unless you have the unusual skill of being able to edit Unicode strings in pure hex), you need to fire up REGEDIT to change the path value.

Now run "Control Panel" and select "Default Programs". If you have done everything right so far, you should see this:



Now simply click on "Set this program as default", and Chrome Portable will be set as the system default browser.

Read More
Posted in chrome, windows | No comments

Sunday, June 3, 2012

Turning off numerical sorting in Windows Explorer

Posted on 7:25 AM by Unknown
Windows XP introduces the concept of "numerical sorting", where filenames in Windows Explorer are sorted by evaluating their numerical value instead of the ASCII order. For example, if you have a bunch of files:
 
  Doc111
  Doc22
  Doc3

they will be sorted as:

  Doc3
  Doc22
  Doc111

because 3 < 2 < 111, get it?

This is very confusing to those of us who expects things to be sorted logically i.e. in ASCII order. Who's the idiot who made this "numerical sort order" default on all Windows after XP?

Anyway, one way to right this wrong is as follows:
  1. Press [Win-R], type "gpedit.msc", then press [Enter] to bring up the Local Group Policy Editor.
  2. Select "User Configuration", "Administrative Templates", "Windows Components", and finally "Windows Explorer" in the treeview on the left of the editor.
  3. Double-click on "Turn off numerical sorting in Windows Explorer" in the "Setting" pane on the right of the editor.
  4. Select "Enable",  then click OK to save the changes.




Read More
Posted in windows | No comments

Wednesday, May 30, 2012

How to install Windows XP from a USB memory stick

Posted on 1:32 PM by Unknown
Note to self after having to do this a couple of times. If I need to install WinXP from a USB memory stick, the absolute no-brainer way to do it is WinToFlash. The keyword here is no-brainer, because there are tons of tutorials out there that require you to have a rocket science degree and a PhD to follow. Not so for WinToFlash. Run the program, point the source path to the WinXP install files, point the target path to the USB memory stick and click a button. Then go for a cup of coffee and you are done.

Here is how it looks during bootup:


Option 1 is for the first bootup where you get into the text mode setup, configure and format your partition and copy essential files.

Option 2 is for the second bootup where you actually see the Windows XP splash screen and then it starts to configure devices and settings.

I have no affiliation with the company that produces the software. It has a free, ad-supported version if you are a casual user. There is also a personal, professional and business license if you do this all the time.

Thankfully for Vista and Win7 installation from a USB drive, it is actually quite straightforward and you don't need a PhD for that. You do need to drop to the command prompt for a moment, but that's not as scary as it sounds.
Read More
Posted in windows | No comments
Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • 110GB+ worth of photos/videos on a microSD memory card #2
    In my previous post, I talked about wanting to write a script to see how far I can squeeze 110GB worth of media (photos and videos). I wrote...
  • Looking for the perfect car MP3 player/FM transmitter
    I have bought quite a number of car MP3 player/FM transmitters from DealExtreme and other similar websites. A car MP3 player/FM transmitter...
  • Children - The ultimate test in anger management
    Having just spent two full holiday weeks with my kids, it occurred to me this morning that raising young children is the ultimate test in an...
  • Coding the Liturgical Calendar
    For a long time, I've wanted to integrate the Roman Breviary into a couple of projects (nothing public) but have never been able to find...
  • Ubuntu: WebDAV + DAVfs2 + FUSE == Thunar Goodness
    One of the corner-stones of any *nix utility is that it should do a simple job and do it well. Every piece of software that I can think of ...
  • Fast Diet - Hunger Pangs
    When I am doing the Fast Diet , I frequently experience long periods of calm after a brief period of hunger pangs. It is as if the body has ...
  • ...and this is why I'm Catholic
    When I was looking for answers from the Methodist church about all the things I was wondering about as a teenager, I was dismayed to find t...
  • Fast Diet - Incredible Body Hack
    In terms of body hacks, the Fast Diet probably ranks all the way at the top for me. I first read about it in the papers and found the techn...
  • Jamming Flagpoles
    Today I read a report about Iran's alleged "flagpole jamming network".  Reading all of this, it became plainly obvious that, ...
  • Whacked-out Weather
    So, its no mystery to anyone that the weather has been WEIRD this year, but here's just how weird it has been... this evening, on my way...

Categories

  • a2dp
  • administrata
  • android
  • antivirus
  • avi
  • bluetooth
  • chrome
  • coding
  • culture
  • dos
  • eee
  • faith
  • family
  • fastdiet
  • firefox
  • gadgets
  • geeekry
  • geekery
  • hardware
  • homeschooling
  • howto
  • java
  • laptop
  • life and the universe
  • linguistics
  • link2sd
  • linux
  • migration
  • mp4
  • pdf
  • politics
  • printer
  • roomba
  • security
  • soapbox
  • software
  • transcode
  • travel
  • ubuntu
  • video
  • virtualization
  • webapps
  • windows

Blog Archive

  • ▼  2013 (11)
    • ▼  August (3)
      • 110GB+ worth of photos/videos on a microSD memory ...
      • 110GB+ worth of photos/videos on a microSD memory ...
      • Coding the Liturgical Calendar
    • ►  July (6)
    • ►  June (2)
  • ►  2012 (25)
    • ►  December (2)
    • ►  November (4)
    • ►  October (4)
    • ►  September (1)
    • ►  June (11)
    • ►  May (3)
  • ►  2011 (11)
    • ►  December (1)
    • ►  September (2)
    • ►  August (1)
    • ►  July (3)
    • ►  April (1)
    • ►  March (1)
    • ►  February (1)
    • ►  January (1)
  • ►  2010 (10)
    • ►  December (2)
    • ►  October (1)
    • ►  September (1)
    • ►  August (2)
    • ►  July (1)
    • ►  May (1)
    • ►  March (1)
    • ►  February (1)
  • ►  2009 (29)
    • ►  December (2)
    • ►  November (2)
    • ►  September (1)
    • ►  August (3)
    • ►  July (2)
    • ►  June (5)
    • ►  May (2)
    • ►  April (2)
    • ►  March (6)
    • ►  February (3)
    • ►  January (1)
  • ►  2008 (57)
    • ►  November (2)
    • ►  October (4)
    • ►  September (1)
    • ►  July (8)
    • ►  June (3)
    • ►  May (8)
    • ►  April (12)
    • ►  March (6)
    • ►  February (8)
    • ►  January (5)
Powered by Blogger.

About Me

Unknown
View my complete profile