Microsoft Office

Tutorials and guide of all courses of Microsoft office suite Including Word, Excel, Powerpoint, Access etc.

Microsoft Word 2007 (Quick Guide)

Microsoft Word 2007 is a word processing software package developed by Microsoft Corporation a family of office suites and productivity software for Windows. You can use it to type letters, reports, and other documents. It gives you the ability to use your computer for desktop publ...

New Master Shortcuts of Windows XP/7/8

Windows 7 adds loads of great shortcuts for switching between apps, moving windows around your screen, moving them to another monitor altogether, and much more. Here's a quick-reference master list of the best new Windows 7 shortcuts.

Alt Code/ Alt Key Codes Table

Welcome to Alt Shortcuts, The Alt Code resource! If you are already familiar with using alt codes, simply select the alt code category you need...

Making USB Bootable Using Command Prompt Easy steps

Making USB(Pendrive) Bootable Easy and Best Technique. See all steps 1-10 steps.

Showing posts with label Notepad Trick. Show all posts
Showing posts with label Notepad Trick. Show all posts

Saturday, 15 November 2014

Trick to Pops-out CD from CD-Drive...!!


  • In this tutorial , you can make any PC/Laptop continuously popping out the CD-Drive, by just clicking a Icon...!
  • If the victim PC is having more then one drive , this prank will pop-out all of them.

  • First open Notepad..and copy/paste this code..! 

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop


  • Now save this as "application.vbs ".
  • Here, you can specify any name in place of 'application'.

Thursday, 17 July 2014

Make CMD look like matrix

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.