<!-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-->
Tech News is a blog created by Wasim Akhtar to deliver Technical news with the latest and greatest in the world of technology. We provide content in the form of articles, videos, and product reviews.
Ramdanb CountDown
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.
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.
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
Run cmd command from java
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
-- Wasim Akhtar
Want to google search by your google talk
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
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
I'd like to add you to my professional network on LinkedIn.
© 2011, LinkedIn Corporation Want To Download Torrent File By Using Google
Simple way...just type:
*ur file name* filetype:torrent -- Avast! Free Antivirus 6.0.1203avast! 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:
-- 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: 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
[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 [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 NUM LOCK+PLUS SIGN....... on numeric keypad (+) Display the contents of NUM LOCK+MINUS SIGN....... on numeric keypad (-) Collapse the selected LEFT ARROW...... Collapse current selection if it's expanded, or select RIGHT ARROW....... Display current selection if it's collapsed, or
devmgmt.msc = Device Manager
type in u're adress "google", then press [Right CTRL] and [Enter]
Copy. CTRL+C Use these keyboard shortcuts for dialog boxes: To Press If you have a Microsoft Natural Keyboard, or any other compatible
accessibility keyboard shortcuts: Switch FilterKeys on and off. Right SHIFT for eight seconds shortcuts you can use with Windows Explorer:
-- 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 NOTE: You may also need to grab the vertical dotted lines beside the -- Google Crack Search
just type crack: app name
example: crack: flashget 1.6a
-- 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 - 2. On the Advanced tab, click the Settings button in the "Startup And 3. In the "Startup And Recovery" dialog box, select the Edit button in 4. The Boot.ini file will open in Notepad; locate the line that ends 5. Position your cursor to the right after the parameter, press the 6. Save the Boot.ini file, and close Notepad. 7. Click Cancel to close both the "Startup And Recovery" dialog box and 8. Restart the computer to see the effect. Once the computer restarts you will notice that the Windows Splash To renable the splash screen, follow the same procedure but remove the -- 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 Normally you should select yes. Conversion from fat/fat32 to ntfs is non-destructive, your data on the Be aware that converting to ntfs will make that partition of your -- 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. "Microsoft Windows XP Professional /fastdetect" 4.Take the checkmark out of the box for "Time to display a list of *If you wish to edit the boot.ini file manually, click on the button "EDIT" -- 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. "Microsoft Windows XP Professional /fastdetect" 4.Take the checkmark out of the box for "Time to display a list of *If you wish to edit the boot.ini file manually, click on the button "EDIT" -- 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 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 --
Subscribe to:
Posts (Atom)
Download Windows 11 Insider Preview Build Offline ISO FilesUPDATE: Offline ISO files are available for Windows 11 Insider Preview build 27774 (Canary Channel), 26100.1150 (Dev Channel), 22621 (Beta C...
|