Binod's Blog

Tutorial

How to Reset Windows 7 or Vista Password

by on Jan.07, 2012, under Hacking, Technology, Tips & Tricks, Windows

How to Reset Windows 7 or Vista Password(Helpful when you forgot your Computer’s Password)

If somehow you have forgotten your windows password and are looking for way around to login back into your computer then you won’t have to worry.There are many methods are available for resetting password of your windows 7 or vista.But many of them are lengthy or sophisticated.This is one of the simplest method and you only need a windows installation CD/USB to reset the password.It relies on an unpatched bug in windows operating system.
Follow the Following steps:

Insert windows 7 disk into your CD Rom and Restart your computer.

Press any key to Boot from the CD and then click on Repair your Computer.

Now from the various options select Command Prompt.

Now Command Prompt will be open and create a backup of Sticky keys by typing the following command in the command prompt

copy c:\windows\system32\sethc.exe c:\

Now replace sticky keys with the Command Prompt by typing the following command

copy c:\windows\system32\cmd.exe c:\windows\system32\sethc.exe

Now Restart your computer.
When you get the windows login screen then hit Shift button for 5 times continuously and Administrative Mode of Command Prompt will be open.

Now to reset the password just type the following command in the command prompt

net user binod Password

Remember: binod is the username of the computer and Password is the password. Replace both as you wish.

Login in your computer system with your new Username and Password.

Now every time when you press Shift key for 5 times then command prompt will be open instead of Sticky keys. To get back these Sticky keys repeat first three steps and then in the command prompt window type the following command.

copy c:\sethc.exe c:\windows\system32\sethc.exe

Leave a Comment :, , more...

Assigning Keyboard Shortcuts For Programs In Windows 8

by on Sep.23, 2011, under Technology, Tutorial, Windows

If you are using some of the programs of Windows 8 more frequently and want to assign keyboard shortcuts for those program to access them in an instance of time. Then, follow today’s tutorial on Windows 8 in which I am going to tell you how to assign Keyboard Shortcuts for Programs in Windows 8. The procedure to assign keyboard shortcut in Windows 8 is similar to Windows 7 procedure. Following steps will lead you to this feature:

1) Right click on the program, you want to assign Keyboard Shortcut and select Properties from menu.

1-How-To-Assign-Keyboard-Shortcuts-For-Programs-In-Windows-8
2) After selecting Properties a Dialog box will open. Go to Shortcut Tab.

2-How-To-Assign-Keyboard-Shortcuts-For-Programs-In-Windows-8
3) Then, assign keyboard shortcut for that program in the Shortcut Key Field by pressing that keys from your keyboard and click OK button to save the changes.

3-How-To-Assign-Keyboard-Shortcuts-For-Programs-In-Windows-8

4) Now you can launch that program by using assigned keyboard shortcut.

Leave a Comment : more...

Installing Windows 8 on VMware

by on Sep.23, 2011, under Technology, Tutorial, Windows

1) Download Microsoft Windows 8 Developer Preview.

2) Download VMware virtual Machine and install it on your computer.

3) Once installation finished, Launch VMware Workstation.

4) Go to File Menu and Select New Virtual Machine from opened menu.

5) After selecting New Virtual Machine, a Dialog box will appear. Select Custom Checkbox and click Next button to proceed.

6) In the next step, select I will install the operation system later Checkbox and click Next button to proceed.

7) In the next step, select Microsoft Windows Checkbox and choose Windows 7 from Version drop down menu and click Next button to proceed.

8) In the next steps, specify name, Capacity of about 20 GB and 1 GB RAM for 32 bits Windows 8 or 2 GB RAM for 64 bits Windows 8 to Virtual Machine. Once configuration completes, your new virtual machine is ready to install Windows 8 Developers Preview.

9) Click Power on this Virtual Machine from newly created Virtual Machine.

10) Now to install Windows 8 on this virtual machine, right click on virtual machine and select Removable Devices > CD/DVD (IDE) > Settings to mount Windows 8 ISO image as DVD drive.

