Category Archives: Technology

Windows Error tcsd_win32.exe

Getting rid of TCSD_WIN32.exe

1. Click on start button on the taskbar
2. Click on RUN
3. Box will pop up, type in msconfig
4. System Configuration Utility will pop up, click on the STARTUP tab
5. scroll down the list and find the program tcsd_win32.exe and uncheck the box
6. get back out to the desktop and restart the computer.
7. now go into your C Drive and find the directory named Program Files.
8. once in program files, find the directory called NRTU and delete it.

After you do this you can repeat steps 1-5 and look for the tcsd_win32.exe file again. It shouldn’t show up on the list again, if it does, it should have already been unclicked.

I’ve noticed this problem pops up after a specific windows update is applied, I haven’t figured out which one yet, just dont have the time. If you have the time, complain to dell. Like that would work.

If tcsd file did not show in ur start-up list, maybe try task panel:)

forgot password for router, now what!

1) You can usually do a power cycle and press a reset button to restore factory settings. Check your manual.

Then just remember your password next time!

2) You can’t recover your forgotten password. You can only reset the router to its factory default setting by pressing the reset on the back. Instructions for resetting the router & the factory user name / password are located in the manual.

Not able to open drives on hard disk by double click

Sometimes it happens in windows XP that you are not able to open drives on your hard disk. When you double clicking on the drives icons or right click on the drive>>explore in My computer ,the drive does not open.

This problem is generally caused by most of the viruses which infect windows XP system. They block or restrict your access to any of the drives.

But don’t worry this is not a big trouble it can be fixed easily.

 

Fix:

Normally when a virus infects a windows system which causes a drive opening problem, it automatically creates a file named autorun.inf in the root directory of each drive.

This autorun.inf file is a read only ,hidden and a system file and the folder option is also disabled by the virus. This is deliberately done by the virus in order to protect itself.  autorun.inf initiates all the activities that the virus performs when you try to open any drive.

You have to just delete this file and restart your system to correct this problem.

Follow the set of commands below to show and delete the autorun.inf

1. Open Start>>Run and type cmd and press enter. This will open a command prompt window. On this command prompt window type the following steps.

2. type cd\

3. type attrib -r -h -s autorun.inf

4. type del autorun.inf

5. now type d: and press enter for d: drive partition. Now repeat steps 3 and 4. Similarly repeat step 5 for all your hard disk partition.

Restart your system and your trouble will be fixed.

Debug Memory Dumps

When you get a stop error (Blue Screen of Death), your system writes a small file called a minidump. This is a small write up on how to debug memory dumps. This becomes extremely useful when you are trying to figure out what caused a particular stop error, and no filename was mentioned and/or it is undocumented.

You could always let Microsoft do it for you, but there is no gurantee they will answer, and it takes a very long time (over a month in my case).

Your first step is to make certain your computer is setup to record memory dumps. The small dumps are most desirable, because they aren’t the size of your amount of ram!

Right click My Computer, choose properties. Click on the advanced tab, and then choose startup and recovery ‘settings.’ From the screenshot attached at the bottom you will see the settings you want. By default, this is largely how it is already setup; I only unchecked automatically restart for XP. For Vista, there is an extra step involved, you must click start, right click computer. Then from the next screen, click Advanced system settings. Then, its in the same location as XP. I have attached a Vista screenshot, as the options are a little different.

Note: Make certain that your pagefile still resides on the system partition, otherwise WIndows will not be able to save the debug files.

Your second step is to download and install the Microsoft Debugging Tools found here: http://www.microsoft.com/whdc/devtoo…nstallx86.mspx

Once you have downloaded and installed these tools, go to start, all programs, Debugging Tools For Windows, Windbg. Once you open Windbg, you will presented with a blank screen. Click on File, Symbol File Path. Here you will enter the symbols path. Symbols are needed to effectively debug.

The path will be:

SRV*c:\symbols*http://msdl.microsoft.com/download/symbols

Enter in this path and click OK. Now, go to File, Save Workspace so that your symbols path is saved for future use. Now what you want to do is locate your memory dumps. They are usually located in %systemroot%/minidump (in my case C:/windows/minidump).

If you notice, they are usually named the date, and then a -*number* to indicate the order of minidumps that day. My example is called Mini061904-01.dmp (it happened today).

