Tuesday, March 25, 2014

Tips to recover scratched CD/DVD



1. Spread a cloth on a flat surface and place the CD on it.
2. Then, hold the disc with one hand, use the other to wipe the polish into the affected area with a soft cloth.
3. Wait for it to dry and buff using short, brisk strokes along the scratch, not across it.
4. A cloth sold to wipe spectacles or camera lenses will work super m8′s.
5. When you can no longersee the scratch,, wash the disc with water and let it dry before playing. Intersting isnt it? Try it right now
I have used toothpaste with good effects before Ive also used car paint cutting compound on deeper scratches. It does leave lots of smaller scratches (as it is a cutting compound after all) but it will remove the worst scratches in most cases.
ya u r gng to b surely befinited by this Operation
* Fingermarks/prints cause 43% of disc problems!
* General wear & tear causes 25% of disc problems!
* Player-related issues cause 15% of disc problems!
* Remaining Others

Close all open programs with one click : Close All

You are in front of your office PC having 20-30 windows open and everything messed up… You are called for an emergency… Urghh…What to do now?? Use Close All.
CloseAll
This tiny tool helps you to close all running applications with one click. It does not use system resources because it only flashes a “close” signal to all open windows on the desktop and then ceases. Just place a shortcut to the tool in the Start Menu, Quick Launch or elsewhere

Change the color in the command prompt

  • open  notepad
  • copy and paste the code given below
@ echo off
echo:
echo ……………………………
echo Press 1 for green, 2 for red or 3 for blue, or 4 for exit
echo ……………………………
set /p m=Type 1, 2, or 3, or 4, and press enter:
echo:
if %m%==1 goto 1
if %m%==2 goto 2
if %m%==3 goto 3
if %m%==4 goto 4
:1
color 0a
echo This is the green
goto 4
:2
color 04
echo This is the red
goto 4
:3
color 06
echo This is the blue
goto 4
:4
Pause
goto end
:end
  • save the file by the name yo wish followed by the extension "color.bat"
  • double click,command prompt window will appear type respective number to change the colour

How to make CMD look like matrix

This is a simple trick to make command prompt look like matrix

Open notepad, and paste this code into it: 


@echo off

cls

color 02

ping localhost -n 4 >nul

goto matrix

 isplayText

set /a dispvar =1

set /a len +=1

 isplayLoop

CALL SET str=%%string:~0,

%dispvar%%%

cls

echo %str%

ping localhost -n 1 >nul

set /a dispvar +=1

if ‘%dispvar%’==’%len%’ goto

enddisplay

goto DisplayLoop

:enddisplay

exit /b

:matrix

setlocal enabledelayedexpansion

for /l %%A in (1,1,39) do (

set /a rnd=!random!%%5+1

if !rnd!==1 (

set /a rnd2=!random!%%26+1

set num=1

for %%A in (I) do (

if !rnd2!==!num! (

set add=%%A

)

set /a num+=1

)

) else set /a add=!rnd!%%2

set var=!var! !add!

)

echo !var!

call :matrix




Now save it as for example matrix.bat, you can call it whatever you want, if you just remember to save it with the .bat extension.

UseFul Links