Page

How to Remove Pop-up Ads from Internet Explorer, Firefox and Chrome


STEP 1. Download and install the adware removal software of your choice. Adware removal programs are specifically designed to target thousands of known adware infections that could be embedded into your system and safely removes them.






STEP 2. Before starting AdwCleaner, close all open programs and internet browsers, then double-click on the AdwCleaner icon.


If Windows prompts you as to whether or not you wish to run AdwCleaner, please allow it to run.

STEP 3. When the AdwCleaner program will open, click on the “Scan” button as shown below.


AdwCleaner will now start to search for the any malicious files that may be installed on your computer.

STEP 4. To remove the malicious files that were detected in the previous step, please click on the “Clean” button.


STEP 5. AdwCleaner will now prompt you to save any open files or documents, as the program will need to reboot the computer. Please do so and then click on the OK button.


Your computer should now be free of the adware infection. 




How to Make Windows 7 Genuine Using Command Prompt

STEP 1. First of all You need to Open Cmd ( Command Prompt ) as an Administrator.To Open it as an Administrator Type cmd in Start-menu and then Right Click on the Cmd and Select Run as Administrator as Shown below in the Image.

STEP 2. Now Type the Command SLMGR -REARM in cmd as Shown below in the Image


STEP 3. Press Enter and Wait For Few Seconds

STEP 4. Next a Message Dialog Box Will open Specifying Command ‘ Completed Successfully.Please Restart the system for the Changes to Take effect ‘ as Shown below in the Image 


STEP 5. Restart Your Computer and You are all done.Now You are Free of the Error ‘Windows 7 is Not Genuine’

Note - You Must Run Command Prompt as an Administrator Else this Method Will Not Work






C Program For Employee Database Management System

#include<stdio.h>
#include<conio.h> 
#include<string.h> 
#include<graphics.h

