Ramdanb CountDown

<!-My countdown widget - HTML code - mycountdown.org --><div align="center" style="margin:15px 0px 0px 0px"><noscript><div align="center" style="width:140px;border:1px solid #ccc;background:#fff ;color: #fff ;font-weight:bold;"><a style="text-decoration:none;color:#000 ;" href="http://mycountdown.org/Religious/Ramadan/">Ramadan Countdown</a></div></noscript><script type="text/javascript" src="http://mycountdown.org/countdown.php?group=Religious&countdown=Ramadan&widget_number=3015&cp3_Hex=FFB200&cp2_Hex=040244&cp1_Hex=F9F9FF&fwdt=150&img=1&lab=1"></script></div><!-end of code-->

Verify in DOS

Verify
Most PC's do not have ECC memory (Error Correction Code) or memory with parity so the verify command is important. What it does is verify that the data in memory is the same as what is written to disk. However it does not check that the data in memory is the same as what is read from disk. So it does not insure that the disk is read correctly but that it is written correctly. This affords some additional security and will also prevent writes to bad sectors.

Verify is used precisely the same way as break except that it cannot be used in config.sys.

Tip

 

Use VERIFY ON as the first command in autoexec.bat so write verification is enabled as early as possible each time you boot.

 

Use of Break in DOS

Break


DOS has a feature called extended CTRL+C checking. The break command turns this feature on or off. When break is off (the default), DOS checks for CTRL+C only while it reads from the keyboard or writes to the screen or a printer. When break is on, CTRL+C checking is extended to other functions, such as disk read and write operations, which enables us to press CTRL+C to stop a program or an activity (such as file sorting).

As you might guess, break should always be set to on so you can break out of a program if desired. This is a vital function when working with batch files.

Break can be set to on in config.sys with BREAK=ON or Break can be set to on in any batch file or at the prompt with BREAK ON.
BREAK alone (in a batch file or at the prompt) will tell you if break is on or off.

Tips

 

Use BREAK=ON in config.sys so extended CTRL+C checking is enabled as early as possible each time you boot.

 

Power ISO 4.8

PowerISO is very useful things to open your cd images you don’t need mount your image in like wise demon tool just open your cd image and use it you can extract it.

 

 

Download by Torrent

Driver Genius PRO 10.0.0.712

Discription

 

Driver Genius Professional is a professional Driver management tool features both driver management and hardware diagnostics. driver Genius provides such practical functions as driver backup, restoration, update and removal for computer users. If you often reinstall your operating system, you may not forget such painful experiences of searching all around for all kinds of drivers. If unfortunately you have lost your Driver CD, the search will be more troublesome and time-consuming. Now with the Driver backup function of Driver Genius, you can backup all drivers in your computer before reinstalling, and restore them with the Driver restoration function after system reinstallation has been completed. This will dramatically save your time for Driver installation during the system installation procedure, and you will no longer worry about where to find a Driver. Besides, you can create an automatic installation package for all drivers in your system by Driver Genius.

 

Feature

 

Drivers Backup: Driver Genius can detect and quickly backup drivers installed in system. It can compress the backup drivers to a zip file, self extracting file or an independent executable auto installer program.

Drivers Restore: You need not install drivers one by one after reinstalling Operating System. Just need only one click you can install all your backup drivers automatically. You can also install drivers in command mode silently. If you need install drivers on multiple PC with the same hardware configuration, Driver Genius can save your much time to reinstall system.

Drivers Update: Are you still using an old version or beta version drivers? Those faulty drivers always cause compatibility problem. They are the biggest hidden trouble that cause system crash. A suitable drivers can upgrade 50% or even more system performance . There are more than 30,000 devices drivers information in Driver Genius Database that including Motherboard, Sound card, Video card, Network card, Modem, Mouse, Keyboard, Scanner, Printer, Digital device etc. All you need to do is one click, Driver Genius will find out all drivers that need updating. All drivers we offer are official version or WHQL version, you can use them without any compatibility worries.

Drivers Uninstall: There could be some leftover drivers in your system because of changing hardware or updating drivers. Driver Genius can find out these useless drivers quickly and uninstall them.

LiveUpdate: We update large numbers of drivers on our website. You can synchronize your database with our download server to get the newest version drivers by Liveupdate program.

 

 

Download by Torrent

Create Manifest File for Your Jar File

Open notepad and Save it as Manifest.mf

And copy it and paste int your File change <Your Class name in Main function Exists> to your  main class name.<enter> is your keyboard Enter key.

 

 

 

Manifest-Version: 1.0

Created-By: 1.7.0-ea (Sun Microsystems Inc.)