11) Then go to Hardware Tab in newly opened Dialog box and select CD/DVD (IDE) from left pane and select Windows 8 Developers Preview ISO file by clicking Browse button from right pane. In the end OK button.

12) Now VMware virtual machine will take about 20-25 minutes to install Windows 8 Developers Preview.

Leave a Comment :, , , , more...

Dual Boot Windows 8 in Windows 7

by on Sep.23, 2011, under Technology, Tutorial, Windows

1) Download Microsoft Windows 8 Developer Preview.

2) Set up a separate new partition of about 20 GB for Windows 8. You can create a new partition in Windows 7 by using Windows Disk Management.

3) Make a Windows 8 bootable USB flash drive or burn Windows 8 ISO file on a DVD. (You can use Microsoft’s Windows 7 USB/DVD Download Tool.)

4) Then plug-in your Windows 8 bootable USB drive in USB port or insert Windows 8 bootable DVD into DVD drive and Reboot your PC.

5) Then go to Boot Menu, select your bootable disk and install Windows 8 into your newly created partition for Windows 8.

6) After installation finished, select the Windows 8 Developer Preview or Windows 7 at Windows Startup which you want to boot.

Leave a Comment :, , , more...

A software to Edit Your Windows 8 in a click !!

by on Sep.22, 2011, under Technology, Tutorial

8 BluePoison Windows is a multi-function tool developed by the team of Italy Windows 8 . With a beautiful interface strictly in Metro-design , lightweight and intuitive, thanks to Windows 8 BluePoison you can:

1) Download the latest build of Windows and Office 15 8, and consult the installation guides.
2) Refer to the build-list, constantly updated, the development of Windows 8 [this function will be reintroduced in the next version].

3)Unlock the Applications folder (BluePoison 1.x and 2.x).
4)Disable Start Menu Immersive (BluePoison 1.x and 2.x).
5)Metro also activate the Snap on screens smaller than those supported (BluePoison 2.x).
6)Unlock the Ribbon interface (UI BluePoison 1.x).
7)Unlock the Modern Task Manager (BluePoison 1.x).
8)Unlock the Modern Reader (BluePoison 1.x).
9)Color theme unlock the car (BluePoison 1.x).
10)Unblock the application Webcams (BluePoison 1.x).
11)Unlock the Immersive Browser (BluePoison 1.x).
12)Unlock the Pattern Logon (BluePoison 1.x).
13)Unlock the Logon Metro (BluePoison 1.x).
14)Start Moorea in Office 15 (BluePoison 1.x and 2.x).

15)Download hacks for activation of Windows 8.
16)Consult guides to “activate” Windows 8.

Among the many functions BluePoison :
1)Notification when there is a new build of Windows 8.
2)Notify when a new version was released hacks for activation.
3)Recognize the installed operating system and shows only the hacks compatible with it.
4)It has an automatic update system.

 

Download BluePoison 2.0.1

1 Comment :, , , , , , more...

Defining class in PHP

by on Sep.19, 2011, under PHP, Technology, Web Designing

This is a simple Example of Defining a class in PHP.

<?php
class test
{
function do_test()
{
echo “Testing class function.”;
}
}

$test_object = new test;
$test_object->do_test();
?>

The Output will be

Testing class function.

Leave a Comment : more...

E-mail Script in PHP

by on Sep.18, 2011, under PHP, Web Designing

This is an example of simple e-mail script for PHP that can be used.

<?php
//define the receiver of the email
$to = ‘someone@somemail.com’;
//define the subject of the email
$subject = ‘Test email’;
//define the message to be sent. Each line should be separated with \n
$message = “Hello World!\n\nThis is my first mail.”;
//define the headers we want passed. Note that they are separated with \r\n
$headers = “From: webmaster@example.com\r\nReply-To: webmaster@example.com”;
//send the email
$mail_sent = mail( $to, $subject, $message, $headers );
//if the message is sent successfully print “Mail sent”. Otherwise print “Mail failed”
if($mail_sent){
print “Mail sent”;
}
else {
print “Mail failed.”;
}