struct emp
{
    char eid[30];
    char ename[30];
    char egen[10];
    char edoj[20];
    char edes[30];
    char eday[30];
    char ecom[30];
    char ebac[30];
    char eext[30];
};
void main()
{
      int gd=DETECT,gm;
      clrscr();
      initgraph(&gd,&gm,"");
      outtextxy(430,0,"");
      setcolor(RED);
      settextstyle(1,0,6);
      outtextxy(60,20,"EMPLOYEE DATABASE");
      setcolor(YELLOW);
      outtextxy(50,120,"MANAGEMENT SYSTEM");
      setcolor(WHITE);
      outtextxy(130,220,"(DAILY REPORT)");
      setcolor(LIGHTCYAN);
      settextstyle(1,0,4);
      outtextxy(50,320,"DEVELOPED BY--->>>");
      setcolor(BLUE);
      outtextxy(300,400,"R.N.Patel");
      getche();
      closegraph();
      menu();
      getche();
}
menu()
{
      int i,ch;
      clrscr();
      textcolor(GREEN);
      for(i=1;i<=79;i++)
      {
gotoxy(i,1);
printf("*");
gotoxy(i,25);
printf("*");
      }
      for(i=1;i<=24;i++)
      {
 gotoxy(1,i);
 printf("*");
 gotoxy(79,i);
 printf("*");
      }
      for(i=25;i<=55;i++)
      {
 gotoxy(i,5);
 printf("*");
 gotoxy(i,20);
 printf("*");
      }
      for(i=5;i<=20;i++)
      {
 gotoxy(25,i);
 printf("*");
 gotoxy(55,i);
 printf("*");
      }
      gotoxy(34,6);
      printf("# MAIN MENU #");
      gotoxy(30,8);
      printf("1. ADD NEW EMPLOYEE");
      gotoxy(30,10);
      printf("2. LIST OF EMPLOYEE");
      gotoxy(30,12);
      printf("3. DELETE A EMPLOYEE");
      gotoxy(30,14);
      printf("4. DAILY REPORT");
      gotoxy(30,16);
      printf("5. EXIT");
      gotoxy(28,18);
      printf("Enter Your Choice: ");
      scanf("%d",&ch);
      switch(ch)
      {
case 1:   add_emp();   break;
case 2:   list_emp();      break;
case 3:   delete_emp();    break;
case 4:   daily();   break;
case 5:   exit(0);    break;
default:
gotoxy(30,19);
   printf("WRONG CHOICE!!!");
   getch();
   clrscr();
   menu();
      }
      return;
}
add_emp()
{
      struct emp e;
      char ch;
      FILE *fp;
      clrscr();
      printf("\t\t\t# Employee Registration Form #\n\n");
      printf("Enter Employee ID: ");
      scanf("%s",e.eid);
      fflush(stdin);
      printf("Enter Employee Name: ");
      scanf("%s",e.ename);
      fflush(stdin);
      printf("Enter Employee Gender (M/F): ");
      scanf("%s",e.egen);
      fflush(stdin);
      printf("Enter Date Of Joining: ");
      scanf("%s",e.edoj);
      fflush(stdin);
      printf("Enter Employee Designation: ");
      scanf("%s",e.edes);
      fflush(stdin);
      printf("\n-------------------------------------------------------------------------");
      printf("Enter Today's Date: ");
      scanf("%s",e.eday);
      fflush(stdin);
      printf("Enter Coming Time of Employee: ");
      scanf("%s",e.ecom);
      fflush(stdin);
      printf("Enter Going Time of Employee: ");
      scanf("%s",e.ebac);
      fflush(stdin);
      printf("Enter Extra Hours of Working: ");
      scanf("%s",e.eext);
      fflush(stdin);
      printf("Do You Want to Save This Record (y/n): ");
      scanf("%c",&ch);
      if(ch=='Y'||ch=='y')
      {
    fp=fopen("EMP.TXT","ab+");
    if(fp==NULL)
    {
  printf("Error in File Opening");
  return;
    }
    fwrite(&e,sizeof(e),1,fp);
    printf("RECORD ADDED SUCCESSFULLY");
    fclose(fp);
      }
      getche();
      menu();
      return;
}
list_emp()
{
      struct emp e;
      int i=0,j=0;
      FILE *fp;
      clrscr();
      printf("\t\t\t# LIST OF EMPLOYEES #\n");
      printf("-------------------------------------------------------------------------------\n");
      printf("  ID\t\tNAME\t\tGENDER\t\tDOJ\t\tDESIGNATION\n");
      printf("-------------------------------------------------------------------------------\n");
      fp=fopen("EMP.TXT","rb");
      if(fp==NULL)
      {
printf("Error in File Opening");
return;
      }
      while(!feof(fp))
      {
 fread(&e,sizeof(e),1,fp);
 i++;
      }
      if(i==1)
      {
 printf("No Record is Found");
      }
      rewind(fp);
      while(!feof(fp))
      {
 fread(&e,sizeof(e),1,fp);
 printf("%s\t\t%s\t\t%s\t\t%s\t\t%s\n",e.eid,e.ename,e.egen,e.edoj,e.edes);
 j++;
 if(j==i-1)
    break;
      }
      getche();
      menu();
      return;
}
delete_emp()
{
      int i=0,j=0,k;
      struct emp e;
      char id[30];
      FILE *fp,*temp;
      clrscr();
      printf("\t\t\t # DELETION OF A EMPLOYEE #\n");
      printf("-------------------------------------------------------------------------------\n");
      printf("  ID\t\tNAME\t\tGENDER\t\tDOJ\t\tDESIGNATION\n");
      printf("-------------------------------------------------------------------------------\n");
      fp=fopen("EMP.TXT","rb");
      if(fp==NULL)
      {
printf("Error in File Opening");
return;
      }
      while(!feof(fp))
      {
 fread(&e,sizeof(e),1,fp);
 i++;
      }
      rewind(fp);
      while(!feof(fp))
      {
 fread(&e,sizeof(e),1,fp);
 printf("%s\t\t%s\t\t%s\t\t%s\t\t%s\n",e.eid,e.ename,e.egen,e.edoj,e.edes);
 j++;
 if(j==i-1)
    break;
      }
      printf("\n");
      printf("Enter Employee ID For Deleting: ");
      scanf("%s",id);
      rewind(fp);
      temp=fopen("EMP1.TXT","wb");
      j=0;
      k=0;
      while(!feof(fp))
      {
 fread(&e,sizeof(e),1,fp);
 if(strcmp(e.eid,id)==0)
 {
    k=1;
 }
 else
 {
     fwrite(&e,sizeof(e),1,temp);
 }
 j++;
 if(j==i-1)
    break;
      }
      if(k==0)
      {
printf("No Record Found");
return;
      }
      remove("EMP.TXT");
      rename("EMP1.TXT","EMP.TXT");
      printf("Record Deleted Successfully");
      getche();
      menu();
      return;
}
daily()
{
      char id[30];
      int k=0;
      struct emp e;
      FILE *fp;
      clrscr();
      printf("Enter Employee ID for See Daily Report: ");
      scanf("%s",id);
      printf("===============================================\n");
      fp=fopen("EMP.TXT","rb");
      while(!feof(fp))
      {
 fread(&e,sizeof(e),1,fp);
 if(strcmp(e.eid,id)==0)
 {
      printf("ID: %s",e.eid);
      printf("\nName: %s",e.ename);
      printf("\nGender: %s",e.egen);
      printf("\nDate Of Joining: %s",e.edoj);
      printf("\nDesignation: %s",e.edes);
      printf("\n-------------------------------------------------------------------------");
      printf("\nToday's Date: %s",e.eday);
      printf("\nComing Time: %s",e.ecom);
      printf("\nGoing Time: %s",e.ebac);
      printf("\nExtra Hours: %s",e.eext);
      k=1;
      break;
 }
      }
      if(k==0)
printf("No Record Found");
      return;
}

