Hard Drive Data Recovery News

From Los Angeles to Denver, we have data recovery covered



Archive for March, 2010

March 31, 2010

DiskInternals Recovers EFS …

DiskInternals has released Diskinternals EFS Recovery, a data recovery tool that enables the recovery of lost and deleted files and folders from Windows Encrypted File System (EFS). The new product is the first commercially available tool to reliably recover information from encrypted volumes located on corrupted, formatted, or inaccessible partitions as well as hurt and repartitioned hard drives. Diskinternals EFS Recovery is fully compatible with EFS encryption used in Windows 7 and 2008 Server R1/R2, Windows 2000, XP, 2003 Server, and Windows Vista, and allows accessing protected information stored on EFS-encrypted volumes even if the disk has been went into a different PC, or if accessed with an before version of Windows. Diskinternals EFS Recovery recovers data from all kinds of media including internal and outdoor hard drives, all types of RAID arrays and Dynamic Disks with or without the original RAID controller present.

Diskinternals EFS Recovery allows recovering protected files and folders from EFS partitions made by Windows 7, 2008 Server R1/R2, Windows 2000, XP, 2003 Server, and Vista. The tool can be used to recover deleted files, extract encrypted information from healthy and hurt NTFS partitions, including those stored on SSD drives and RAID arrays. For EFS volumes located on RAID arrays, the original RAID controller is not required. Visit the Diskinternals EFS Recovery product portal for perfect feature details. Diskinternals EFS Recovery offers fully automated data recovery for all types of EFS partitions, locating and recovering deleted files and folders from healthy, hurt, and even inaccessible disks and partitions. The right user account password is required to recover the files. If the account password has been changed any time in the past, one of the previously used passwords can be entered into Diskinternals EFS Recovery to recover encrypted information. 

Source: http://storagetechnologysolutions.blogspot.com/2010/03/diskinternals-recovers-efs-encrypted.html

Related Posts:

  • No Related Posts

disk data recovery services

Stop motion video of a hard drive disassembling itself! CBL Data Recovery is the trusted expert for data recovery services worldwide. www.cbltech.com

http://www.youtube.com/watch?v=mVwNk3aWkhw&hl=en

See Also : remortgage house aviation accident attorney

Source: http://diskdatarecoveryservices.blogspot.com/2010/03/hard-drive-disassembly-stop-motion.html

Related Posts:

Sp_Configure Options

EXAM Objective:
Installing and Configuring SQL Server 2008
Sub Objective:
sp_configure
Sp_Configure Options
In previous post I discussed sp_configure and how to use it. In this post I will be covering some of the options and their meanings. Many of the meanings are pretty straight forwards but a few of them are a bit obscure. The options I will be looking at now are listed not more than. These are either options I have come across in preparation for the SQL Server 2008 MCITP certification or that I felt might be of practical value to know.

cost threshold for parallelism

max point of parallelism

max server memory (MB)

min server memory (MB)

index make memory

min memory per query

AWE enabled

ad hoc distributed queries

filestream access level

backup compression defaulting

Max Point of Parallelism and Cost Threshold of Parallelism
The first two are a small obscure and might cause some confusion as they are obviously related, though how they are related might not be aparent at first. To start with we will need to define the term parallelism. Parallelism is the ability for SQL Server to use multiple processors simultaneously. The max point of parallelism option is configurable from 0 to 64. Setting this option to 1 will turn off parallel querying, setting it to 2 will limit the parallel querying to 2 processors, and so on. Setting max point of parallelism to 0 allows SQL Server to use any number of processors. You can use WITH MAXDOP(INT) in your queries to override the server wide configuration shown by sp_configure.
SQL Server first checks for the cheapest possible seriel execution plot before it will consider parallelism. Once the Query Optimizer has determined the best possible seriel plot it compares the cost of that plot to the configured value of cost threshold of parallelism. If the seriel procedure cost is less than this value it executes the plot. If the cost threshold of paralellism is less than the cost of the seriel plot it will produce a parallel plot based on some assumptions about available memory and processor utilization. The cheapest plot will win. The number of threads used to do the query is determined at query plot execution and is the Point of Parallelism or DOP[1].

Further Reading

For more information regarding how Windows executes and schedules threads please see Windows Internals 5th Edition, Chapter 5 Processes, Threads, and Jobs.

Max Server Memory and Min Server Memory
The main, i.e. largest, component to SQL Server’s memory management system is known as the memory pool. The memory pool contains several types of objects (data bages, index pages, plans, etc) and the memory manager is in charge of managing disk I/O for brining these objects into and out of the data cache. A memory is a memory block that’s the same size as an index page or data page and when a component of SQL Server requires memory it requests a memory from the pool [2]. The memory pool is shared among the various caches, such as the plot cache and the data cache. It’s the job of the Memory Broker to manage the various requests for memory and ensure that SQL Server is using memory efficiently.
In a 32 bit system with 4 GB RAM Windows will reserve the highest 2 GB for its own use allowing SQL Server no more than 2 GB of available memory. This can be increased to 3 GB by adding the /3GB switch to the boot.ini. By using the Max Server Memory (MB) and Max Server Memory (MB) options you can limit the memory used by SQL Server. It should also be noted that the max value of 2,147,483,647 has nothing to do with the actual amount of memory in a system, but is austerely the maximum value allowed by the int data type. Min Server Memory limits the smallest amount of memory that can be allocated to SQL Server and Max Server Memory limits the total possible amount which can be allocated.
As with any setting in sp_configure you should properly test and evaluate the effects that making any change will have before deploying on a production server.

Real World

It’s vital to know that SQL Server will not relief memory if doing so would allow the amount of memory allocated to SQL Server to drop bellow the configured value for Min Server Memory. This could have serious implications for systems running additional applications. Remember that SQL Server was designed with the expectation that it will be the only application running on the server. This reason may be why you might want to configure both Min and Max Server Memory to ensure that SQL Server always has sufficient memory to run properly and to ensure that other applications are also able to perform properly.

AWE Enabled
Here is the definition given by Wikipedia for AWE:

Address Windowing Extensions (AWE) is a Microsoft Windows application programming interface that allows a 32-bit software application to access more physical memory than it has virtual address space. The process of mapping an application’s virtual address space to physical memory under AWE is known as “windowing,” and is similar to the “overlay” concept of other environments. AWE is beneficial to certain data-intensive applications, such as database management systems and scientific and engineering software, that need to manipulate very large data sets.

On a 32 bit system having this option enabled earnings that 32 bit versions of SQL Server will be able to access but much memory the edition of SQL Server allows. For Standard, Developer, and Enterprise this is the maximum the OS allows.
It should be noted that this option only applies to 32 bit systems, although this option exists on 64 bit systems, it is ignored[3].
Index Make Memory
According to the BoL 2008 article:
In SQL Server, the index make memory
option reins the maximum amount of memory initially allocated for making indexes. If more memory is later needed for index creation, and the memory is available, the server will use it, thus exceeding the setting of this option. If additional memory is not available, the index creation will continue using the memory already allocated.
Its defaulting value is set to 0.
Min Memory Per Query
This is basically just what it sounds like. This option ensures that each query starts its life with at least this option’s configured value of memory (in KBs) and it may then request more memory from the memory pool.
It should be noted that this option takes precedence over the Index Make Memory Option discussed above. In SQL Server 2000 these were distinct options but as of SQL Server 2005 they interact.

Further Reading

BoL 2008: If you alter both options and the index make memory is less than min memory per query, you receive a warning message, but the value is set. During query execution you receive another similar warning.