?>

Leave a Comment : more...

Embed your font in website

by on Sep.17, 2011, under Tips & Tricks, Tutorial, Web Designing

I was thinking to embed my own font to the website but How??  suppose i am making a website with a nepali font ie Preeti. But the problem is there is no font installed in my clients computer, so i receive the unwanted output. to fix it i started to search n finally i m with the solution. Here it goes.

Demo Font Taken is “PREETI_1.TTF”

To embed this font on your web page, you will need to place the following CSS code in the <head> section of your page, or in an external CSS file:

<style type="text/css">
@font-face {
 font-family: MyCustomFont;
 src: url("PREETI_1.eot") /* EOT file for IE */
}
@font-face {
 font-family: MyCustomFont;
 src: url("PREETI_1.TTF") /* TTF file for CSS3 browsers */
}
</style>

Note that in the code above, “MyCustomFont” can be any name you want. You will probably want to set this to be the real name of your font.

To use your embedded font, you can simply refer to it by name like you do with any other font. Some examples:

body {
 font-family: MyCustomFont;
 font-size: medium;
 color: black
}
span.header {
 font-family: MyCustomFont;
 font-weight: bold;
 color: red
}

Don’t see your font?

There are two likely reasons why your font isn’t working. First, make sure you’re using a browser that supports embedding fonts. Firefox 3.5 and Internet Explorer 4+ are browsers that support them. If you’re not using a browser that supports embedded fonts, you won’t see your font in the example above.

Cheers !! Enjoy Your Fonts in Your Website. let the client see what you want to show

Leave a Comment :, , more...

Write your sentence in reverse order [string manipulation]

by on Sep.17, 2011, under PHP, Tips & Tricks

Its time for fun. after writing few blogs about PHP basics syntax i wished to play with strings. I want to Display the sentence in a reverse order.
Suppose i have a sentence “ Hello Binod How Are you” i wish to display it as “you Are How Binod Hello”
Enjoy the Code. Here it goes.

<?php

$str = “Hello Binod How Are you”;

$str_arr = explode(” “, $str);

$str_rev = array_reverse($str_arr);

foreach($str_rev as $word){
echo $word;
echo ” “;
}

?>

Leave a Comment : more...

Date() in PHP

by on Sep.15, 2011, under PHP, Technology

This is a simple example of printing the date in different format that can be applicable for various purposes.

<?php
// Assuming today is: September 10th, 2011, 5:16:18 pm

$today = date(“F j, Y, g:i a”);                 // September 10, 2011, 2:34 am
echo “<br>”.$today;
$today = date(“m.d.y”);                         // 09.10.11
echo “<br>”.$today;
$today = date(“j, n, Y”);                       // 10, 9, 2011
echo “<br>”.$today;
$today = date(“Ymd”);                           // 20110910
echo “<br>”.$today;
$today = date(‘h-i-s, j-m-y, it is w Day z ‘);  // 02-34-56, 10-09-11, 3430 3456 6 Satam11 252
echo “<br>”.$today;
$today = date(‘\i\t \i\s \t\h\e jS \d\a\y.’);   // It is the 10th day.
echo “<br>”.$today;
$today = date(“D M j G:i:s T Y”);               // Sat Sep 10 2:34:56 NPT 2011
echo “<br>”.$today;
$today = date(‘H:m:s \m \i\s\ \m\o\n\t\h’);     // 02:09:56 m is month
echo “<br>”.$today;
$today = date(“H:i:s”);                         // 02:34:56
echo “<br>”.$today;
?>

 

The Output will be as

September 10, 2011, 2:34 am
09.10.11
10, 9, 2011
20110910
02-34-56, 10-09-11, 3430 3456 6 Satam11 252
it is the 10th day.
Sat Sep 10 2:34:56 NPT 2011
02:09:56 m is month
02:34:56

Leave a Comment : more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Blogroll

A few highly recommended websites...