C Program to Sort the N Names in an Alphabetical Order

#include<stdio.h>
#include<conio.h> 
#include<string.h> 

void main()
{
    char name[10][8], tname[10][8], temp[8];
    int i, j, n;

    printf("Enter the value of n \n");
    scanf("%d", &n);
    printf("Enter %d names n", \n);
    for (i = 0; i < n; i++)
    {
        scanf("%s", name[i]);
        strcpy(tname[i], name[i]);
    }
    for (i = 0; i < n - 1 ; i++)
    {
        for (j = i + 1; j < n; j++)
        {
            if (strcmp(name[i], name[j]) > 0)
            {
                strcpy(temp, name[i]);
                strcpy(name[i], name[j]);
                strcpy(name[j], temp);
            }
        }
    }
    printf("\n----------------------------------------\n");
    printf("Input NamestSorted names\n");
    printf("------------------------------------------\n");
    for (i = 0; i < n; i++)
    {
        printf("%s\t\t%s\n", tname[i], name[i]);
    }
    printf("------------------------------------------\n");
}



OUTPUT


Enter the value of n
6
Enter 7 names
home
swap
queue
object
control
program
project

----------------------------------------
Input Names    Sorted names
------------------------------------------
home                 control
swap                  home
queue                object
object                program
control              project
program            queue
project              swap
------------------------------------------

C Program to Delete the Specified Integer from an Array

#include<stdio.h>
#include<conio.h> 

void main()
{
    int vectorx[10];
    int i, n, pos, element, found = 0;

    printf("Enter how many elements\n");
    scanf("%d", &n);
    printf("Enter the elements\n");
    for (i = 0; i < n; i++)
    {
        scanf("%d", &vectorx[i]);
    }
    printf("Input array elements are\n");
    for (i = 0; i < n; i++)
    {
        printf("%d\n", vectorx[i]);
    }
    printf("Enter the element to be deleted\n");
    scanf("%d", &element);
    for (i = 0; i < n; i++)
    {
        if (vectorx[i] == element)
        {
            found = 1;
            pos = i;
            break;
        }
    }
    if (found == 1)
    {
        for (i = pos; i <  n - 1; i++)
        {
            vectorx[i] = vectorx[i + 1];
        }
        printf("The resultant vector is \n");
        for (i = 0; i < n - 1; i++)
        {
            printf("%d\n", vectorx[i]);
        }
    }
    else
        printf("Element %d is not found in the vector\n", element);
}