Ad Hoc Distributed Queries
The Ad Hoc Distributed Queries option allows you to use the OPENROWSET and OPENDATASET functions and is disabled by defaulting for security reasons. These functions allow you to query other data sources that use OLE DB such as Excel and CSV files. This option is deactivated by defaulting because when enabled any authenticated user can access the providers.

Real World

Configure any data sources that need to be queried regularly as linked servers.

Filestream Access Level
Filestream is a new feature of SQL Server 2008 that allows for Binary Large Objects (BLOBs) to be stored on the NTFS file system in a manner that allows them to be transactionally regular with the database but in such a way that it does not lower SQL Server performance by taking up space in the memory pool.
There are three levels to this option.

Config Value

Description

0

Disables FILESTREAM support for this instance.

1

Enables FILESTREAM for Transact-SQL access.

2

Enables FILESTREAM for Transact-SQL and Win32 streaming access.

The Enables FILESTREAM for Transact-SQL and Win32 streaming access level allows developers to access the Filestream data with a logical UNC path within a transactionally regular framework. Because of the requirement for data to remain transactionally regular, Filestreamdata cannot be renamed or deleted when accessed through the file system.
Backup Compression Defaulting
This option reins the defaulting settings for backup compression at the instance level. If, for example, you have a business requirement that states all backups need to be compressed to conserve disk space enabling this option will ensure that even T-SQL backup statements that do not explicitly announce WITH COMPRESSION will be compressed. This can still be over-ridden if the statement includes the WITH NO_COMPRESSION statement.

Real World

Making backups with compression is only supported in SQL Server 2008 Enterprise but any edition of SQL Server 2008 (Standard, Express, etc.) can restore compressed backups.

Making, and presumably restoring, compressed backups is a CPU intensive operation and before you do this you should make considerations for server load and utilization as it will affect the performance of SQL Server.

[1] – Pg. 71 – Daley, Kalen Microsoft SQL Server 2008 Internals, Microsoft Press; 1 edition, March 11, 2009
[2] – Daley, Kalen Microsoft SQL Server 2008 Internals, Microsoft Press; 1 edition, March 11, 2009
[3] – Daley, Kalen Microsoft SQL Server 2008 Internals, Microsoft Press; 1 edition, March 11, 2009
Bibliography

Daley, Kalen Microsoft SQL Server 2008 Internals, Microsoft Press; 1 edition, March 11, 2009
Itzik Ben-Gan , Etal. Inside Microsoft SQL Server 2008: T-SQL Querying, Microsoft Press; 1 edition, March 25, 2009
Russinovich, Mark and Solomon, David. Windows Internals: Including Windows Server 2008 and Windows Vista, Fifth Edition. Microsoft Press; 5 edition, June 17, 2009

Source: http://elementalsql.blogspot.com/2010/03/spconfigure-options.html

Related Posts:

10 Reasons Why PCs Crash

Fatal error: the system has become unstable or is busy,” it says. “Enter to return to Windows or press Control-Alt-Delete to restart your computer. If you do this you will lose any unsaved information in all open applications.”

You have just been struck by the Blue Screen of Fatality. Anyone who uses Mcft Windows will be traditional with this. What can you do? More importantly, how can you prevent it experience?

1 Hardware conflict

The number one reason why Windows crashes is hardware conflict. Each hardware device communicates to other devices through an interrupt request channel (IRQ). These are supposed to be unique for each device.

For example, a printer ordinarily connects internally on IRQ 7. The keyboard ordinarily uses IRQ 1 and the floppy disk drive IRQ 6. Each device will try to hog a single IRQ for itself.

If there are a lot of devices, or if they are not installed properly, two of them may end up sharing the same IRQ number. When the user tries to use both devices at the same time, a crash can happen. The way to check if your computer has a hardware conflict is through the following route:

Start-Settings-Control Panel-System-Device Manager.

Often if a device has a conundrum a yellow ‘!’ appears next to its description in the Device Manager. Highlight Computer (in the Device Manager) and press Properties to see the IRQ numbers used by your computer. If the IRQ number appears twice, two devices may be using it.

Sometimes a device might share an IRQ with a touch described as ‘IRQ holder for PCI steering’. This can be ignored. The best way to fix this conundrum is to remove the conundrum device and reinstall it.

Sometimes you may have to find more recent drivers on the Internet to make the device function properly. A excellent resource is www.driverguide.com. If the device is a soundcard, or a modem, it can often be fixed by moving it to a different slot on the motherboard (be careful about opening your computer, as you may void the warranty).

When effective inside a computer you should switch it off, unplug the mains lead and touch an unpainted metal surface to discharge any static electricity.

To be honest to Mcft, the conundrum with IRQ numbers is not of its making. It is a legacy conundrum going back to the first PC designs using the IBM 8086 chip. Initially there were only eight IRQs. Today there are 16 IRQs in a PC. It is simple to run out of them. There are plans to increase the number of IRQs in future designs.

2 Terrible Ram

Ram (random-access memory) problems might bring on the blue screen of fatality with a message saying Fatal Exception Error. A fatal error indicates a serious hardware conundrum. Sometimes it may mean a part is hurt and will need replacing.

But a fatal error caused by Ram might be caused by a mismatch of chips. For example, mixing 70-nanosecond (70ns) Ram with 60ns Ram will ordinarily force the computer to run all the Ram at the slower speed. This will often crash the machine if the Ram is overworked.

One way around this conundrum is to enter the BIOS settings and increase the wait state of the Ram. This can make it more stable. Another way to troubleshoot a suspected Ram conundrum is to rearrange the Ram chips on the motherboard, or take some of them out. Then try to repeat the conditions that caused the crash. When handling Ram try not to touch the gold connections, as they can be easily hurt.

Parity error messages also refer to Ram. Modern Ram chips are either parity (ECC) or non parity (non-ECC). It is best not to mix the two types, as this can be a cause of distress.

EMM386 error messages refer to memory problems but may not be connected to terrible Ram. This may be due to free memory problems often linked to ancient Dos-based programmes.

3 BIOS settings

Each motherboard is supplied with a range of chipset settings that are chose in the factory. A ordinary way to access these settings is to press the F2 or delete button during the first few seconds of a boot-up.

Once inside the BIOS, fantastic care should be taken. It is a excellent thought to write down on a piece of paper all the settings that appear on the screen. That way, if you change a touch and the computer becomes more unstable, you will know what settings to revert to.

A ordinary BIOS error concerns the CAS latency. This refers to the Ram. Older EDO (extended data out) Ram has a CAS latency of 3. Newer SDRam has a CAS latency of 2. Setting the incorrect figure can cause the Ram to lock up and freeze the computer’s show.

Mcft Windows is better at allocating IRQ numbers than any BIOS. If possible set the IRQ numbers to Auto in the BIOS. This will allow Windows to allocate the IRQ numbers (make sure the BIOS setting for Plug and Play OS is switched to ‘yes’ to allow Windows to do this.).

4 Hard disk drives

After a few weeks, the information on a hard disk drive starts to become piecemeal or fragmented. It is a excellent thought to defragment the hard disk each week or so, to prevent the disk from causing a screen freeze. Go to

Start-Programs-Accessories-System Tools-Disk Defragmenter

This will start the procedure. You will be unable to write data to the hard drive (to save it) while the disk is defragmenting, so it is a excellent thought to schedule the procedure for a period of inactivity using the Task Scheduler.

The Task Scheduler should be one of the small icons on the bottom right of the Windows opening page (the desktop).

Some lockups and screen freezes caused by hard disk problems can be solved by reducing the read-ahead optimisation. This can be adjusted by going to

Start-Settings-Control Panel-System Icon-Performance-File System-Hard Disk.