Inside of Windbg, go to File, Open Crash Dump and load the file. You will get a message to save base workspace information. Choose no.

Now you will get a debugging screen. Now it takes a little bit to run it, as the symbols have to be downloaded as they are needed. Then you will see information such as:

Symbol search path is: SRV*c:\symbols*http://msdl.microsoft.com/download/symbols

Microsoft (R) Windows Debugger Version 6.3.0017.0
Copyright (c) Microsoft Corporation. All rights reserved.

Loading Dump File [C:\WINDOWS\Minidump\Mini061904-01.dmp]
Mini Kernel Dump File: Only registers and stack trace are available

Symbol search path is: SRV*c:\symbols*http://msdl.microsoft.com/download/symbols
Executable search path is:
Windows XP Kernel Version 2600 (Service Pack 1) UP Free x86 compatible
Product: WinNt, suite: TerminalServer SingleUserTS
Built by: 2600.xpsp2.030422-1633
Kernel base = 0x804d4000 PsLoadedModuleList = 0x80543530
Debug session time: Sat Jun 19 19:06:57 2004
System Uptime: 0 days 1:03:36.951
Loading Kernel Symbols
……………………………………………………………………………………………………………………
Loading unloaded module list
……….
Loading User Symbols
*******************************************************************************
* *
* Bugcheck Analysis *
* *
*******************************************************************************

Use !analyze -v to get detailed debugging information.

BugCheck 86427532, {1db, 2, 3, b} <–This is your stop code

Unable to load image pavdrv51.sys, Win32 error 2
*** WARNING: Unable to verify timestamp for pavdrv51.sys
*** ERROR: Module load completed but symbols could not be loaded for pavdrv51.sys
Probably caused by : pavdrv51.sys ( pavdrv51+7fc0 )

Followup: MachineOwner
———

Now, we can already see what it was most likely caused by, in my case it was pavdrv51.sys, which is a Panda AV file.

If we want to get further in depth, we can use the command, !analyze -v at the kd> prompt to delve more info about the error:

kd> !analyze -v
*******************************************************************************
* *
* Bugcheck Analysis *
* *
*******************************************************************************

Unknown bugcheck code (86427532)
Unknown bugcheck description <–Its unknown, and not listed on the MS KB at all.
Arguments:
Arg1: 000001db
Arg2: 00000002
Arg3: 00000003
Arg4: 0000000b

Debugging Details:
——————

CUSTOMER_CRASH_COUNT: 1

DEFAULT_BUCKET_ID: DRIVER_FAULT

BUGCHECK_STR: 0x86427532

LAST_CONTROL_TRANSFER: from f4198fc0 to 804f4103

STACK_TEXT:
f41f0964 f4198fc0 86427532 000001db 00000002 nt!KeBugCheckEx+0x19
WARNING: Stack unwind information not available. Following frames may be wrong.
f41f0ba0 f419920b 864db520 f419ccf0 00000000 pavdrv51+0x7fc0
f41f0c34 804ea221 865b8910 864a52c0 806ad190 pavdrv51+0x820b
f41f0c44 8055d0fe 864a5330 86305028 864a52c0 nt!IopfCallDriver+0x31
f41f0c58 8055de46 865b8910 864a52c0 86305028 nt!IopSynchronousServiceTail+0x5e
f41f0d00 80556cea 000000a4 00000000 00000000 nt!IopXxxControlFile+0x5c2
f41f0d34 8052d571 000000a4 00000000 00000000 nt!NtDeviceIoControlFile+0x28
f41f0d34 7ffe0304 000000a4 00000000 00000000 nt!KiSystemService+0xc4
00cdff70 00000000 00000000 00000000 00000000 SharedUserData!SystemCallStub+0x4

FOLLOWUP_IP:
pavdrv51+7fc0
f4198fc0 ?? ???

SYMBOL_STACK_INDEX: 1

FOLLOWUP_NAME: MachineOwner

SYMBOL_NAME: pavdrv51+7fc0

MODULE_NAME: pavdrv51

IMAGE_NAME: pavdrv51.sys

DEBUG_FLR_IMAGE_TIMESTAMP: 3e8c072b

STACK_COMMAND: kb

BUCKET_ID: 0x86427532_pavdrv51+7fc0

Followup: MachineOwner

