Showing posts with label Tricks. Show all posts
Showing posts with label Tricks. Show all posts

Tuesday, November 27, 2012

Install Window 8 x86 or x64 bit without Serial Key [Product Key]

Some of you guys are on searching the serial key to install Window 8 Pro 32 or x64 bit but don't find the key then what to do? Don't worry !!! There is solution also ... :-D .We can also install Window 8 without having serial key.In order to install you have to follow some step listed before installing.

STEPS

2.Navigate to <FlashDrive>:\Sources\
3.Save a file called ei.cfg in that folder with following text.
      [EditionID] 
      Core          
      [Channel]  
      Retail         
      [VL]            
      0                                                                                              

In order to install the Pro edition, replace Core with Professional. If you want the setup to ask which edition you want install without entering the product key, leave the [EditionID] blank.

You can also set [VL] (Volume Licensing) to 1 (for true) and [Channel] to OEM/Retail

Now install as normal and the Windows 8 setup won't ask for the product key. This will work for every copy of Windows 8 that you can get from anywhere.

Also, if you ever to want to enter the product key, you can do so from the Windows Activation window or using the slui 3 command.

Thanks User from superuser.com for providing this tricks


If you face any problem on installing window 8 without product key then don't forgot to comment on below.



Friday, November 23, 2012

How to make Window 7/8 Boot able USB

Window 7/8 can be make bootable using various tools like WINDOWS 7 USB/DVD DOWNLOAD TOOL  or  Unetbootin  or WinUSB maker.

For Window 7 USB/DVD Download tools 

1.WINDOWS 7 USB/DVD DOWNLOAD TOOL
2. 32-bit bootsect.exe

Necessary Prerequisites

  • ISO file of Windows 7 or 8 on your system.
  • A minimum of 4 GB removable drive for  Windows 7 or  32-bit Window 8 and 8 GB for 64-bit Windows 8 operating system.
  • Backup all the data (if any) from your removable drive. Better, backup important data on your PC too.

Create the installer

1.Install the Windows 7 USB/DVD Download Tool.
2.Extract the 32-bit bootsect.exe file to the directory that the Windows 7 USB/DVD Download Tool was installed to. This is usually something like “C:\Users\username\AppData\Local\Apps\Windows 7 USB DVD Download Tool“.
3.Run the Windows 7 USB/DVD Download Tool and select your Windows 7 disc image. Follow the remaining steps in this tool and your image should be created successfully!

Friday, January 6, 2012

Install a Free Anti Virus for 1 Years in Your PC | Methodology to Get 1 Year Avast Serial Key

In order to get 1 years license key of avast anti virus you have to go on home page of avast anti virus first and fill the form with proper email address.Now 1 years registration key will be sent on your email id.Login your email and copy serial key & paste it on Maintenance->Registration->offline register on your avast anti virus at desktop.
If you don’t have installed avast antivirus then you can download avast antivirus Here

Wednesday, December 28, 2011

Fast Search in Google | Tricks

There are certain tricks for fast search using Google.With help of keyword and certain tricks you can found lots of information what you wants in 1 minutes.

—Site:

[site:] Google will restrict the results to those websites in the given domain. say a site www.stackoverflow.com, Google will search all the information residing on this site.

—Intitle:

Query [intitle:] restricts search result to document containing only that word in the title.

eg :- intitle:BalanceScoreCard

—[allintitlel:] eg:-allintitle:Balance Score Card filetype:pdf ***Advance Searching***

-Inurl:

[inurl:] restrict the results to those with all of the query words in the URL.

—Intext:

[intext] can find the web pages that contains any of the query words. For instance [intext:ioe students] will result into the pages that contains any of “ioe” or “students”.

—Link:

This query [link:] will list the web pages that point to the URL or specified web page.

—Cache:

This query [cache:] will display Google's cached version of a web page.

—Info:

The query [info:] will show the information that Google has about the web page.

—Related:

The syntax [related:] lists the web pages that are similar or related to the URL.

 

So Finally advance searching tricks are :-

allintitle:Balance Score Card filetype:pdf

allintitle:munni Badnam filetype:mp3

allintitle:The Pirates of Silicon Valley filetype:flv

Thursday, November 24, 2011

Looping Without Loop in C Programming

‎In c programming we made loop with help of conditional statements.The conditional statements use for looping in c programming are IF LOOP , WHILE LOOP and DO WHILE LOOP.

How many of us can make looping without using any conditional statements mentioned above.If i asked you guys to make looping program without using any conditional statements then you guys will ask me umm there is possible to do looping without using conditional.I also think that before i found this program and i don’t believe.But when i compile this code, I am enforce to believe it.

   1: //looping without default loops(if, do, while, for)
   2: #include<stdio.h>
   3: #include<stdlib.h>
   4: void (*func[2])(int);
   5: void main(int n)
   6: {
   7:           int i;
   8:           printf("\n %d",n);
   9:           func[0]=&exit;
  10:           func[1]=&main;
  11:           i = ++n <= 10;
  12:           (func[i])(n);
  13: } 



Another method for looping without using any loop in c programming is



   1:///this concept is also good 
   2:  
   3: #include <stdio.h>
   4: #include <stdlib.h>
   5: void main(int j) {
   6:          printf("%d\n", j);
   7:          (&main + (&exit - &main)*(j/1000))(j+1);
   8: }