Technology
How to Reset Windows 7 or Vista Password
by Binod 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
Evolution of WWW.Microsoft.com
by sumeetdodo on Sep.25, 2011, under General, Technology
Have you Ever about Microsoft’s homepage design in 1994? In the beginning, www.microsoft.com was just one computer tucked under a table at the end of a long hallway. It was designed to test Microsoft’s first 32-bit Windows implementation of TCP/IP, the software plumbing in Windows that enables Internet communications. Here is how Microsoft.com changed over the years.
1994
1997
1999
2000
2001
2004
2005
2006
2009
Today
Updated 24 June 2011 – Added the 2011 version.
Assigning Keyboard Shortcuts For Programs In Windows 8
by sumeetdodo 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.
![]()
2) After selecting Properties a Dialog box will open. Go to Shortcut Tab.
![]()
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.
4) Now you can launch that program by using assigned keyboard shortcut.
Installing Windows 8 on VMware
by sumeetdodo 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.

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.
Dual Boot Windows 8 in Windows 7
by sumeetdodo 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.
A software to Edit Your Windows 8 in a click !!
by sumeetdodo 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
Defining class in PHP
by Binod 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.
Date() in PHP
by Binod 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
Useful string functions for web development
by Binod on Sep.14, 2011, under PHP, Technology, Tips & Tricks
Here i have shared some useful string manipulation functions that can be very important in website development. I had not explained it but the explanation code is all here. i guess the example will explain itself. if you need any help feel free to comment.
<?php
$string_a = “This is a long string”;
$string_b = “This is a much longer string”;
$explode_arr = explode(” “, $string_a);
print “<br>”.$explode_arr[3];// will pirnt long
$string_n = “This is line 1.\nThis is line 2″;
print “<br>”.nl2br($string_n);
$result = strcmp($string_a, $string_b);//can be useful for password comparision
if($result == 0){
print “<br>”.”String A and B are equal”;
}
elseif($result < 0){
print “<br>”.”String A is less than String B.”; //this is printed
}
elseif($result > 0 ) {
print “<br>”.”String A is greater than String B.”;
}
$length = strlen ($string_b);
print “<br><br>”.”String length of string ‘$string_b’ is $length.”;
print “<br><br>”.”Lower case of string $string_a is -> “.strtolower($string_a).”.”;
print “<br><br>”.”Uppder case of string $string_a is -> “.strtoupper($string_a).”.”;
$sub_string_1 = substr ($string_b, -6);
print “<br><br>Substring 1 “.$sub_string_1;
$sub_string_2 = substr ($string_b, 0, 7);
print “<br><br>Substring 2 “.$sub_string_2;
//try some substring variations yourself
$string_t = “ Binod Ranabhat “;
print “<br><br>String lenghth without trimming -”.strlen($string_t).”- and String length after trim -”.strlen(trim($string_t)).”-.”;
//try ltrim and r trim youself.
?>
The output will be as
long
This is line 1.
This is line 2
String A is less than String B.
String length of string ‘This is a much longer string’ is 28.
Lower case of string This is a long string is -> this is a long string.
Uppder case of string This is a long string is -> THIS IS A LONG STRING.
Substring 1 string
Substring 2 This is
String lenghth without trimming -21- and String length after trim -14-.