OUTPUT


Enter how many elements
4
Enter the elements
240
339
768
879
Input array elements are
240
339
768
879
Enter the element to be deleted
339
The resultant vector is
240
768
879

C Program to Find the Second Largest & Smallest Elements in an Array

#include<stdio.h>
#include<conio.h> 

void main ()
{
    int number[30];
    int i, j, a, n, counter, average;

    printf("Enter the value of N\n");
    scanf("%d", &n);
    printf("Enter the numbers \n");
    for (i = 0; i < n; ++i)
    scanf("%d", &number[i]);
    for (i = 0; i < n; ++i)
    {
        for (j = i + 1; j < n; ++j)
        {
            if (number[i] < number[j])
            {
                a = number[i];
                number[i] = number[j];
                number[j] = a;
            }
        }
    }
    printf("The numbers arranged in descending order are given below \n");
    for (i = 0; i < n; ++i)
    {
        printf("%d\n", number[i]);
    }
    printf("The 2nd largest number is  = %d\n", number[1]);
    printf("The 2nd smallest number is = %d\n", number[n - 2]);
    average = (number[1] + number[n - 2]) / 2;
    counter = 0;
    for (i = 0; i < n; ++i)
    {
        if (average == number[i])
        {
            ++counter;
        }
    }
    if (counter == 0 )
        printf("The average of %d  and %d is = %d is not in the array \n",
        number[1], number[n - 2], average);
    else
        printf("The average of %d  and %d in array is %d in numbers \n",
        number[1], number[n - 2], counter);
}

OUTPUT


Enter the value of N
4
Enter the numbers
350
240
220
570
The numbers arranged in descending order are given below
570
350
240
220
The 2nd largest number is  = 350
The 2nd smallest number is = 240
The average of 350 and 240 is = 295 is not in the array

C Program to Sort the Array in Descending Order

#include<stdio.h>
#include<conio.h> 

void main ()
{
    int number[30];
    int i, j, a, n;

    printf("Enter the value of N\n");
    scanf("%d", &n);
    printf("Enter the numbers \n");
    for (i = 0; i < n; ++i)
    scanf("%d", &number[i]);

    /*  sorting begins ... */

    for (i = 0; i < n; ++i)
    {
        for (j = i + 1; j < n; ++j)
        {
            if (number[i] < number[j])
            {
                a = number[i];
                number[i] = number[j];
                number[j] = a;
            }
        }
    }

    printf("The numbers arranged in descending order are given below\n");
    for (i = 0; i < n; ++i)
    {
        printf("%d\n", number[i]);
    }
}


OUTPUT


Enter the value of N
6
Enter the numbers
134
685
230
45
75
90

The numbers arranged in descending order are given below
685
230
134
90
75
45

C Program to Sort the Array in an Ascending Order

#include<stdio.h>
#include<conio.h>

void main()
{
    int i, j, a, n, number[30];

    printf("Enter the value of N \n");
    scanf("%d", &n);
    printf("Enter the numbers \n");
    for (i = 0; i < n; ++i)
        scanf("%d", &number[i]);
    for (i = 0; i < n; ++i)
    {
        for (j = i + 1; j < n; ++j)
        {
            if (number[i] > number[j])
            {
                a =  number[i];
                number[i] = number[j];
                number[j] = a;
            }
        }
    }
    printf("The numbers arranged in ascending order are given below \n");
    for (i = 0; i < n; ++i)
        printf("%d\n", number[i]);
}

OUTPUT


Enter the value of N
6
Enter the numbers
2
70
360
256
435
100
The numbers arranged in ascending order are given below
2
70
100
256
360
435

C Program to Find the Largest Two Numbers in a given Array

#include<stdio.h>
#include<conio.h>
#define MAX 4