Laptop running slow ?


Laptop running , slower than normal? Don’t quite know what’s wrong?

OK, let’s see if we can help. Most people immediately think “Malware” at this point. But that’s not always the case. Yes, some malware does indeed slow down your system and use up precious resources. But there are other possible causes as well, so let’s explore some of these, and look at some ideas to help.

Is your PC clean?

And by that I mean – is it free from dust and dirt? Dust and dirt builds up inside a computer and this can affect your cooling fans, reducing the amount of airflow. Reduced airflow can cause your processor to overheat resulting in slow operation or even unexpected shutdowns. Many of today’s processors have the ability to “throttle back” (slow down) if the core temperature reaches a certain threshold. Cleaning the inside of your system is relatively easy – you just need to take some sensible precautions.

Clear out your Temp files.

Why? Well temp files can build up over time and eat into your precious disk space. When you install programmes, the installer uses temp (temporary) files as part of the set up process. Some programmes also use temp files when in use. These temp files should be removed when the installer or programme is finished, but this does not always happen. And, of course, your browser will collect temp files as well. A build up of temp files could leave Windows struggling to find room for its swap file (see below) – so everything slows down.

How do you clean out temp files? There are two easy ways – manually or by using a proprietary cleaning programme. Note that the cleaning programmes will often offer the option to clear out Temporary files created by your browser.

Manually (XP & Vista) – Firstly, exit all programmes, including browsers and AVs. Go to Start > Run and type %Temp% in the Run box and click OK. A folder will appear – it will contain temp files and temp folders. If you want to delete everything, press Ctrl+A (to select all) and then press the delete key. If you want to keep any files then hold down the Ctrl key and left click the file or folder. Then press the delete key. Click OK to confirm deletion. Once done, remember to go to your Recycle Bin and empty the bin.

 

don’t forget XP does have it’s own utility for cleaning – it can be found via Start > All Programs > Accessories > System Tools > Disk Cleanup.

Any old programmes?

Do you still have some old programmes installed? When did you last use them? Remember that ‘trial’ software you installed? Has the trial period expired? Could you perhaps uninstall it (assuming you have the original installation disks)? Uninstalling such programmes will help free vital disk space. Oh, always re-boot after uninstalling – it helps to clear away the final remnants of an uninstalled programme.

Are you using unnecessary programmes?

By this I mean some of the numerous “enhancement” programmes available, that, while they may make your desktop look terribly exciting, are actually eating up precious resources. Things like third party screensavers and fancy wallpapers, Windows Taskbar replacements, WindowBlinds, Actual Transparent Window, XP Visual Styles, Stardock Theme Manager and so on. Nothing wrong with using them – they are all respected legitimate applications – but they may be contributing towards the slow down of your system.

Reduce the number of programmes loading at start up

Many applications insist on starting either the complete programme or a component of the programme whenever Windows starts. Many of these start ups are unnecessary and can be stopped. A good way to review the number of start up programmes is by using a start up manager utility, such as Spybot Search & Destroy, StartUpLite or Autoruns. In Spybot, you’ll need to click Mode > Advanced to ensure you have access to the Tools section, then select System Startup in the left pane. A list of programmes that start when you boot up will be displayed in the right pane. You simply uncheck the ones you don’t need.

StartUpLite is very easy – just download the small file and double click StartUpLite.exe. A box appears showing programmes that don’t need to startup at boot. Choose whichever options you prefer and click Continue.

Autoruns gives you similar information, although presented in a slightly different way, and with more detail. Again, you simply uncheck a box beside the entry you wish to disable.

Remember to research a start up if you are not sure what it is – some of the entries that may appear and which can safely be disabled are things like Update Schedule entries for Adobe Acrobat, Sun Java, QuickTime and so on. If in doubt, post in our Forums, choosing the Forum that’s relevant to your Operating System.

Note: You should NOT use MSConfig to permanently disable programmes from automatically starting at boot up. This utility is meant as a trouble-shooter – not a long term solution. If you uninstall a programme that has already been disabled using MSConfig, then it’s likely there will be orphaned Registry entries left behind. These could cause potential problems when trying to start your system. Use one of the start up managers mentioned above.

Do you have enough RAM?