Main-Class: <Your Class name in Main function Exists>

<enter>

<enter>

<enter>

 

 

 

Example:

 

                                                Manifest.mf

Manifest-Version: 1.0

Created-By: 1.7.0-ea (Sun Microsystems Inc.)

Main-Class: Login

<enter>

<enter>

<enter>

 

 

 

 

 

Want to Creat Executable Jar file for your Application

Syntax :
                                jar cfm <FileName>.jar <ManifestFileName>.extension <filename.extension> <filename.extension> <filename.extension>……….






Here jar is command to create jar file.


<FileName>.jar is your jar file name.


<ManifestFileName>.extension is your ManifestFile Name.


<filename.extension> is whose filename to want to add in your jar file.


Example:
C:\jar cfm Login.jar Manifest.mf Login.class SplaceScreen.class *.class




If you have any query about that then contact me at wasim.akh2@gmail.com





Run cmd command from java

import java.io.*;

import java.util.*;

public class CmdVerJavaDemo{

BufferedReader x=new BufferedReader(new InputStreamReader(System.in));

Runtime myrun;

Process output;

public static void main(String args[])throws IOException

{

(new CmdVerJavaDemo()).runCmdCommand("dir *.*");

}

public void runCmdCommand(String cmd)throws IOException

{

System.out.println("Your Cmd Command is "+cmd);

myrun=Runtime.getRuntime();

output=myrun.exec("cmd /c "+cmd);

String outStr="";

String fDate="";

String fName="";

x=new BufferedReader(new
InputStreamReader(output.getInputStream()));

for(int i=0;i<=100 && outStr!=null;i++)

{

outStr=x.readLine();

if(outStr==null)

{

System.out.println("File Data has null
.");

}

else

{

System.out.println(outStr);

StringTokenizer strToken=new
StringTokenizer(outStr);

int countT=strToken.countTokens();

if(i>=6)

{


fDate=strToken.nextToken();


fName=strToken.nextToken();


fName=strToken.nextToken();


fName=strToken.nextToken();


fName=strToken.nextToken();


fDate=fDate.replaceAll("/","-");


System.out.println("File Name :"+fName);


System.out.println("File Date :"+fDate);


output=myrun.exec("cmd /c md backup");


output=myrun.exec("cmd /c copy .\\*.* .\\backup");


output=myrun.exec("cmd /c md "+fDate);

File
fileName=new File(fName);


if((fileName.isDirectory()))


System.out.println("File Name :"+fName+" is Directory");

else


{


System.out.println("File Name :"+fName+" is File");


output=myrun.exec("cmd /c copy .\\"+fName+" .\\"+fDate);


}

}

}

}

}

}

Subscribe Sharingbywasim by sms free

If you want to get update of Sharing by Wasim Akhtar by Free sms then send from your mobile ON Sharingbywasim to +919870807070

--  Wasim Akhtar

Want to google search by your google talk

Want to google search by your google talk then  Send a chat invitation to guru@googlelabs.com.

Google Talk Guru is an experimental service that allows people to get information like sports results, weather forecasts, definitions etc via chat. It works on many popular chat applications that support Google Talk.

To start using Google Talk Guru:

1. Sign into a chat client that supports Google Talk 
2. Send a chat invitation to guru@googlelabs.com or click the "Invite myself to chat with Guru" link below. 
3. Find guru in your contact list and send chat queries to guru using the examples below:

Sport scores: score arsenal
Weather: weather Nairobi
Calculate: 123 * 45
Currency: 120 KES to USD
Definition: define laptop
Translation: translate earth to French
Web result: web Mount Kenya
Help: help translate

--  Wasim Akhtar

Make a own folder locker by command prompt

Make a own folder locker by command prompt
just copy the code and save it in any .bat file
find "if NOT %pass%== wasim" and change wasim to any thing you like to
password.
save it and run it create a folder private again run it it prompt to
lock or not folder press y your private folder is locked and hidden
to unlock again run it enter your password yours Private folder keep
your private things in private folder .

------------------------------------From
Here----------------------------------
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== wasim goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
------------------------------------End
Here----------------------------------

--
Wasim Akhtar

Invitation to connect on LinkedIn

LinkedIn

I'd like to add you to my professional network on LinkedIn.

- Wasim

Wasim Akhtar
Student at Indira Gandhi National Open University
Bettiah Area, India

Confirm that you know Wasim

© 2011, LinkedIn Corporation

Want To Download Torrent File By Using Google

Simple way...just type:

*ur file name* filetype:torrent
You must not write ( * ) when you search....
Eksample:
ANTIVIRUS KASPERSKY filetype:torrent

--
Wasim Akhtar

Avast! Free Antivirus 6.0.1203

avast! Free Antivirus represents the best free antivirus protection currently available on the market. This edition is FREE OF CHARGE for non-commercial & home use. Its features include:

  • Anti-spyware built-in
  • Web Shield
  • Anti-rootkit built-in
  • Automatic updates
  • Strong self-protection
  • Virus Chest
  • Antivirus kernel
  • System integration
  • Simple User Interface
  • Integrated Virus Cleaner
  • Resident protection
  • Support for 64-bit Windows
  • P2P and IM Shields
  • Internationalization
  • Network Shield
Download Here
--  Wasim Akhtar

Best keyboard shortcut

Getting used to using your keyboard exclusively and leaving your
mouse behind will make you much more efficient at performing any task on
any Windows system. I use the following keyboard shortcuts every day:

Windows key + R = Run menu

This is usually followed by:
cmd = Command Prompt
iexplore + "web address" = Internet Explorer
compmgmt.msc = Computer Management
dhcpmgmt.msc = DHCP Management
dnsmgmt.msc = DNS Management
services.msc = Services
eventvwr = Event Viewer
dsa.msc = Active Directory Users and Computers
dssite.msc = Active Directory Sites and Services
Windows key + E = Explorer

ALT + Tab = Switch between windows

ALT, Space, X = Maximize window

CTRL + Shift + Esc = Task Manager

Windows key + Break = System properties

Windows key + F = Search

Windows key + D = Hide/Display all windows

CTRL + C = copy

CTRL + X = cut

CTRL + V = paste

Also don't forget about the "Right-click" key next to the right Windows
key on your keyboard. Using the arrows and that key can get just about
anything done once you've opened up any program.


Keyboard Shortcuts

[Alt] and [Esc] Switch between running applications

[Alt] and letter Select menu item by underlined letter

[Ctrl] and [Esc] Open Program Menu

[Ctrl] and [F4] Close active document or group windows (does not work
with some applications)

[Alt] and [F4] Quit active application or close current window

[Alt] and [-] Open Control menu for active document

Ctrl] Lft., Rt. arrow Move cursor forward or back one word

Ctrl] Up, Down arrow Move cursor forward or back one paragraph

[F1] Open Help for active application

Windows+M Minimize all open windows

Shift+Windows+M Undo minimize all open windows

Windows+F1 Open Windows Help

Windows+Tab Cycle through the Taskbar buttons

Windows+Break Open the System Properties dialog box

acessability shortcuts

Right SHIFT for eight seconds........ Switch FilterKeys on and off.

Left ALT +left SHIFT +PRINT SCREEN....... Switch High Contrast on and off.

Left ALT +left SHIFT +NUM LOCK....... Switch MouseKeys on and off.

SHIFT....... five times Switch StickyKeys on and off.

NUM LOCK...... for five seconds Switch ToggleKeys on and off.

explorer shortcuts

END....... Display the bottom of the active window.

HOME....... Display the top of the active window.

NUM LOCK+ASTERISK....... on numeric keypad (*) Display all subfolders
under the selected folder.

NUM LOCK+PLUS SIGN....... on numeric keypad (+) Display the contents of
the selected folder.

NUM LOCK+MINUS SIGN....... on numeric keypad (-) Collapse the selected
folder.

LEFT ARROW...... Collapse current selection if it's expanded, or select
parent folder.

RIGHT ARROW....... Display current selection if it's collapsed, or
select first subfolder.


Type the following commands in your Run Box (Windows Key + R) or Start Run

devmgmt.msc = Device Manager
msinfo32 = System Information
cleanmgr = Disk Cleanup
ntbackup = Backup or Restore Wizard (Windows Backup Utility)
mmc = Microsoft Management Console
excel = Microsoft Excel (If Installed)
msaccess = Microsoft Access (If Installed)
powerpnt = Microsoft PowerPoint (If Installed)
winword = Microsoft Word (If Installed)
frontpg = Microsoft FrontPage (If Installed)
notepad = Notepad
wordpad = WordPad
calc = Calculator
msmsgs = Windows Messenger
mspaint = Microsoft Paint
wmplayer = Windows Media Player
rstrui = System Restore
netscp6 = Netscape 6.x
netscp = Netscape 7.x
netscape = Netscape 4.x
waol = America Online
control = Opens the Control Panel
control printers = Opens the Printers Dialog


internetbrowser

type in u're adress "google", then press [Right CTRL] and [Enter]
add www. and .com to word and go to it


For Windows XP:

Copy. CTRL+C
Cut. CTRL+X
Paste. CTRL+V
Undo. CTRL+Z
Delete. DELETE
Delete selected item permanently without placing the item in the Recycle
Bin. SHIFT+DELETE
Copy selected item. CTRL while dragging an item
Create shortcut to selected item. CTRL+SHIFT while dragging an item
Rename selected item. F2
Move the insertion point to the beginning of the next word. CTRL+RIGHT ARROW
Move the insertion point to the beginning of the previous word.
CTRL+LEFT ARROW
Move the insertion point to the beginning of the next paragraph.
CTRL+DOWN ARROW
Move the insertion point to the beginning of the previous paragraph.
CTRL+UP ARROW
Highlight a block of text. CTRL+SHIFT with any of the arrow keys
Select more than one item in a window or on the desktop, or select text
within a document. SHIFT with any of the arrow keys
Select all. CTRL+A
Search for a file or folder. F3
View properties for the selected item. ALT+ENTER
Close the active item, or quit the active program. ALT+F4
Opens the shortcut menu for the active window. ALT+SPACEBAR
Close the active document in programs that allow you to have multiple
documents open simultaneously. CTRL+F4
Switch between open items. ALT+TAB
Cycle through items in the order they were opened. ALT+ESC
Cycle through screen elements in a window or on the desktop. F6
Display the Address bar list in My Computer or Windows Explorer. F4
Display the shortcut menu for the selected item. SHIFT+F10
Display the System menu for the active window. ALT+SPACEBAR
Display the Start menu. CTRL+ESC
Display the corresponding menu. ALT+Underlined letter in a menu name
Carry out the corresponding command. Underlined letter in a command name
on an open menu
Activate the menu bar in the active program. F10
Open the next menu to the right, or open a submenu. RIGHT ARROW
Open the next menu to the left, or close a submenu. LEFT ARROW
Refresh the active window. F5
View the folder one level up in My Computer or Windows Explorer. BACKSPACE
Cancel the current task. ESC
SHIFT when you insert a CD into the CD-ROM drive Prevent the CD from
automatically playing.

Use these keyboard shortcuts for dialog boxes:

To Press
Move forward through tabs. CTRL+TAB
Move backward through tabs. CTRL+SHIFT+TAB
Move forward through options. TAB
Move backward through options. SHIFT+TAB
Carry out the corresponding command or select the corresponding option.
ALT+Underlined letter
Carry out the command for the active option or button. ENTER
Select or clear the check box if the active option is a check box. SPACEBAR
Select a button if the active option is a group of option buttons. Arrow
keys
Display Help. F1
Display the items in the active list. F4
Open a folder one level up if a folder is selected in the Save As or
Open dialog box. BACKSPACE

If you have a Microsoft Natural Keyboard, or any other compatible
keyboard that includes the Windows logo key and the Application key ,
you can use these keyboard shortcuts:


Display or hide the Start menu. WIN Key
Display the System Properties dialog box. WIN Key+BREAK
Show the desktop. WIN Key+D
Minimize all windows. WIN Key+M
Restores minimized windows. WIN Key+Shift+M
Open My Computer. WIN Key+E
Search for a file or folder. WIN Key+F
Search for computers. CTRL+WIN Key+F
Display Windows Help. WIN Key+F1
Lock your computer if you are connected to a network domain, or switch
users if you are not connected to a network domain. WIN Key+ L
Open the Run dialog box. WIN Key+R
Open Utility Manager. WIN Key+U

accessibility keyboard shortcuts:

Switch FilterKeys on and off. Right SHIFT for eight seconds
Switch High Contrast on and off. Left ALT+left SHIFT+PRINT SCREEN
Switch MouseKeys on and off. Left ALT +left SHIFT +NUM LOCK
Switch StickyKeys on and off. SHIFT five times
Switch ToggleKeys on and off. NUM LOCK for five seconds
Open Utility Manager. WIN Key+U

shortcuts you can use with Windows Explorer:


Display the bottom of the active window. END
Display the top of the active window. HOME
Display all subfolders under the selected folder. NUM LOCK+ASTERISK on
numeric keypad (*)
Display the contents of the selected folder. NUM LOCK+PLUS SIGN on
numeric keypad (+)
Collapse the selected folder. NUM LOCK+MINUS SIGN on numeric keypad (-)
Collapse current selection if it's expanded, or select parent folder.
LEFT ARROW
Display current selection if it's collapsed, or select first subfolder.
RIGHT ARROW

--
Wasim Akhtar

How To Add A Url Address Bar To The Taskbar