void main()
{
    int array[MAX], i, largest1, largest2, temp;

    printf("Enter %d integer numbers \n", MAX);
    for (i = 0; i < MAX; i++)
    {
        scanf("%d", &array[i]);
    }

    printf("Input interger are \n");
    for (i = 0; i < MAX; i++)
    {
      printf("%5d", array[i]);
    }
    printf("\n");

    /*  assume first element of array is the first larges t*/

    largest1 = array[0];

    /*  assume first element of array is the second largest */

    largest2 = array[1];
    if (largest1 < largest2)
    {
        temp = largest1;
        largest1 = largest2;
        largest2 = temp;
    }
    for (i = 2; i < 4; i++)
    {
        if (array[i] >= largest1)
        {
            largest2 = largest1;
            largest1 = array[i];
        }
        else if (array[i] > largest2)
        {
            largest2 = array[i];
        }
    }
    printf("n%d is the first largest \n", largest1);
    printf("%d is the second largest \n", largest2);
    printf("nAverage of %d and %d = %d \n", largest1, largest2,
   (largest1 + largest2) / 2);
}


OUTPUT

Enter 4 integer numbers
100
30
80
68
Input interger are
100  30   80   68

100 is the first largest
80 is the second largest

Average of 100 and 80 = 90

C Program to Find the GCD and LCM of n Numbers

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>

int gcd(int x, int y) {
    int r = 0, a, b;
    a = (x > y) ? x : y; // a is greater number
    b = (x < y) ? x : y; // b is smaller number

    r = b;
    while (a % b != 0) {
        r = a % b;
        a = b;
        b = r;
    }
    return r;
}

int lcm(int x, int y) {
    int a;
    a = (x > y) ? x : y; // a is greater number
    while (1) {
        if (a % x == 0 && a % y == 0)
            return a;
        ++a;
    }
}

int main(int argc, char **argv) {
    printf("Enter the two numbers: ");
    int x, y;
    scanf("%d", &x);
    scanf("%d", &y);
    printf("The GCD of two numbers is: %d", gcd(x, y));
    printf("The LCM of two numbers is: %d", lcm(x, y));
    return 0;
}

C Program to Find GCD of Two Numbers Using Recursive Euclid Algorithm

#include<stdio.h>
#include<conio.h>

int gcd_algorithm(int x, int y)
{
    if (y == 0) {
        return x;
    } else if (x >= y && y > 0) {
        return gcd_algorithm(y, (x % y));
    }
}

int main(void)
{
    int num1, num2, gcd;
    printf("\nEnter two numbers to find gcd using Euclidean algorithm: ");
    scanf("%d%d", &num1, &num2);
    gcd = gcd_algorithm(num1, num2); 
    if (gcd)
        printf("\nThe GCD of %d and %d is %d\n", num1, num2, gcd);
    else
        printf("\nInvalid input!!!\n");
    return 0;
}

OUTPUT


C Program to Generate Random Hexadecimal Bytes

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<time.h>

int main(void)
{
    int length;
    char str[] = "0123456789ABCDEF";

    /* Seed number for rand() */

    srand((unsigned int) time(0) + getpid());
    length = rand() % 15 + 8;

    while(length--) {
        putchar(str[rand() % 16]);
        srand(rand());
    }
    printf("\n");

    return EXIT_SUCCESS;
}

C Program to Generate Randomized Sequence of Given Range of Numbers

#include<stdio.h>
#include<conio.h>
#include<time.h>

const int LOW = 1;
const int HIGH = 32000;

int main() {
    int randomNumber, i;
    time_t seconds;
    time(&seconds);
    srand((unsigned int) seconds);
    for (i = 0; i < 10; i++) {
        randomNumber = rand() % (HIGH - LOW + 1) + LOW;

        printf("%d ", randomNumber);
    }
    printf("...");
    return 0;
}

C Program to Check if a Matrix is a Sparse Matrix