Lack of memory can be a real issue, especially with today’s high performance machines and Operating Systems (OS). If you’re using Windows (and let’s face it, most of us are) then you need to ensure you have the appropriate amount of RAM for your system. Microsoft list “minimum requirements” with each OS – but they are in the business of selling software. That’s why their “minimum requirements” are always at the lower end of the scale. There are numerous sites around that will advise you need “x” amount for XP and “y” amount for Vista. As a general rule, Vista works well with 2GB and XP with 1GB. You can use more, of course, but as a minimum these figures are accurate.

If you don’t have very much RAM, what happens? Well, Windows loads programmes into memory to allow fast access. When it has no more memory left, it will start using your hard disk. This is much slower than using RAM, so your programmes will appear to run more slowly. The part of the hard disk used by Windows is called a swap file. So, a lack of RAM can also eat into your hard disk space as well.

RAM is not terribly expensive at the moment, so it makes sense to upgrade. You can find out what type of RAM you need by downloading PCWizard – a system analyser (it’s free!) or going to one of the manufacturer’s sites such as Crucial and using their memory advisor tool. Once you know the type of RAM you need, there are plenty of online stores to choose from.

Defrag your hard disk

Over a period of time, data written to your hard disk becomes fragmented or scattered all over the disk. This makes it harder for the system to find the data it needs. By defragging your disk, or putting the data in a more logical sequence, your system performance will improve. NOTE: Windows will not let you defrag a drive if there is less than 15% free space available. Keep an eye on your free space!

You could use a defragging utility such as Sysinternals PageDefrag – this is free and easy to use.

What about my swap file?

You can change the settings on your swap file to allow Windows to have more disk space to play with. This disk space is also known as Virtual Memory. For a 32 bit Operating System (which most users will have) set any amount up to a maximum of 4Gb. Try and at least match the amount of RAM in your system. Of course, you will need to have enough free disk space for this swap file.

Something else to consider is that the swap file should not be fragmented in order to obtain the best results. This can be done by selecting ‘No swap file’, rebooting (you have to do this, to apply the changes), defragging the drive and then resetting the swap file to a size of your choosing. The swap file will now be an area of the maximum contiguous (uninterrupted) free space – and therefore optimum performance.

Note: When choosing a value it is often suggested to set a static size swap file – set the Initial and Maximum amounts to the same value. This saves Windows from using resources to manage a dynamic swap file.

Does your hard disk contain errors?

A hard disk will not last forever. Even a new hard disk can have problems. However, many problems can be fixed, simply by running a Windows utility called ChkDsk. This will scan your hard disk and repair any file system errors while verifying the integrity of the drive. Guides from Microsoft on using ChkDsk can be found

Do your System Files contain errors?

Sometimes critical system files may become damaged or corrupt. This will obviously affect your computer’s performance. However, Windows has the ability to replace any damaged files on its own – this facility is called Windows File Protection. It can be started manually by typing a simple command into the Run box – sfc /scannow. This command immediately starts the Windows File Protection utility and it then checks and scans all system files to ensure their integrity.

For users with a pre-installed version of XP, sfc may ask you for your Windows CD in order to copy the relevant files. If you don’t have a Windows CD or if sfc cannot find the files it needs, please refer to Marc Liron’s article below.

For users who installed Service Pack 2 for XP by downloading from the internet, sfc may ask you for an XP SP2 CD – which you won’t have. You may need to create a slipstreamed CD to ensure sfc works correctly. Slipstreaming is simply a way of incorporating SP2 into your Windows installation – you create a new disk with Windows and SP2 all in one.

Liron.

Note that Windows File Protection in Vista is now called Windows Resource Protection which, as well as protecting critical files, also protects the Registry. However, the basic principles are the same. To run the sfc command in Vista, you must be logged in as an Administrator.
 

Stopping unnecessary services

Windows generally comes with a raft of running services, many of which are not really required. You can safely stop some of these services and improve the boot time and speed of your system. Many installed programmes make themselves start up as soon as you boot the PC. They just run in the background, even although you don’t actually use them. Usually these programmes can be stopped from automatically loading – if you need to start them, you can do this manually.

One service that often causes a system to slow down is the Indexing Service – this can be turned off

Driver/Device Conflicts

Are all your hardware drivers up to date? Using an out of date driver could cause hardware conflicts and crash your system.

Internet Explorer