Hard disks will slow down and crash if they are too full. Do some housekeeping on your hard drive each few months and free some space on it. Open the Windows folder on the C drive and find the Temporary Internet Files folder. Deleting the contents (not the folder) can free a lot of space.

Empty the Recycle Bin each week to free more space. Hard disk drives should be scanned each week for errors or terrible sectors. Go to

Start-Programs-Accessories-System Tools-ScanDisk

Otherwise assign the Task Scheduler to perform this operation at nighttime when the computer is not in use.

5 Fatal OE exceptions and VXD errors

Fatal OE exception errors and VXD errors are often caused by video card problems.

These can often be resolved easily by reducing the resolution of the video show. Go to

Start-Settings-Control Panel-Show-Settings

Here you should slide the screen area bar to the left. Take a look at the colour settings on the left of that window. For most desktops, high colour 16-bit depth is adequate.

If the screen freezes or you experience system lockups it might be due to the video card. Make sure it does not have a hardware conflict. Go to

Start-Settings-Control Panel-System-Device Manager

Here, select the + beside Show Adapter. A line of text describing your video card should appear. Select it (make it blue) and press properties. Then select Resources and select each line in the window. Look for a message that says No Conflicts.

If you have video card hardware conflict, you will see it here. Be careful at this point and make a note of everything you do in case you make things of poorer quality.

The way to resolve a hardware conflict is to uncheck the Use Automatic Settings box and hit the Change Settings button. You are searching for a setting that will show a No Conflicts message.

Another useful way to resolve video problems is to go to

Start-Settings-Control Panel-System-Performance-Graphics

Here you should go the Hardware Hastening slider to the left. As ever, the most ordinary cause of problems relating to graphics cards is ancient or faulty drivers (a driver is a small piece of software used by a computer to communicate with a device).

Look up your video card’s manufacturer on the internet and search for the most recent drivers for it.

6 Viruses

Often the first sign of a virus infection is shakiness. Some viruses erase the boot sector of a hard drive, making it impossible to start. This is why it is a excellent thought to make a Windows start-up disk. Go to

Start-Settings-Control Panel-Add/Remove Programs

Here, look for the Start Up Disk tab. Virus protection requires constant vigilance.

A virus scanner requires a list of virus signatures in order to be able to identify viruses. These signatures are stored in a DAT file. DAT files should be updated weekly from the website of your antivirus software manufacturer.

An brilliant antivirus programme is McAfee VirusScan by Network Associates ( www.nai.com). Another is Norton AntiVirus 2000, made by Symantec ( www.symantec.com).

7 Printers

The action of sending a document to print makes a larger file, often called a postscript file.

Printers have only a small amount of memory, called a memory. This can be easily overloaded. Printing a document also uses a extensive amount of CPU power. This will also slow down the computer’s performance.

If the printer is trying to print unusual characters, these might not be recognised, and can crash the computer. Sometimes printers will not recover from a crash because of confusion in the memory. A excellent way to clear the memory is to unplug the printer for ten seconds. Booting up from a powerless state, also called a cold boot, will restore the printer’s defaulting settings and you may be able to carry on.

8 Software

A ordinary cause of computer crash is faulty or terribly-installed software. Often the conundrum can be cured by uninstalling the software and then reinstalling it. Use Norton Uninstall or Uninstall Shield to remove an application from your system properly. This will also remove references to the programme in the System Registry and leaves the way clear for a completely fresh copy.

The System Registry can be corrupted by ancient references to obsolete software that you thought was uninstalled. Use Reg Cleaner by Jouni Vuorio to clean up the System Registry and remove obsolete entries. It works on Windows 95, Windows 98, Windows 98 SE (Second Edition), Windows Millennium Edition (ME), NT4 and Windows 2000.

Read the directions and use it carefully so you don’t do stable hurt to the Registry. If the Registry is hurt you will have to reinstall your in commission system. Reg Cleaner can be obtained from www.jv16.org

Often a Windows conundrum can be resolved by inflowing Safe Mode. This can be done during start-up. When you see the message “Early Windows” press F4. This should take you into Safe Mode.

Safe Mode loads a minimum of drivers. It allows you to find and fix problems that prevent Windows from loading properly.

Sometimes installing Windows is trying because of unsuitable BIOS settings. If you keep getting SUWIN error messages (Windows setup) during the Windows installation, then try inflowing the BIOS and disabling the CPU internal cache. Try to disable the Level 2 (L2) cache if that doesn’t work.

Remember to restore all the BIOS settings back to their ex- settings following installation.

9 Overheating

Central processing units (CPUs) are ordinarily equipped with fans to keep them cool. If the fan fails or if the CPU gets ancient it may start to overheat and breed a particular kind of error called a kernel error. This is a ordinary conundrum in chips that have been overclocked to operate at higher speeds than they are supposed to.

One remedy is to get a larger better fan and bed in it on top of the CPU. Specialist cooling fans/heatsinks are available from www.computernerd.com or www.coolit.com

CPU problems can often be fixed by disabling the CPU internal cache in the BIOS. This will make the machine run more slowly, but it should also be more stable.

10 Power supply problems

With all the new construction going on around the country the steady supply of electricity has become disrupted. A power rush or spike can crash a computer as easily as a power cut.

If this has become a nuisance for you then consider buying a incessant power supply (UPS). This will give you a clean power supply when there is electricity, and it will give you a few minutes to perform a controlled shutdown in case of a power cut.

It is a excellent investment if your data are critical, because a power cut will cause any unsaved data to be lost.

Source: http://kanikasweet-tech.blogspot.com/2010/03/10-reasons-why-pcs-crash.html

Related Posts:

Working on RAID arrays

If you ever get a peek into a huge company’s server room you can expect to see a large data storage center. Blade servers, bundles of wires, stacks of hard drives, and raid arrays. A RAID setup is designed to withstand 1 or 2 drive failures while maintaining the database and keeping it intact. Parity and striped bits of data keep users in the dark when there’s a been a significant hardware failure. The RAID array just keeps on going while the panicked IT service people swap out hard drives and perform a rebuild at the end of the day.

If you see the drives numbered that helps to keep the order if the drives ever need to be removed and positioned into another server. This setup allows for massive amounts of data to be stored and accessed by many users. There is also a noticeable performance boost across a network. Increasing productivity all around.

Setting up your own RAID is a fantastic way to know how things work. Nowadays it is quite ordinary to find a 2 or 4 bay enclosure that is capable of a RAID configuration. Turn those ancient hard drives into a mini data storage center of your own.

Don’t forget to secure your network with a proper firewall and anti virus. Also remember that a RAID array is not infallible. They do and can fail at any time regardless of how new the drives are. Data loss in a corporate setting can be devastating and often cost people their jobs. Be sure to learn all that you can before you work with RAID arrays.

Source: http://savemydata.blogspot.com/2010/03/effective-on-raid-arrays.html

Related Posts:

: Ẅ ė Ŀ – Ċ ő М ё – Ŧ ό – Ħ ē Ŕ ĕ – V ï Ŵ ě Я ˚ š ::.™: Theft Alarm

Theft Alarm- Prevent laptop theft by sounding an alarm when a thief tries to steal a laptop.

Outer limits Alarm- Alert when a laptop goes outside a outer limits. It helps prevent laptop misuse and keeps the laptop within a safe boundary.

Inattention Alarm- Sound an alarm when the owner leaves the computer unattended in an unsafe area for a period of time. It helps prevent laptop theft.

Battery Alarm- Alarm when the battery is under stress in order to preserve the battery capacity and prolong the battery lifetime. It also alarms when the battery level is low to prevent data corruption due to sudden power loss.