You can add an Internet URL address bar to your Windows XP taskbar.
Doing so will let you type in URLs and launch Web pages without first
launching a browser. It will also let you launch some native Windows XP
applications in much the same way as you would via the Run menu (so you
could type in calc to launch the calculator or mspaint to launch
Microsoft Paint. Here's how you add the address bar:

1. Right-click on the taskbar, select Toolbars, and then click Address.

2. The word Address will appear on your taskbar.

3. Double click it to access it.

4. If that doesn't work, your taskbar is locked. You can unlock it by
right-clicking on the taskbar again and uncheck Lock the Taskbar.

NOTE: You may also need to grab the vertical dotted lines beside the
word Address and drag it to the left to make the Address window appear.

--
Wasim Akhtar

Google Crack Search

just type crack: app name

example: crack: flashget 1.6a


http://www.google.com/search?hl=en&lr=&ie=UTF-8&q=crack%3A+flashget+1.6a

--
Wasim Akhtar

How to Remove WinXP Splash and See Operations

Are you having boot up problems and would like to know what it going on
behind that Windows Loading Logo? To find out, you can disable the
splash screen by making a small change to the Boot.ini file.

Follow these steps (carefully!):

1. Open the "System Properties" dialog box ( Settings - Control Panel -
System)

2. On the Advanced tab, click the Settings button in the "Startup And
Recovery" section.

3. In the "Startup And Recovery" dialog box, select the Edit button in
the "System Startup" section.

4. The Boot.ini file will open in Notepad; locate the line that ends
with the /fastdetect switch.

5. Position your cursor to the right after the parameter, press the
spacebar, and add the /SOS switch.

6. Save the Boot.ini file, and close Notepad.

7. Click Cancel to close both the "Startup And Recovery" dialog box and
the "System Properties" dialog box.

8. Restart the computer to see the effect.

Once the computer restarts you will notice that the Windows Splash
Screen is no longer present. Instead you can observe some of the boot up
operations that Windows XP performs during the startup stage.

To renable the splash screen, follow the same procedure but remove the
"/SOS".

--
Wasim Akhtar

How To Convert File System, fat - fat32 to ntfs

open a dos prompt and give the command

convert d: /fs:ntfs

this command would convert your d: drive to ntfs.

if the system cannot lock the drive, you will be prompted to convert it
during next reboot.

Normally you should select yes.

Conversion from fat/fat32 to ntfs is non-destructive, your data on the
drive will NOT be lost.

Be aware that converting to ntfs will make that partition of your
drive unreadable under dos unless you have ntfs utilites to do so.

--
Wasim Akhtar

How do I remove an extra operating system from boot Menu

If you have more then one operating system installed or wish
to remove an operating system from the boot menu, you can use the
following information.

1.Click on Start, Control Panel, System, Advanced.
2.Under Startup and Recovery, click Settings.
3.Under Default Operating System, choose one of the following:

"Microsoft Windows XP Professional /fastdetect"
-or-
"Microsoft Windows XP Home /fasdetect"
-or-
"Microsoft Windows 2000 Professional /fastdetect"

4.Take the checkmark out of the box for "Time to display a list of
Operating Systems".
5.Click Apply and Ok, and reboot the system.

*If you wish to edit the boot.ini file manually, click on the button "EDIT"

--
Wasim Akhtar

How do I remove an extra operating system from boot Menu

If you have more then one operating system installed or wish
to remove an operating system from the boot menu, you can use the
following information.

1.Click on Start, Control Panel, System, Advanced.
2.Under Startup and Recovery, click Settings.
3.Under Default Operating System, choose one of the following:

"Microsoft Windows XP Professional /fastdetect"
-or-
"Microsoft Windows XP Home /fasdetect"
-or-
"Microsoft Windows 2000 Professional /fastdetect"

4.Take the checkmark out of the box for "Time to display a list of
Operating Systems".
5.Click Apply and Ok, and reboot the system.

*If you wish to edit the boot.ini file manually, click on the button "EDIT"

--
Wasim Akhtar

How Long Has Your System Been Running?

Here's how you verify system uptime:

Click Start | Run and type cmd to open a command prompt.

At the prompt, type systeminfo

Scroll down the list of information to the line that says System Up Time.

This will tell you in days, hours, minutes and seconds how long the
system has been up.

Wasim Akhtar

How To See Hidden Files, Using Dos

At command prompt just type

dir /ah

if the list is too long u can use

dir /ah/p/w

--
Wasim Akhtar

[Changelog] What’s New in Opera 100 and Later Versions

UPDATE: Addition of Opera 109.0 version. In this exclusive changelog article, we are providing information about all versions of Opera web b...