IE 7 includes a phishing filter – very useful indeed. But it can slow down your browsing as the filter checks each web page.

Anti Virus Programmes

Never use more than one Anti Virus. Although it might sound like a great idea to run two or more, in reality it’s not. AVs usually have a ‘real time’ monitor that helps protect your system. This monitor will want to have a look at any file that changes or has been added to the system. If you have 2 AVs then every time one looks at a file, the other AV will think that file has changed so it will want to take a look as well. Now the second AV thinks that file has changed so it wants another look. So, of course, the first AV thinks that file has changed….you get the idea. You could end up with an unstable system, a really slow system or unexplained crashes.

And finally…

Having done all your tweaks and clean ups, create a new System Restore point – this gives you a ‘fall back’ position with all your new changes.

Swipe Your Credit Card on a Cell Phone

square

By plugging a small piece of hardware into a phone’s audio jack, users can swipe credit cards and transfer money without the need for an additional machine.

With a small card reader that attaches to a cell phone, a new company is making it easier for small businesses and even individuals to accept credit card payments. The San Francisco start-up, called Square, which opened just last week, is headed by Twitter cofounder Jack Dorsey.

Currently, in order to accept credit cards, a business usually has a stationary machine attached to a computerized cash register. For most medium and large businesses, the set-up works fine. But smaller businesses, such as street vendors, farmers markets, and even individuals having garage sales, often don’t accept credit cards. Square hopes that these types of sellers may find its new system to be simple enough to incorporate in their micro businesses.

Square’s system consists of a small card reader that plugs into a phone’s audio jack. The reader is currently compatible only with the , but the company plans to make versions for and , as well. To make a payment, a buyer swipes a credit card through the reader, provides a signature on the touchscreen, and has the option of receiving a receipt via email.

Only the person receiving the payment needs to have an account with Square. The company hasn’t yet set account prices, but says there will be different levels for individuals who rarely use the system and for small businesses that use it more frequently. If the person paying with their credit card has a Square account, they can also enjoy extra features such as receiving a when their card is swiped, and customizing their swipe with an image that displays to the seller.

As for security, the system uses encrypted protocols to send transaction information to credit card companies, and the device is subject to the same regulations as other payment systems. Credit card information is not stored on the seller’s phone.

As noted in a recent article in MIT’s Technology Review, some people question how useful Square’s system will be. Issues such as fraud protection, robustness of the , widespread ATMs, and a small potential market for the device could pose challenges for the new company.

Nevertheless, Square is currently conducting pilot tests in major cities including San Francisco, Los Angeles, New York, and St. Louis. The company plans to release a commercialized system in early 2010.

Japanese researcher unveils ‘hummingbird robot’

Professor Hiroshi Ryu of Japan’s Chiba University displays his flying robot, which flaps its wings 30 times per second like a hummingbird, at his laboratory in Chiba city, suburban Tokyo, December 28. The robot, whose development cost has topped 200 million yen (2.1 million dollars), may be used to help rescue people trapped in destroyed buildings or search for criminals.

Japanese researchers said Monday they had developed a “hummingbird robot” that can flutter around freely in mid-air with rapid wing movements.

 therobotmayb

Windows 7 and Snow Leopaprd head to head

Both windows 7 and Snow Leopard have been on the board for quite some time and bow lets pitch them head to head and see if they are worth the upgrade.

Interface

Both operating systems have improved the user experience, and which one you prefer is largely a matter of taste. There’s no doubt that Windows 7 is the prettiest Windows yet, but to our eyes Apple still has the more refined appearance while the redesigned Windows Taskbar is, well, a bit minging.

Snow leopard vs windows 7

SERVICES MENU: OS X’s Services menu is handy, but it gets awfully cluttered. Hurrah, then, for the new context-sensitive version. Snow Leopard is all about simple but useful UI tweaks like this

Snow Leopard includes lots of welcome interface changes, including a context sensitive Services menu, a QuickTime interface that isn’t utterly hideous, a redesigned Exposé that’s now integrated into the Dock, scrollable Stacks and the latest Safari, which brings iTunes-style Cover Flow browsing to your favourite sites and browser history.

Snow leopard vs windows 7

STACK IT UP: Snow Leopard refines rather than reinvents a lot of features, so for example Stacks are now scrollable for easy navigation