Disk Alarm- Alarm when a hard disk drive needs a repair or replacement in order to prevent data loss and laptop failure.

Data Destruction- Protect sensitive data by destroying the data if the laptop is stolen.

Data Recovery- Can recover data from a stolen laptop.

Mobile Phone Alert- Send an alert to a mobile phone via email or SMS.

Theft Response- You can tell your laptop what to do in advance if your laptop is in hands of a thief.

Health Alarm- Alert the user for using a computer for an extended period of time in order to prevent computer-related injuries.

Panic Alarm- Alert an emergency contact in case of an emergency. Also emits a loud alarm sound to protect the user from an attacker.

Download Now

Source: http://mriyanabbasi.blogspot.com/2010/03/theft-alarm.html

Related Posts:

  • No Related Posts

Data recovery service

Data recovery service

hard disk data recovery service
hard drive data recovery service
raid data recovery service
data recovery services
best data recovery service
data recovery service
disk data recovery service
hard drive data recovery services
professional data recovery service
best data recovery services
computer data recovery services
seagate data recovery service
computer data recovery service
raid data recovery services
data recovery service review
data recovery service reviews
data recovery service cost
hard disk data recovery services
disk data recovery services

Source: http://recovermyfilessoftware.blogspot.com/2010/03/data-recovery-service.html

Related Posts:

On Killing My Computer

Photo by imakethings

So over the weekend I got bored and chose to kill my computer.

Well, that’s not just so how it happened, but I did get the flashing question mark of doom and learned that my hard drive was inaccessable, i.e. dead. I’m not sure just so how this happened, but it may have a touch to do with the some 10,000+ photo files and the superfluity of ID and info carelessly crammed in there.

Regardless of the cause, I felt panicked and really depressed at first. The techie at the Apple Store looked at me with pity as I walked shamefully back to the car after learning my computer’s sad fate. The initial feeling of loss was so fantastic–in my mind it was nearly as if all the memories lost in those photos had been completely taken away. I did have the majority of my photos packed up via disk, outdoor hard drives, online photo programs, etc., but there was a excellent small chunk of the past year that I didn’t have on file anywhere else.

After resigning myself to the fact that it was likely too expensive to pay for data recovery at this stage in our lives ($1,000 is no pocket change for us!), I started thinking more deeply about my situation.

I realized that even with the photos I still have, I have far more snapshots of my children’s lives than I have of my entire childhood, and my eldest is only 6. I thought about how much time was spent even taking those photos, and how, in the end, how futile an try it really is.

Don’t get me incorrect, nothing makes me feel fuzzier inside than looking back at our family photos, watching my kids sleep, drool, crawl, run around naked, and blow out birthday candles all over again. But the photos become a crutch for our memories in a way. And the business of taking the photos (and then spending hours control and uploading them) can take away from our experience of really living the very events we’re trying to capture.

I don’t mean to say that I’ll likely stop taking photos any time soon, but I was able to realize the importance of separating the value of life lived from the mass of photos hoarded. I will certainly be more attentive to backing up my files regularly on my still-to-be-bought new hard drive. And although I do have my husband’s computer to use as needed, I reckon it was fitting for this to happen just in time for Holy Week–there’s nothing like the right meaning of Easter to place my life into perspective!

Source: http://threeinarowblog.blogspot.com/2010/03/on-killing-my-computer.html

Related Posts:

March 30, 2010

trik and tips menu regedit

Add OpenWith to all files
Backup/Restore the Registry
Lockout unwanted Users
Customize the System Tray
Changing Windows’ Icons
Change Registered User
Change Registered Owner
Add/Remove Sound Events
Open a DOS Window to a folder
Change Exchange/Outlook Mailbox
Add Apps to Right Click
Add Explore to all Folders
Making a Logon Banner
Making a Defaulting File Opener
Changing the Tips of the Day
Automatic Screen Refresh
Disable Password Caching
Removing Items from NEW
Recycle Bin Edits
Disabling My Computer
Changing Desktop Icons
Turn Off Window Animation
Change/add restriction and features
Change Keyboard layout

Making Telnets window larger
Multiple Columns For the Start Menu
Change Defaulting Folder Locations
Disabling Drives in My Computer
Disable the Outlook Express Splash Screen
Change Location of Windows Installation Files
Change the caption on the Title Bar for Outlook
Change the caption on the Title Bar on I.E.
Defrayal the ID Menu Automatically
Disabling the Right-Click on the Start Button
Opening the Explorer from My Computer
Setting the Minimum Password Length
AddDelete programs to run on boot up
Removing the Shortcut Icon Arrows
Changing your Modem’s Initialization String
Increasing the Modem Timeout
Clear Apps from Add/Remove
The Fix For Grayed Out Boxes
Adding Items to the Start Button
Change the MaxMTU for quicker Downloads
Remove Open, Explore & Find from Start Menu
More Protection for system files
Delete Registry Keys from Command Line

Backup / Restore the Registry

To Backup/Restore the Windows Registry: Windows 9x For XP 2000 click here

If you are in MSDOS, at the C:Windows prompt type

Attrib -s -r -h C:WindowsSystem.dat (press Enter)

Attrib -s -r -h C:WindowsUser.dat (press Enter)

To make the backup copies type:

copy C:WindowsSystem.dat C:WindowsSystem.000 (press Enter)

copy C:WindowsUser.dat C:Windowsuser.000 (press Enter)

To Restore the Registry

copy C:WindowsSystem.000 C:WindowsSystem.dat (press Enter)

copy C:WindowsUser.000 C:Windowsuser.dat (press Enter)

Add Open With to all files

You can add “Open With…” to the Right click context menu of all files.This is fantastic for when you have several programs you want to open the same file types with. I use three different text editors so I extra it to the “.txt” key.

1. Open RegEdit
2. Go to HKEY_CLASSES_ROOT*Shell
3. Add a new Key named “OpenWith” by right clicking the “Shell” Key and selecting new
4. Set the (Defaulting) to “Op&en With…”
5. Add a new Key named “Command” by right clicking the “OpenWith” Key and selecting new
6. Set the (Defaulting) to “C:Windowsrundll32.exe shell32.dll,OpenAs_RunDLL %1″, C: being your Windows drive. You must enter the “OpenAs_RunDLL %1″ just so this way.

Customize the System Tray

You can add your name or anything you like that consists of 8 characters or less. This will replace the AM or PM next to the system time. But you can corrupt some trial licenses of software that you may have downloaded.

1. Open RegEdit
2. Go to HKEY_CURRENT_USERControl PanelInternational
3. Add two new String values, “s1159″ and “s2359″
4. Right click the new value name and modify. Enter anything you like up to 8 characters.

If you enter two different values when modifying, you can have the system tray show the two different values in the AM and PM.

Lock Out Unwanted Users

Want to keep people from accessing Windows, even as the defaulting user? If you do not have a domain do not attempt this.

1. Open RegEdit
2. Go to HKEY_LOCAL_MACHINENetworkLogon
3. Make a dword value “MustBeValidated”
4. Set the value to 1
This forced logon can be bypassed in Safe Mode on Windows 9x

Disable the Outlook Express Splash Screen

You can make OutLook Express load quicker by disabling the splash screen:

1. Open RegEdit
2. Go to HKEY_CURRENT_USERSoftwareMicrosoftOutLook Express
3. Add a string value “NoSplash”
4. Set the value data to 1 as a Dword value

Multiple Columns For the Start Menu

To make Windows use multiple Start Menu Columns instead of a single scrolling discourse, like Windows 9x had, Also if you are using Classic Mode in XP