#include<stdio.h>
#include<conio.h>
void main ()
{
    int matrix[10][10];
    int i, j, m, n;
    int sparse_counter = 0;

    printf("Enter the order of the matix \n");
    scanf("%d %d", &m, &n);
    printf("Enter the elements of the matix \n");
    for (i = 0; i < m; ++i)
    {
        for (j = 0; j < n; ++j)
        {
            scanf("%d", &matrix[i][j]);
            if (matrix[i][j] == 0)
            {
                ++sparse_counter;
            }
        }
    }
    if (sparse_counter > ((m * n) / 2))
    {
        printf("The given matrix is Sparse Matrix !!! \n");
    }
    else
        printf("The given matrix is not a Sparse Matrix \n");
    printf("There are %d number of Zeros.", sparse_counter);
}

C Program to Perform Complex Number Multiplication

#include<conio.h>
#include<stdio.h>
typedef struct COMPLEX{
    int a;
    int b;
}Complex;
Complex multiply(Complex, Complex);
int main(){
    int a1, b1, a2, b2;
    Complex x, y, z;
    printf("Enter first complex number : ");
    scanf("%d+%di", &a1, &b1);
    printf("\nEnter second complex number : ");
    scanf("%d+%di", &a2, &b2);
    x.a = a1;
    x.b = b1;
    y.a = a2; 
    y.b = b2;
    z = multiply(x, y);
    printf("\nAfter multiplication: %d+%di", z.a, z.b);
    return 0;
}
Complex multiply(Complex x, Complex y){
    Complex z;
    z.a = x.a * y.a - x.b * y.b;
    z.b = x.a * y.b + x.b * y.a;
    return z;
}

RegisterForEventValidation can only be called during Render()

Server Error in 'ASP.Net' Application.

RegisterForEventValidation can only be called during Render();

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.InvalidOperationException: RegisterForEventValidation can only be called during Render();


Solution


The solution is quite simple you need to notify ASP.Net that not to validate the event by setting the EnableEventValidation flag to FALSE.

This will apply to all the pages in your website. Else you can also set it in the @Page Directive of the page on which you are experiencing the above error.


<%@ Page Language="C#" AutoEventWireup="true" EnableEventValidation = "false">

Keyboard Shortcuts for Windows Vista and XP and Microsoft Office

Windows Key + E 

The best part about shortcut keys is letting your keyboard do half the work. This is a perfect example: This shortcut allows you to open Windows Explorer with one quick keystroke.

Windows Key + M

This is the shortcut to keep in mind when you are at work doing anything but working—it allows you to minimize all of your open windows, leaving just the desktop left exposed. To restore the windows, hit Windows key+Shift+M. Another quick way to do this is Windows key+D, which shows your desktop; to restore, just repeat the same keystroke. This is a handy shortcut to have around the next time your boss is wandering through the office.

Alt + Tab

This allows you to easily scroll through all the windows you have open. If you're working in Word and referring to something in Explorer, for example, you can toggle back and forth between the two programs. You can also use this to switch between windows in the same program, making multitasking a breeze. Very similar is Windows key+Tab: In XP, it lets you scroll the items on the taskbar, and in Vista, it starts Flip 3D for a fun graphical spin on the same idea.

Alt + F4

This shortcut is a quick way to close a window in any program. Alt+Spacebar+C (which requires less stretching, but more keys) and Ctrl+W do the same thing. Any of the ways will allow you to close a window without using your mouse to hit the X in the upper-right corner.

Ctrl+Arrow Keys

In Microsoft Word, the left and right arrows allow you to move the cursor to the beginning of the previous word or the next word; the up and down arrows will do the same with paragraphs. This is very helpful when editing a document or scanning for any reason.

Shift + Delete

If you want to delete a file—and you don't want to deal with it later in the Recycle Bin—this is the way to go. Just be absolutely sure that this is a file you won't want back!

Hold Shift While Inserting a CD
Have you ever wanted to insert a CD and not use it right away? This shortcut allows you to bypass Autorun when inserting a CD so you can control exactly when you will use a CD you've inserted.

Ctrl + Drag

There are many ways to copy a file, but this just might be the easiest. All you have to do is click on the file, hold, and drag it into its desired location. This works the same as another handy shortcut, Ctrl+C.

Windows Key + U + U