Windows 7 gets Taskbar icon thumbnail previews and the fun Aero Shake, which enables you to hide everything but the current window by giving it a wiggle. Jump lists make Taskbar icons more useful, the streamlined Notification Area is considerably less annoying than before and you now get an OS X-style pop-up preview that enables you to listen to MP3s without opening Windows Media Player.

Snow leopard vs windows 7

PREVIEW IT: Thumbnail previews are little things that make a huge difference, and they’re among several useful UI improvements in Windows 7

In interface terms, then, Windows 7 is Vista with knobs on and Snow Leopard is Leopard given a bit of polish. The difference between Vista and Windows 7 is much more dramatic than the difference between Leopard and Snow Leopard, but both make your computer a nicer place to be.

Performance

Both operating systems promise improved performance and smaller footprints, with Apple suggesting that you’ll free up 7GB of hard disk space by upgrading. Microsoft is rather coy on this one, but if we look at the recommended system requirements Windows 7 wants 16GB free disk space for 32-bit and 20GB for 64-bit. Snow Leopard wants 5GB.

Windows and Snow Leopard have a number of performance features, but some of them are very hardware-dependent – so for example Snow Leopard’s hardware acceleration for QuickTime only works on Macs with an Nvidia 9400M graphics processor.

Similarly OpenCL, which uses the graphics chip for additional processing muscle, only works on specific Nvidia and AMD graphics chips, while the 64-bit processing naturally requires a 64-bit processor. If you do have all the right bits you should notice a dramatic difference in system performance, but even if you don’t Snow Leopard boasts faster waking, a faster Finder, speedier Time Machine backup and Safari, which is positively rocket-powered compared to Windows’ Internet Explorer 8.

However, to make all of this possible Apple has decided that it needs to make a sacrifice: Snow Leopard doesn’t support PowerPC Macs, so if you’ve got an ageing PowerBook kicking around you won’t be able to upgrade from Tiger or Leopard.

Snow leopard vs windows 7

QUICK TIME: Bye-bye horrible old QuickTime interface; hello minimalist new UI, hardware acceleration and iPhone-style editing

Windows is noticeably quicker too. As we discovered when we benchmarked the RTM version Windows 7 is significantly quicker to boot, to sleep and wake, to shut down and to copy files than Vista, and it feels much snappier too.

Like Snow Leopard it enables programs to take advantage of the graphics processor for additional horsepower, although like Snow Leopard you need specific hardware to get the benefit: in the case of Windows 7, that means DirectX 11-compatible graphics kit.

Windows 7 has tweaked its multi-core support, although if you install the 32-bit version you won’t be able to take advantage of 64-bit processing. We’d recommend installing 64-bit Windows unless you’re running peripherals whose manufacturers can’t be bothered making 64-bit drivers; thankfully such firms are becoming increasingly rare.

In both cases the real performance increases will turn up in the longer term, when application developers take advantage of OpenCL and Grand Central Dispatch in Snow Leopard and DirectX 11 in Windows 7.

Functionality

Rather bizarrely, Macs now support Microsoft Exchange by default while Windows doesn’t. But there’s more to Snow Leopard than support for Microsoft’s collaboration and communication system – which is just as well, given that few home users give a monkey’s about Exchange.

iChat AV does a better job using less bandwidth than before, PDF handling has been improved to make selecting text in multi-column layouts much simpler, and networking has been cleverly tweaked so that a sleeping Mac will wake up when files need to be shared and nod off again when it’s no longer needed.

The most dramatic new feature is QuickTime X, a major overhaul of Apple’s media player. It can use hardware acceleration for smoother playback, supports HTTP Live Streaming and provides easy video capture and uploading to YouTube or MobileMe. You also get iPhone 3GS-style video editing and a much less obtrusive interface.

Windows 7 gets better multimedia too. Media Player supports more formats including H.264 video, and there’s a nice feature called Play To that enables you to send media to other devices such as the Xbox 360. Cleverly, Play To will convert media into formats that your chosen device can understand.

Snow leopard vs windows 7

PLAY TO: Windows 7 quite likes multimedia, and its Play To feature enables you to send music to a wide range of devices