1. Open RegEdit
2. Go to the key
HKEY_LOCAL_MACHINE Software Microsoft Windows CurrentVersion Explorer Advanced
3. Make a string value “StartMenuScrollPrograms”
4. Right click the new string value and select modify
5. Set the value to “FALSE”

Changing Windows’ Icons

You can change the Icons Windows uses for folders, the Start Menu, opened and closed folder in the Explorer, and many more.

1. Open RegEdit
2. Go to
HKEY_LOCAL_MACHINE Software Microsoft Windows CurrentVersion Explorer Shell Icons
3. Add a string value for each Icon you wish to change.
Example: “3″ =”C:WindowsIconsMyIcon.ico,0″ This will change the closed folders in the Explorer to “MyIcon.ico”. Here is a perfect list for each value.

0= Unknown file type
1= MSN file types
2= Applications Generic
3= Closed Folder
4= Open Folder
5= 5.25″ Drive
6= 3.25″ Drive
7= Removable Drive
8= Hard Drive
9= NetWork Drive
10= Network Drive Offline
11= CD-ROM Drive
12= RAM Drive
13= Entire Network

14= Network Hub
15= My Computer
16= Printer
17= Network Neighborhood
18= Network Workgroup
19= Start Menu’s Program Folders
20= Start Menu’s ID
21= Start Menu’s Setting
22= Start Menu’s Find
23= Start Menu’s Help
24= Start Menu’s Run
25= Start Menu’s Place on hold
26= Start Menu’s PC Undock
27= Start Menu’s Shutdown

28= Shared
29= Shortcut Arrow
30= (Unknown Overlay)
31= Recycle Bin Empty
32= Recycle Bin Full
33= Dial-up Network
34= DeskTop
35= Control Panel
36= Start Menu’s Programs
37= Printer Folder
38= Fonts Folder
39= Taskbar Icon
40= Audio CD

You need to reboot after making changes. You may need to delete the hidden file ShellIconCache if after rebooting the desired Icons are not showed.

Change Defaulting Folder Locations

You can change or delete the Windows mandatory locations of folder like My ID:

1. Open RegEdit
2. Go to HKEY_CURRENT_USER Software Microsoft Windows CurrentVersion Explorer Shell Folders
3. Change the desired folder location, My ID is normally list as “Personal”
4. Open the Explorer and rename or make the folder you wish.

To change the desired location of the Program Files folder
1. Go to
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersion
2. Change the value of “ProgramFiles”, or “ProgramFilesDir”
Now when you bed in a new program it will defaulting to the new location you have selected.

Change the Registered Change the User Information

You can change the Registered Owner or Registered Organization to anything you want even after Windows is installed.

1) Open RegEdit
2) Got to
HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows CurrentVersion.
3) Change the value of “RegisteredOrganization” or “RegisteredOwner”, to what ever you want

Opening a DOS Window to either the Drive or Directory in Explorer

Add the following Registry Keys for a Directory:
HKEY_CLASSES_ROOTDirectoryshellopennew
@=”Dos Prompt in that Directory”

HKEY_CLASSES_ROOTDirectoryshellopennewcommand
@=”command.com /k cd %1″

Add or Edit the following Registry Keys for a Drive:
HKEY_CLASSES_ROOTDriveshellopennew
@=”Dos Prompt in that Drive”

HKEY_CLASSES_ROOTDriveshellopennewcommand
@=”command.com /k cd %1″

These will allow you to right click on either the drive or the directory and the option of early the dos prompt will pop up.

Changing Exchange/Outlook Mailbox Location

To change the location of your mailbox for Exchange:
1. Open RegEdit
2. Go to
HKEY_CURRENT_USERSoftware MicrosoftWindows Messaging Subsystem Profiles
3. Go to the profile you want to change
4. Go to the value name that has the file location for your mailbox (*.PST) file
5. Make the change to file location or name

To change the location of your mailbox for Outlook
1. Open RegEdit
2. Go to HKEY_CURRENT_USERSoftwareMicrosoftOutlook (or Outlook Express if Outlook Express)
3. Go to the section “Store Root”
4. Make the change to file location

Add/Remove Sound Events from Control Panel

You can Add and delete sounds events in the Control Panel. In order to do that:

1. Open RegEdit
2. Go to HKEY_CURRENT_USERAppEventsSchemesApps and HKEY_CURRENT_USERAppEventsSchemesEventlabels. If this key does not exist you can make it and add events.
3. You can add/delete any items you want to or delete the ones you no longer want.

Adding an Application to the Right Click on Each Folder

Here is how to add any application to the Context Menu when you right click on any Folder. This way you do not have to always go to the Start Menu. When you right click on any folder, you can have access to that application, the same as using Sent To.

1. Open RegEdit
2. Go to HKEY_CLASSES_ROOTFoldershell
3. Add a new Key to the “Shell” Key and name it anything you like.
4. Give it a defaulting value that will appear when you right click a folder, i.e. NewKey (use an “&” without the quotes, in front of any reputation and it will allow you to use the keyboard)
5. Click on the Key HKEY_CLASSES_ROOTFoldershellNewKey
6. Add a New Key named Command
7. Set the (Defaulting) value of the application you want to run
8. For example: c:program filesinternet exploreriexplore.exe (Include the full path and parameters if you need them)

Adding Explore From Here to Each Folder

When you want to right click on any folder and want to open up an Explorer window of that folder.

1. Open RegEdit
2. Go to HKEY_CLASSES_ROOTFoldershell
3. Add a new Key “RootExplore ” under the “Shell” Key
4. Set the (Defaulting) value to “E&xplore From Here “
5. Right Click the “RootExplore ” Key and add a new Key “Command”to the RootExplore
6. Set the (Defaulting) value of Explorer.exe /e,/root,/idlist,%i

Changing the Location of Windows’ Installation Files

If you need to change the drive and or path where Windows looks for its installation files:
1.Open RegEdit
2.Go to
HKEY_LOCAL_MACHINESOFTWARE Microsoft Windows CurrentVersion Setup
3.Edit the value next to SourcePath

Making a Logon Banner

If you want to make a Logon Banner: A message box to appear not more than your logon on.

1.Open RegEdit
2.Go To
For Windows 9x and ME -
HKEY_LOCAL_MACHINESOFTWARE Microsoft Windows CurrentVersion Winlogon

For Windows 2000 XP 2003 Vista –
HKEY_LOCAL_MACHINESOFTWARE Microsoft Windows CurrentVersion Winlogon

3.Make a new String value”LegalNoticeCaption “
4. Enter the Title of the window. What is showed in the Title Bar.
5. Make a new string value “LegalNoticeText”
6. Enter the text for your message box that will appear even before the Logon window.

Making a Defaulting File Opener

If you have a un-registered file type and want to view it instead of having to select Open With. Use Explorer’s Right-click and add your program to the right-click options by:
1. Open RegEdit
2. Go to HKEY_CLASSES_ROOTUnknownShell
3. Right click on “Shell” and make a New Key and name it “Open “
4. Make a New Key under the “Open” key you just made and name it “Command”
5. Set the (Defaulting) value to the path and filename of the program you want to use to open the file type
6. For example: C:WindowsNOTEPAD.EXE %1
You must use the “%1″ for this to work.and a space between the exe and the %1

Deleting Registry Keys from the Command Line

There are two ways to delete a key from the Registry from the Command line. At the Windows Command line:

RegEdit /l location of System.dat /R location of User.dat /D Registry key to delete
You cannot be in Windows at the time you use this switch.

Or you can make a reg file as such:
REGEDIT4

