Showing posts with label make. Show all posts
Showing posts with label make. Show all posts

Thursday, August 25, 2016

IObit Driver Booster V2 4 Make Your Drivers Up To Date

IObit Driver Booster V2 4 Make Your Drivers Up To Date



IObit Driver Booster
Driver Booster is a lightweight software application whose purpose is to help you manage outdated drivers for all your devices. It protects your PC from hardware failures, conflicts, and resolves system crash problems caused by outdated drivers. All old drivers can be detected by simply clicking on the “Scan” button, and then you just need to click “Update All” button to refresh these outdated drivers. Compared with other driver updating tools, IObit Driver Booster can improve your PC performance for gaming as well.

- Features
• Automatically Identify Outdated Drivers
 Download and Update Outdated Drivers with One Click
 Unlock Driver Update Speed Limit
 Specialized Driver Tweaking for Better Gaming Experience
 Support More Comprehensive Hardware Devices
 Enjoy Priority to Update Outdated Drivers Promptly
 Backup Drivers for Safe Restore
 Enhance Hardware Functionality for Better Performance
 Automatically Update to the Latest Version

Download Trial

Medicine (K-E-Y)




Get

Read more »

Thursday, August 18, 2016

Make a Calculator with your Notepad

Make a Calculator with your Notepad


Steps :

  1. Open Notepad
  2. Copy below code
  3. then save as Calculator.bat (you may choose another name but extension should be .bat)
Now Its done . Your calculator is ready .
Code [Just Copy & Paste,If you change the coding ,it may not work] :- 


@echo off
color 0A
title CALCULATOR V1.8 by Nilotpol
:loop
cls
echo.
echo Calculator V1.8.0.1(Visit tech2help.tk for more tools)
echo ———————————————–
echo * = MULTIPLY
echo + = ADD
echo – = SUBTRACT
echo 2 = SQUARED
echo / = DIVIDE
echo After an equation,type CLEAR to clear the screen of your equations, type KEEP to leave them there, or type EXIT to leave.
:noclear
set /p UDefine=
set /a UDefine=%UDefine%
echo.
echo =
echo.
echo %UDefine%
echo KEEP, CLEAR, OR EXIT?
set /p clearexitkeep=
if %clearexitkeep%==CLEAR goto loop
if %clearexitkeep%==KEEP echo. && goto noclear
if %clearexitkeep%==EXIT (exit)
:misspell
echo.
echo ———————————————–
echo You misspelled your command. Please try again (make sure you are typing in all caps LIKE THIS).
echo Commands:
echo CLEAR Clear all previous equations and continue calculating.
echo KEEP Keep all previous equations and continue calculating.
echo EXIT Leave your calculating session
echo Enter in a command now.
set /p clearexitkeep=
if %clearexitkeep%==CLEAR goto loop
if %clearexitkeep%==EXIT (exit)
if %clearexitkeep%==KEEP goto noclear
goto misspell








Visit regularly to gets more tricks . 

Get

Read more »