Windows’ networking has been given a major kick up the backside too. The new HomeGroup feature makes home networking pretty simple, and it’s designed to make home file sharing as easy as possible. You also get Internet Explorer 8, which is Microsoft’s best browser to date, and while it’s nowhere near as speedy as Safari or other rival browsers – especially with JavaScript – its Accelerators, Web Slices and improved security mean it’s a big improvement over IE7.

Snow leopard vs windows 7

ACCELERATE IT: IE8 might not be as fast as Safari in the JavaScript stakes, but features such as Accelerators and Web Slices are pretty useful

Last but not least, Windows 7 gets Windows Touch, which supports iPhone-style multi-touch input (provided, of course, you have the hardware). OS X has touch support via laptop trackpads, of course. Windows Touch could be very important when you’re choosing your next PC, but it’s irrelevant at the moment for the majority of upgraders.

Everyone’s a winner, baby

On the face of it, Apple beats Microsoft in several key areas. The first is price – Snow Leopard is £25, while Windows 7 Home Premium is currently £64.98 at Amazon – and the second is ease of installation: while Windows 7 supports in-place upgrades that keep your files intact, XP users will need to do a clean install, as will anybody upgrading from a 32-bit Vista installation to a 64-bit Windows 7 one.

Snow Leopard is designed to be an in-place upgrade, and there’s no version confusion either: Apple sells one version to Microsoft’s three retail editions.

Microsoft could certainly learn some lessons from Apple in these areas – although Apple isn’t entirely angelic, as Tiger users can only get Snow Leopard if they also buy iLife and iWork in the £129 Mac Box Set.

At least, that’s the official story. According to Walt Mossberg of the Wall Street Journal, “Apple concedes that the $29 (£25 in the UK) Snow Leopard upgrade will work properly on these Tiger-equipped Macs.” We’ll let you know what Apple says about that one.

Overall, though, it’s impossible to say whether one operating system is better than another – we’re comparing apples and oranges here, no pun intended. As most of its key changes are under the hood Snow Leopard feels more like a service pack than a new OS, and it’ll be a while before its biggest changes – such as the new toys for software developers to play with – become obvious to the average punter.

The price reflects that, and there’s enough tweakery and polish to ensure that no Intel Mac owner is going to regret spending their twenty-five quid.

Windows 7 is a different beast, with some dramatic differences to Windows Vista. In many respects it feels like the operating system Vista promised to be, but there’s enough innovation here to make it more than just Windows Vista Fixed Edition. As with Snow Leopard, you’re not going to regret purchasing it – especially if you pre-order it right now before the prices go up on 1 September.

So which is better? We think that’s the wrong question. Snow Leopard is better than Leopard, and Windows 7 is better than Windows Vista. If you aren’t planning to buy a new computer in the not too distant future, that’s all that matters: whichever platform you’re currently running, upgrading is well worth the money.

How to Enable Tools – Folder Options and Registry Editor in Windows

Many times Windows users face a common problem. The “Folder Options” in “Tools” menu is not visible. Even It can’t be accessed from Control Panel. Also “Registry Editor” is disabled.

If you are also facing this problem, then you have come to right place. Follow the simple steps mentioned in this tutorial and your problem will be solved:

1. If Folder Options is disabled but Registry Editor is still working in your system, then you can enable Folder Options by editing Windows Registry. Type regedit in RUN dialog box and press Enter. it’ll open Registry Editor, now go to following keys:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Current Version\Policies\Explorer

In right-side pane, check whether a DWORD value named NoFolderOptions exists or not? If it exists, delete it.

2. If you are not familiar with editing the registry, then you can simply download following file, extract it and then run the .REG file:

folder_options.zip

3. But sometimes Registry Editor is also disabled. Whenever you try to open regedit, Windows will show following error message:

Registry Editor has been disabled by administrator.

Its a symptom of “RONTOKBRO” Trojan. To remove this trojan, follow the instructions given in following topic:

Is Your System Infected with a Virus / Spyware / Adware / Trojan?

4. If its not a trojan problem and someone intentionally has disabled it in your system, then you can enable it again by following any of these methods:

a. Type gpedit.msc in RUN dialog box and goto:

User Configuration -> Administrative Templates -> System

in right-side pane, set “Prevent access to Registry editing tools” to either Not Configured or Disabled.

b. Just type following in RUN dialog box and press <ENTER>:

REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f

Now after enabling Registry Editor, you can re-enable Folder Options by following methods mentioned in 1st or 2nd steps.