[-HKEY_LOCAL_MACHINEthe key you want to delete]
Note the negative sign just behind the[
Then at the Command line type:
1. RegEdit C:Windows(name of the regfile).

Change/Add Restrictions And Features

If you want to make restrictions to what users can do or use on their computer without having to run Poledit, you can edit the Registry. You can add and delete Windows features in this Key shown not more than.

Zero is Off and the value 1 is On. Example: to Save Windows settings add or modify the value name NoSaveSettings to 0, if set to1 Windows will not save settings. And NoDeletePrinter set to 1 will prevent the user from deleting a printer.

The same key shows up at:
HKEY_USERS(yourprofilename) Software Microsoft Windows CurrentVersion Policies Explorer so change it there also if you are using different profiles.

1.Open RegEdit
2.Go to
HKEY_CURRENT_USERSoftwareMicrosoft CurrentVersion Policies
3.Go to the Explorer Key (Additional keys that can be made under Policies are System, Explorer, Network and WinOldApp )
4.You can then add DWORD or binary values set to 1 in the apt keys for ON and 0 for off.
NoDeletePrinter – Disables Deletion of Printers
NoAddPrinter – Disables Addition of Printers
NoRun – Disables Run Command
NoSetFolders – Removes Folders from Settings on Start Menu
NoSetTaskbar – Removes Taskbar from Settings on Start Menu
NoFind – Removes the Find Command
NoDrives – Hides Drives in My Computers
NoNetHood – Hides the Network Neighborhood
NoDesktop – Hides all icons on the Desktop
NoClose – Disables Shutdown
NoSaveSettings – Don’t save settings on exit
DisableRegistryTools – Disable Registry Control Tools
NoRecentDocsMenu – Hides the ID shortcut at the Start button
NoRecentDocsHistory- Clears history of ID
NoFileMenu _ Hides the Files Menu in Explorer
NoActiveDesktop – No Active Desktop
NoActiveDesktopChanges- No changes allowed
NoInternetIcon – No Internet Explorer Icon on the Desktop
NoFavoritesMenu – Hides the Favorites menu
NoChangeStartMenu _ Disables changes to the Start Menu
NoFolderOptions _ Hides the Folder Options in the Explorer
ClearRecentDocsOnExit – Empty the recent Docs folder on reboot
NoLogoff – Hides the Log Off …. in the Start Menu

And here are a few more you can play with
ShowInfoTip
NoTrayContextMenu
NoStartMenuSubFolders
NoWindowsUpdate
NoViewContextMenu
EnforceShellExtensionSecurity
LinkResolveIgnoreLinkInfo
NoDriveTypeAutoRun
NoStartBanner
NoSetActiveDesktop
EditLevel
NoNetConnectDisconnect
RestrictRun – Disables all exe programs except those listed in the RestrictRun subkey
This key has many other available keys, there is one to even hide the taskbar, one to hide the control panel and more. I’m not telling you how, as someone may want to play a trick on you. The policies key has a fantastic deal of control over how and what program can run and how one can access what feature.

In the System key you can enter:
NoDispCPL – Disable Show Control Panel
NoDispBackgroundPage – Hide Background Page
NoDispScrSavPage – Hide Screen Saver Page
NoDispAppearancePage – Hide Appearance Page
NoDispSettingsPage – Hide Settings Page
NoSecCPL – Disable Password Control Panel
NoPwdPage – Hide Password Change Page
NoAdminPage – Hide Remote Administration Page
NoProfilePage – Hide User Profiles Page
NoDevMgrPage – Hide Device Manager Page
NoConfigPage – Hide Hardware Profiles Page
NoFileSysPage – Hide File System Button
NoVirtMemPage – Hide Virtual Memory Button

In the Network key you can enter:
NoNetSetup – Disable the Network Control Panel
NoNetSetupIDPage – Hide Identification Page
NoNetSetupSecurityPage – Hide Access Control Page
NoFileSharingControl – Disable File Sharing Reins
NoPrintSharing – Disable Print Sharing Reins

In the WinOldApp key you can enter:
Disabled – Disable MS-DOS Prompt
NoRealMode – Disables Single-Mode MS-DOS

Automatic Screen Refresh

When you make changes to your file system and use Explorer, the changes are not ordinarily showed until you press the F5 key
To refresh automatically:
1. Open RegEdit
2. Go to
HKEY_LOCAL_MACHINESystemCurrentControlSetControlUpdate
3. Set the value name “UpdateMode” to 1

Disable Password Caching

To disable password caching, which allows for the single Network login and eliminates the secondary Windows logon screen. Either use the same password or:

1. Open RegEdit
2. Go to the key
HKEY_LOCAL_MACHINESOFTWARE Microsoft Windows CurrentVersion Policies Network
3. Add a Dword value “DisablePwdCaching” and set the value to 1

Changing the MaxMTU for quicker Downloads

There are four Internet settings that can be configured, you can get greater throughput (quicker Internet downloads) by modifying a few settings.
They are the MaxMTU, MaxMSS and DefaultRcvWindow, and DefaultTTL

1.Open RegEdit
2.Go to
HKEY_LOCAL_MACHINESystemCurrentControlset Services Class net 000x
(where x is your particular network adapter binding.)
3.Right click on the right panel
4.Select NewString Value and make the value name IPMTU
5.Dual click on it and enter then the number you want. The usual change is to 576
6.Similarly, you can add IPMSS and give it a value of 536

(Windows 9X)You can set DefaultRcvWindow, and DefaultTTL by adding these string values to HKEY_LOCAL_MACHINE System CurrentControlset Services VXD MSTCP
Set the DefaultRcvWindow to”5840″and the DefaultTTL to “128″

Note: These settings will slow down your network access speed slightly, but you will doubtless not even see the difference if you are using a network card. If you are using Direct Cable you should see a sight difference.

Adding Items to the Start Button

To add items when you right-click on the Start Button:
1.Open RegEdit
2.Go to HKEY_CLASSES_ROOTDirectoryShell
3.Right-click on Shell and select New Key
4.Type in the name of the key and press the Enter key
5.In the Defaulting name that shows in the right hand panel, you can add a title with a “&” reputation in front of the letter for a shortcut
6.Right-click on the key you just made and make another key under it called command
7.For the value of this command, enter the full path and program you want to do
8.Now when you right click on the Start Button, your new program will be there.
9.For example, if you want Word to be extra, you would add that as the first key, the defaulting in the right panel would be &Word so when you right click on the Start Button, the W would be the Hot Key on your keyboard. The value of the key would be C:Program FilesOfficeWinwordWinword.exe

Remove Open, Explore & Find from Start Button

When you right click on the Start Button, you can select Open, Explore or Find.
Open shows your Programs folder. Explore starts the Explorer and allows access to all drives.
Find allows you to search and then run programs. In certain situations you might want to disable this feature.
To remove them:
1.Open RegEdit
2.Go to HKEY_CLASSES_ROOTDirectoryShellFind
3.Delete Find
4.Scroll down not more than Directory to Folder
5.Expand this section under shell
6.Delete Explore and Open
Caution: – When you remove Open, you cannot open any folders.

Removing Items from NEW Context Menu

When you right-click on the desktop and select New, or use the File Menu item in the Explore and select New a list of defaulting templates you can open up are listed.
To remove items from that list:
1. Open RegEdit
2. Do a Search for the string ShellNew in the HKEY_CLASSES_ROOT Hive
3. Delete the ShellNew command key for the items you want to remove.

Changing Telnet Window

You can view more data if you increase the line count of Telnet. By Defaulting it has a window size of 25 lines. To increase this so you can scroll back and look at a larger number on lines:
1. Open RegEdit
2. Go to HKEY_CURRENT_USERSoftwareMicrosoftTelnet
3. Modify the value data of “Rows”

Changing the Tips of the Day

You can edit the Tips of the day in the Registry by going to:
HKEY_LOCAL_MACHINESOFTWAREMicrosoft Windows CurrentVersion explorer Tips

Disabling Drives in My Computer

To turn off the show of local or networked drives when you click on My Computer:
1.Open RegEdit
2.Go to
HKEY_CURRENT_USERSoftware Microsoft Windows CurrentVersion Policies Explorer
3.Add a New DWORD item and name it NoDrives
4.Give it a value of 3FFFFFF
5.Now when you click on My Computer, none of your drives will show.

Changing the caption on the Title Bar

Change the Caption on the Title Bar for OutLook Express or the Internet Explorer:
For Outlook Express:
1. Open RegEdit
2. Go to
HKEY_CURRENT_USERSoftwareMicrosoftOutLook Express
For IE5 and up use:
HKEY_CURRENT_USERIDENTITIES {9DDDACCO-38F2-11D6-93CA-812B1F3493B} SOFTWARE MICROSOFT OUTLOOK EXPRESS5.0
3. Add a string value “WindowTitle” (no space)
4. Modify the value to what ever you like.

For no splash screen, add a dword value “NoSplash” set to 1
The Key {9DDDACCO-38F2-11D6-93CA-812B1F3493B} can be any key you find here. Each user has his own Key number.
The Key 5.0 is whatever version of IE you have

For Internet Explorer:
1. Open RegEdit
2. Go to HKEY_LOCAL_MACHINESoftwareMicrosoftInternet ExplorerMain
3. Add a string value “Window Title” (use a space)
4. Modify the value to what ever you like.

Disabling the Right-Click on the Start Button

Normally, when you right button click on the Start button, it allows you to open your programs folder, the Explorer and run Find.
In situations where you don’t want to allow users to be able to do this in order to secure your computer.
1.Open RegEdit
2.Search for Desktop
3.This should bring you to HKEY_CLASSES_ROOTDirectory
4.Expand this section
5.Under Shell is Find
6.Delete Find
7.Go down a small in the Registry to Folder
8.Expand this section and remove Explore and Open
Now when you right click on the Start button, nothing should happen.
You can delete only those items that you need.
Note: – On Microsoft keyboards, this also disables the Window-E (for Explorer) and Window-F
(for Find) keys.
See the section on Installation in the RESKIT to see how to do this automatically during an bed in.

Disabling My Computer

In areas where you are trying to restrict what users can do on the computer, it might be beneficial to disable the ability to click on My Computer and have access to the drives, control panel etc.
To disable this:
1.Open RegEdit
2.Search for 20D04FE0-3AEA-1069-A2D8-08002B30309D
3.This should bring you to the HKEY_CLASSES_ROOTCLSID section
4.Delete the entire section.
Now when you click on My Computer, nothing will happen.
You might want to export this section to a Registry file before deleting it just in case you want to enable it again. Or you can rename it to 20D0HideMyComputer4FE0-3AEA-1069-A2D8-08002B30309D. You can also hide all the Desktop Icons, see Change/Add restrictions.

Opening Explorer from My Computer

By defaulting, when you click on the My Computer icon, you get a show of all your drives, the Control Panel etc. If you want to have this open the Explorer:
1. Open RegEdit
2. Go to
HKEY_CLASSES_ROOTCLSID {20D04FE0-3AEA-1069-A2D8-08002B30309D} Shell
3 . Add a new Key named “Open” if it does not exists by right clicking “Shell” and selecting new.
4. . Add a new Key named “Command” by right clicking “Open” and selecting new
5. Set the (Defaulting) value for the Command Key to “Explorer.exe” or “C:WindowsExplorer.exe”

Recycle Bin Edits

Fooling with the recycle bin. Why not make the icon context menu act like other icon context menus.
Add rename to the menu:
HKEY_CLASSES_ROOTCLSID {645FF040-5081-101B-9F08-00AA002F954E} ShellFolder
“Attributes”=hex:50,01,00,20
Add delete to the menu:
HKEY_CLASSES_ROOTCLSID {645FF040-5081-101B-9F08-00AA002F954E} ShellFolder
“Attributes”=hex:60,01,00,20
Add rename and delete to the menu:
HKEY_CLASSES_ROOTCLSID {645FF040-5081-101B-9F08-00AA002F954E} ShellFolder
“Attributes”=hex:70,01,00,20
Restore the recycle bin to Windows defaults including un-deleting the icon after deletion:
Restore the icon.
HKEY_LOCAL_MACHINESOFTWARE Microsoft Windows CurrentVersion explorer
DesktopNameSpace{645FF040-5081-101B-9F08-00AA002F954E}
@=”Recycle Bin”
Reset Windows defaults.
HKEY_CLASSES_ROOTCLSID {645FF040-5081-101B-9F08-00AA002F954E} ShellFolder
“Attributes”=hex:40,01,00,20
Other edits to the recycle bin icon:
HKEY_CLASSES_ROOTCLSID {645FF040-5081-101B-9F08-00AA002F954E} ShellFolder
“Attributes”=hex:40,01,01,20 … standard shortcut arrow
“Attributes”=hex:40,01,02,20 … a different shortcut arrow
“Attributes”=hex:40,01,04,20 … and still another shortcut arrow
“Attributes”=hex:40,01,08,20 … make it look disabled (like it’s been cut)

For Windows XP and 2000 also edit HKEY_CURRENT_USER Software Microsoft Windows CurrentVersion Explorer CLSID {645FF040-5081-101B-9F08-00AA002F954E}
For Windows ME also edit HKEY_CURRENT_USER Software Classes CLSID {645FF040-5081-101B-9F08-00AA002F954E}

Setting the Minimum Password Length

1.Open RegEdit
2.Go to
HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows CurrentVersion Policies Network
3. Now, choose the Edit/New/Binary value command and call the new value MinPwdLen. Press Enter twice and Assign it a value equal to your minimum password length.

Adddelete programs to run each time Windows starts

You can start or stop programs from executing at boot up by adding or deleting them to/from the run Keys in the Registry. Windows loads programs to start in the following order; Program listed in the Local Machine hive, then the Current User hive, then theWin.ini Run= and Load = lines. then finally programs in your Start Up folder.

To add or remove programs in the Registry
1.Open RegEdit
2.Go to the desired Key
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows CurrentVersion Run
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows CurrentVersion RunServices
HKEY_CURRENT_USERSOFTWAREMicrosoftWindows CurrentVersion Run
HKEY_CURRENT_USERSOFTWAREMicrosoftWindows CurrentVersion RunServices
3. Add a new String Value and name it anything you like
4. For the value data, enter the path and executable for the program you want to run.

By adding the value to the HKEY_CURRENT_USER hive instead allows the program to start only when that user is logged on.

If you add the value to the RunOnce key the program will run once and be removed from the key by Windows.

Removing the Shortcut Icon Arrows

1.Open RegEdit
2.Open the Key HKEY_CLASSES_ROOT
3.Open the Key LNKFILE
4.Delete the value IsShortcut
5.Open the next Key PIFFILE
6.Delete the value IsShortcut
7.Restart the Windows

Turn Off Window Animation

You can shut off the animation showed when you lessen and maximize Windows.
1. Open RegEdit
2. Go to HKEY_CURRENT_USERControl panel Desktop WindowMetrics
3. Make a new string value “MinAnimate”.
4. Set the value data of 0 for Off or 1 for On

Changing your Modem’s Initialization String

1.Open RegEdit
2.Go to
HKEY_LOCAL_MACHINESystemCurrentControlSet Services Class Modem 000 Init
3.Change the settings to the new values

Increasing the Modem Timeout

If your modem it is timing out during file transfers or loading Web Pages, you might try increasing the timeout period. To change the Time Out::
1.Open RegEdit
2.Go to HKEY_LOCAL_MACHINESystemCurrentControlSet Services Class Modem XXXX Settings Where XXXX is the number of your modem
3. In the right panel and dual click on Inactivity Timeout
4.The number of minutes for a timeout should be entered between the brackets.
5.For example, a setting could have S19= to set it to 10 minutes.

Removing Programs from Control Panel’s Add/Remove Programs Section

If you uninstalled a program by deleting the files, it may still show up in the Add/Remove programs list in the Control Panel.
In order to remove it from the list.
1.Open RegEdit
2.Go to HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows CurrentVersion Uninstall
3.Delete any programs here.
If you have a conundrum locating the desired program open each key and view the DisplayName value

The Fix for Grayed Out Boxes

The File Types tab in Explorer’s View / Options menu lets you edit most of your file types, but certain settings cannot be changed. The defaulting action for a batch file, for instance, runs the batch file instead of opening it via Notepad or Wordpad. Thus, when you dual-click on AUTOEXEC.BAT, a DOS window opens, and the file executes. If you want to change this defaulting action and edit a batch file when you dual-click on it, but, the File Types tab does not let you do so; the Set Defaulting button for the file type called MS-DOS Batch File is always grayed out.

The button is grayed out because HKEY_CLASSES_ROOT’s batfile key contains an EditFlag value entry. Such entries are used throughout the Registry to prevent novice users from changing certain system settings. The binary data in batfile’s EditFlag reads d0 04 00 00. If you change this value to 00 00 00 00, you can then change any of the batch file settings. Do not, but, indiscriminately zero out EditFlag; if you do so in a system ProgID such as Drive or AudioCD, it completely disappears from the File Types list. For ProgIDs that are linked to extensions, set all EditFlags to 00 00 00 00. For system ProgIDs, replace EditFlag data with 02 00 00 00.

If you wish to have access to some buttons while leaving others grayed out, you must know the function of each EditFlag bit. The last two bytes of data are always zero, but most bits within the first two bytes have a specific effect:

Byte 1, bit 1: Removes the file type from the master list in the File Types tab (select View / Options under Explorer) if it has an associated extension.

Byte 1, bit 2: Adds the file type to the File Types tab if it does not have an associated extension.

Byte 1, bit 3: Identifies a type with no associated extension.

Byte 1, bit 4: Grays out the Edit button in the File Types tab.

Byte 1, bit 5: Grays out the Remove button in the File Types tab.

Byte 1, bit 6: Grays out the New button in the Edit File Type dialog (select the Edit button in the File Types tab).

Byte 1, bit 7: Grays out the Edit button in the Edit File Type dialog.

Byte 1, bit 8: Grays out the Remove button in the Edit File Type dialog.

Byte 2, bit 1: Prevents you from control a file type’s description in the Edit File Type dialog.

Byte 2, bit 2: Grays out the Change Icon button in the Edit File Type dialog.

Byte 2, bit 3: Grays out the SetDefault button in the Edit File Type dialog.

Byte 2, bit 4: Prevents you from control an action’s description in the Edit Action dialog (select the Edit button in the Edit File Type dialog).

Byte 2, bit 5: Prevents you from control the command line in the Edit Action dialog.

Byte 2, bit 6: Prevents you from setting DDE (Dynamic Data Exchange) fields in the Edit Action dialog.

The EditFlags value for Drive, for instance, is d2 01 00 00 in Hex (1101 0010 0000 0001 in binary). Bits 2, 5, 7, and 8 are on in byte 1, and bit 1 is on in byte 2. The EditFlag for batfile is d0 04 00 00 in Hex or 1101 0000 0000 0100 in binary. In this case, bits 5, 7, and 8 are on in byte 1, and bit 3 is on in byte 2.

Bits 4, 5, and 6 of byte 2 apply only to actions that are protected. EditFlags with action keys (such as HKEY_CLASSES_ROOTbatfileshellopen) determine protection. If byte 1, bit 1 of such an EditFlag is 0 (or if there is no EditFlag), then the action is protected. If byte 1, bit 1 is 1, then the action is unprotected.

Protection on system files

To enable protection on system files such as the KnownDLLs list, add the following value;

1. Open RegEdit
2. HKEY_LOCAL_MACHINESystemCurrentControlSet Control SessionManager
3. Make the a Dword value and name it “ProtectionMode “
4. Set the Value to1

Source: http://danderalone.blogspot.com/2010/03/trik-and-tips-menu-regedit.html

Related Posts:

Linux Administrator Needed – Atlanta, GA

JOB TITLE:       Linux System Administrator

Location:             Alpharetta, GA – 30328

Duration:             9 Months

 

Skills:

Backup, Filesystems, I/O, IP (Internet Protocol), Kernel, LAN (Local Area Network), LDAP, Linux, LinuxKernel, Maintenance, Networking, On call , In commission Systems, PerformanceTools, Perl, Scripting, SCSI, Support, Unix

 

Additional Skills:

Extensive Redhat Linux knowledge Basic PostgresSQL Database knowledge Basic Prediction Database knowledge Understanding Networking concepts

 

Skill Synopsis

Skill: Operational Unix/Linux Systems administration

Minimum Years Experience: 5-7 years

Skill: System Level programming in Shell/Perl

Minimum Years Experience: 4-6 years

Skill: Fundamental networking skills and basic network troubleshooting skills

Minimum Years Experience: 1-3 years

Skill: Advanced knowledge of OS troubleshooting, kernel tweaking and system automation

Minimum Years Experience: 5-7 years

Skill: Experience in environments with more than 1000 managed Unix/Linux servers

Minimum Years Experience: 2-4 years

Other: Must be able to provide 24/7 support for infrastructure

 

Responsibilities

1. The perfect process of infrastructure design and operations, including systems analysis and maintenance, security, network operations and support, and systems configuration.

2. Conducts end-to-end plot design, reins production, and implements and monitors systems.

3. Tune in commission system and hardware for optimal performance.

4. Develop scripts for automating routine tasks.

5. Watch servers and applications for errors and performance problems.

6. Develops long-term strategy for historical data retention and archival plot for storage needs; defines data retention, backup, and recovery.

7. Develops, packages and automates distribution of installation executable software and related software on target machines

8. Monitors and resolves any problems that may arise from the distribution or installation

9. Maintains data dictionaries and ensures integration of systems through data design.

10. Follow distress and change management ticketing processes and ensure all changes and issues are well documented

 

Thanks & Warm Regards,

Lalit Mohan Dudeja

 

Direct: 678-919-7345 | 509-987-5627| Fax: 770-300-0005 |Email: Lalit@primussoft.com  

3061 Peachtree Industrial Blvd, Suite 110 |Duluth, GA 30097 | Website: www.primussoft.com

View Lalit Mohan Dudeja’s profile at Linkedin

“Primus Software Corp.. excellent wishes your privacy. We will not share your resume or contact details with any of our clients without your consent.

If you do not wish to be contacted by us for any suitable job opportunities, please answer to this e-mail with “Remove Me from Your Database” in the subject line.”

 

 

 

 

Source: http://primussoft.blogspot.com/2010/03/linux-administrator-needed-atlanta-ga.html

Related Posts:


Privacy Policy | Contact / DMCA