Quickly shut down Windows by hitting the Windows key (don't hold it down), hitting U to reach the shutdown menu, and then hitting U again to shut down.

Windows Key + Pause

Need a quick way to get to the Systems Properties menu without too much thought? Just press these two keys and you'll be brought right to it.


Ctrl + Z, Ctrl + Y

Undo an action by hitting Ctrl+Z; if you change your mind, Ctrl+Y will redo the undo.

Shift + Arrow Keys

Holding shift and pressing one of the arrow keys will highlight text in Word (or a group of Excel cells) without the mouse, selecting in the direction the arrow points.

Ctrl + U, Ctrl + B, Ctrl + I

This one's for Office newbies. It's a snap to underline, bold, and italicize without the mouse if you press Ctrl+U (underlining), Ctrl+B (bolding), or Ctrl+I (italicizing).

Lock Your Folder

If you want to save your personal files in a folder at home or in office, then you must lock that folder. There is much software available in market to lock folder but I am telling you a new trick which locks a folder without any software.

STEP 1: At first create a folder in any drive in which you want to keep your personal files.  For example in drive E: create a folder and rename it. You can write any name that you like. Here we write folder name “personal”.

STEP 2: Now create a text file in the same drive.Type,
ren personal personal.{21EC2020-3AEA-1069-A2DD-08002B30309D}

STEP 3: Save this text file as (hide.bat), you will see a bat file in the drive.

STEP 4: Now again create another text file and type…
ren personal.{21EC2020-3AEA-1069-A2DD-08002B30309D} personal

STEP 5: Save this text file as unhide.bat.

Done.

Now press “hide” and the “personal” folder will change to control penal and nobody can see its contents.
Press “unhide” and….waooooo. you can see your folder in original shape.

Steps for Delete Admin Password From Your PC

If you have forgotten your administrative password then still you can boot your computer by deleting password. Just follow these steps.

STEP 1. Put your hard disk in any other computer.

STEP 2. Attach your hard as a secondary hard disk.

STEP 3. Now start pc and open “My computer”

STEP 4. Open the drive of your hard disk in which your window is installed.

STEP 5. Open windows then system 32 and at last config

STEP 6. Delete 2 files. sam.exe and sam.log

STEP 7. Again put your hard disk in your own pc and boot it.

STEP 8. There is no password…….

Check The Memory Size of Graphic Card

You can easily check the memory size of vga card which you are using in your computer. vga 
card of high memory size helps to play heavy games. It also gives better performance to 
those who use Corel and Adobe Photoshop. vga mean "Video Graphic Adapter" To check the 
memory just follow the steps.

STEP 1. Right click your desktop and click on properties.

STEP 2. Now click on "setting".

STEP 3. Click on "advance"

STEP 4. Now click on "Adapter".

Here you will see the information about your vga card. You can check chipe type, DAC type, Memory size and bios information. 

How to Remove Any Password from PDF Files With Google Chrome Browser

Have you felt annoyed or overwhelmed with remembering the passwords from different files like bank statements, pay slip or credit card bills?  To secure and protect any unauthorized access, many organizations especially bank will send the statement in the form of password protected PDF files to your email. You need to enter password every time you want to open the file. Do you think of any costing software or apps can help you solve the problem? The answer is No; but with some tricks you can remove password from PDF files easily. It is absolutely free and works on Windows, Mac, and Linus.

Google Chrome browser has built in PDF Reader and PDF Writer features. With it new features, you can simply remove any password from PDF files by combining these two features. Here the simple ways to remove any password from PDF files with Google Chrome:

STEP 1: Simply drag PDF password protected file into Google Chrome browser.

STEP 2: Now, it will prompt you to enter the password for the file.

STEP 3: Type the password into the box and hit the Enter key to open the file.

STEP 4: Go to “File” or menu of Google Chrome, click on “Print” (Ctrl+P for Windows, Cmd+P on Mac).

STEP 5: Choose the destination printer as “Save as PDF” and press save

STEP 6: Now, re-open newly saved file, you will noted that there is no password will be needed to open it. If you have enabled Google Cloud Print, you also can save the PDF files directly to Google Drive.

STEP 7: Now your PDF files are searchable and easy to find.

This is the best and most easy way to remove password PDF files by using Google Chrome.  However, there will have risk once your PDF files did not have secure password protection. It is responsibility to protect your personal information that may be present or show in your PDF file.


How To Use Virtual Keyboard With Mouse (ON SCREEN KEYBOARD)

If you feel that your external keyboard is not working properly or some particular key is not functioning then you can use internal keyboard on your desktop screen. This property of keyboard is found in windows xp and seven. Just follow these steps

STEP 1: Go to start menu and press “run”

STEP 2: Type  “osk”

Now press enter.
(note. Don’t use commas)


you will see keyboard on your desktop screen. Now use mouse to click on keys for operation.


How To Solve Problem, Server Security Certificate Is Not Yet Valid

Some time you install fresh Operating system in your computer and then you install Browser, google chrome. After installation you try to open gmail, yahoo, or facebook in google chrome but you do not see your required page and see a message “Server Security Certificate is not yet valid”.  Then you also try to open the page by clicking on “continue anyway” but the result is same.



Infect this problem occurs due to incorrect date and time of your computer. By synchronizing your system clock you can solve this problem.


I will tell you the best solution of this problem. Just follow these steps and after completion you will be able to login to facebook, yahoo, gmail etc.

STEP 1: Click on Start Menu and then control penal. 

STEP 2: Open Date/Time setting 

Adjust correct date and time according to your region. 

STEP 3:  Open "Internet Time Zone" tab.  

 STEP 4: Click on "Update Now" button. After clicking on button, It will start synchronzing your internet server timing. 

After 7-8 seconds you will see a message, "The time has been successfully synchronized with time.windows.com on 07-07-2013 at 5:09PM. 

Done 



Now try to open facebook, yahoo or gmail in google chrome again. Surely you will login successfully.

10 Tips for How to Increase Computer Speed

1. When programs to Anvonted

Your computer comes with several pre-loaded programs. Many times you have information about these programs, many of which are not or who are not your job. Some programs running in the background remain. In this case, the computer is working at speed.
When not in use to remove the programs from your computer
Start> Control Panel> Programs and Feature click.

2. Solid-state drive (SSD)

Solid-state drives you may have to loosen your pocket, but its use will increase your computer's speed. As a reminder, the use of solid-state drives reduce power consumption by the computer and will also increase the speed of your computer.

3. RAM

RAM upgrade will increase the speed of the computer. Especially in the loading of data will take less time. As a reminder, today the market is beginning to get very cheap and good RAM. So you have to spend more money to buy RAM.

4. Disc Difregment

Please Difregment disk. Doing so would increase the capacity of computer hard drives to work. All you need to 'My Computer' is known. Then click the right mouse button on the hard drive. 'Properties' go to 'Tools' click. Then 'Defragment Now' Click.

5. To clean the disc

Without the work of some of the files Tenprri Internet Installer files or other programs to slow the speed of your computer will work. These files can be used to clean the disc to remove.

To clean a disc -

Start> All Programs> Accessories> System Tools> Disk Cleanup

6. Turn off visual effects

If your computer to work well Disable visual effects. Go to Properties by right clicking on the Computer Screen. 'Advanced System Settings' and then go to the 'Adjust Visual Settings', click the Disable.

7. The virus may cause

The computer is slow? So far the virus? Yes, many times due to virus attacks, slow computer seems to be working. The use of the Internet or a computer virus attached to the external device may come from. If the PC becomes a slow virus, as well as it may crash your data. It is important to have in your PC a good anti-virus.

8. Avoid over-heating

Due to its slow computer can be much warmer. Protect it from over heating, cooling fan, check for

9. Please re-install Windows

To increase the speed of the computer re-installing Windows is an easy way. The first data back up. Go to your computer and then install the Process Re-install all the programs.

10. Also re-start option

Sometimes the computer to work longer becomes slow. The only re-start or stop for a while and turn it on again is normal speed.