All Restrictions for Windows 2000, XP, 2003, Vista, 2008 and 7

Following is a list of some important restrictions, which can be made in Windows 2000, XP, Server 2003, Vista, Server 2008 and 7. For example, you can restrict Display properties, Taskbar properties, folder options, etc.

All tricks are based on Registry editing, you just need to open Registry Editor by providing regedit command in RUN and then create the mentioned key and set its value as given below:

NOTE: If you want to remove the restriction, simply delete the DWORD value or set its value to 0

1.) Restrict Display Properties:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\System

create DWORD value NoDispCPL and set its value to 1

2.) Restrict Taskbar Properties:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoSetTaskbar and set its value to 1

3.) Restrict Folder Options:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoFolderOptions and set its value to 1

4.) Restrict Locking/Unlocking the taskbar:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value LockTaskbar and set its value to 1

5.) Restrict Active Desktop:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoActiveDesktop and set its value to 1

6.) Restrict adding/deleting items from Toolbars:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoToolbarCustomize and set its value to 1

7.) Restrict adding/deleting toolbars:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoBandCustomize and set its value to 1

8.) Restrict right-click in Start Menu:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoChangeStartMenu and set its value to 1

9.) Restrict Desktop Cleanup Wizard:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoDesktopCleanupWizard and set its value to 1

10.) Restrict notification at low disk space:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoLowDiskSpaceChecks and set its value to 1

11.) Restrict Taskbar Context Menu:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

create DWORD value NoTrayContextMenu and set its value to 1

12.) Restrict Programs to run:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer\DisallowRun

create String value with any name, like 1 and set its value to the program’s EXE file.

e.g., If you want to restrict msconfig, then create a String value 1 and set its value to msconfig.exe. If you want to restrict more programs, then simply create more String values with names 2, 3 and so on and set their values to the program’s exe.

13.) Restrict Registry Editor:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\System

create DWORD value DisableRegistryTools and set its value to 1

14.) Restrict Task Manager:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\System

create DWORD value DisableTaskMgr and set its value to 1

15.) Restrict Writing to USB Drives:

HKEY_LOCAL_MACHINE\SYSTEM\Current Control Set\Control\StorageDevicePolicies

Create DWORD value WriteProtect and set its value to 1

16.) Restrict New option in context menu:

HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenu Handlers\New

And delete the value of Default, e.g., empty it.

17.) Restrict Send To in context menu:

HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenu Handlers\Send To

And delete the value of Default, e.g., empty it.

18.) Restrict Balloon Tips:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Explorer\Advanced

Create DWORD value EnableBalloonTips and set its value to 0

19.) Restrict Users to enable New XP StartMenu:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

Create DWORD value NoSimpleStartMenu and set its value to 1

20.) Restrict Command Prompt:

HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\System

Create DWORD value DisableCMD and set its value to 2

21.) Restrict Drives in My Computer:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

In right-side pane, create a new DWORD value NoViewOnDrive and change its value as following:

3 : To Restrict A and B drives only.
4 : To Restrict C drive only.
7 : To Restrict A, B, and C drives only.
8 : To Restrict D drive only.
F : To Restrict A, B, C, and D drives only.
03FFFFFF : To Restrict all drives.

And if you want more specific restrictions, like you want to restrict a combination of other drives, then you can use decimal no. instead of hexadecimal no. Following is a list for all drives decimal no.:

A: 1
B: 2
C: 4
D: 8
E: 16
F: 32
G: 64
H: 128
I: 256
J: 512
K: 1024
L: 2048
M: 4096
N: 8192
O: 16384
P: 32768
Q: 65536
R: 131072
S: 262144
T: 524288
U: 1048576
V: 2097152
W: 4194304
X: 8388608
Y: 16777216
Z: 33554432
ALL: 67108863

So if you want to disable a combination of drives, just sum their numbers and give the same value to NoViewOnDrive. e.g., for restricting C, D, E and F drives, give the value: 4+8+16+32 = 60

NOTE: You can also hide the drives using NoDrives DWORD value. The location and its value remain same as the above trick.

22.) Restrict RUN in New XP StartMenu:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

Create DWORD value NoRun and set its value to 1

23.) Restrict Control Panel:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer

Create DWORD value NoControlPanel and set its value to 1