Tuesday, October 13, 2015

How to Install Windows 10 Pro


With Windows 10 Pro, you've got a great business partner. It has all the features of Windows 10 Home, plus important business functionality for encryption, remote log-in, creating virtual machines, and more.

Hardware Requirements:

Processor
1 GHz processor or faster
Memory
1 GB RAM for 32-bit; 2 GB for 64-bit
Hard Disk
Up to 20 GB available hard disk space
Video Card
800 x 600 screen resolution or higher. DirectX® 9 graphics processor with WDDM driver

1. Open VMware Workstation 11 (Download VMware Workstation 11)

  (Click Image for large view)


2. Click “Create a New Virtual Machine


3. Click Next


4. Select “Installer disc image file (iso)then Click Browse


5. Select Your Windows 10 Pro ISO file then Click Open


6. Click Next


7. Select “Microsoft Windows” as Operating System and “Windows 10 x64 (If you have 64 bit OS)” or “Windows 10 (If you have 32 bit OS)” as Version then Click Next


8. In this window you can change your “Virtual Machine Name” and If you want to change your installation file location then click Browse


9. Choose or Create a Folder Where you want to save installation files then Click OK


10. Click Next


11. Set Disk Size I would like to recommend minimum 20 GB. Click Next


12. Click Finish


13. If it doesn’t restart automatically then Click on “Power on this virtual machine”


14. Choose your desired language and Click Next


15. Click Install Now


16. If you do not have Activation Key leave it blank then Click Skip


16. Check License term box and Click Next


18. Click “Custom: Install Windows Only (Advance)”


19. Select Unallocated Space and Click New then Click Apply and finally Next


20. Click OK


21. Select Partition 2 as you can see Partition 1 is reserved by system then click Next


22. Installation Progressing…..

23. System will be restart.


24. Wait for sometime


25. As we do not have activation key so Simply Click “Do it later”


26. Click “Use Express Settings”


27. Write User Name and Password (if you want otherwise leave password section blank) then Click Next


28. Setting up Apps


29. Done

 (Click Image for large view)


Click Below for Video Tutorial 




Like it ? Share it.

Thursday, October 1, 2015

Create Windows 10 ISO


In this tutorial we are going to learn how to create Windows 10 ISO file so you can use it for fresh installation.
you can start the upgrade, wait until the installer files are fully downloaded, and then cancel. In either case, you'll find the large installer file stashed in a hidden folder called C:\$Windows.~BT, in a subfolder called Sources.

What is install.esd ?
Install.esd, is saved using a compressed format introduced with Windows 8.1 and specifically designed for electronic software distribution (thus the .ESD file extension).

1. Enable the option to view hidden items

2. Go to C:\$Windows.~BT\Sources there you will find install.esd file.
(Click image for large view)

2. Download the ESD-Decrypter files Click Here or Click Here .This file is saved in 7z format, so you will need a third-party decompression utility such as 7-Zip to extract it or you can use Winzip or Winrar.

3. Extract the ESD-Decrypter files to their own folder and then copy the Install.esd file to the same folder.

4. Right-click the Decrypt command file and choose Run As Administrator.

5. Choose the first option (write 1) in this menu and press Enter.

6. The command file displays the status of current operations as it works. After a few minutes (the exact time depends on your hardware), you end with an ISO file in the same folder as the ESD.
(Click image for large view)

7. Now you can burn it on a DVD or make it as bootable Pen Drive.




Like it ? Share it.

Wednesday, August 26, 2015

C Program to Add Two Numbers


Q. – Write a C program to find the sum of given two numbers.

Ans:- Two numbers, says a and b, are given (input) and the result sum = a+b of two numbers are to be calculated.



/* Arithmetic Operators Addition */
#include <stdio.h>
int main()
{
    int a, b, sum;
    scanf("%d %d", &a, &b);
    sum = a+b;
    printf("%d", sum);
    return 0;

}

User- Friendly Program


/* Arithmetic Operators Addition – User friendly program */
#include<stdio.h>
int main()
{
    int a, b, sum;
    printf("\n Enter Value to A: ");
    scanf("%d", &a);
    printf("\n Enter Value to B: ");
    scanf("%d", &b);
    sum = a+b;
    printf("\n SUM = %d", sum);
    return 0;

}




Like it ? Share it.

Friday, August 14, 2015

C Program to find Remainder or Modulus of two numbers

Q. – Write a C program to find the Remainder of given two numbers.

Ans:- Two numbers, says a and b, are given (input) and the result remainder = a%b of two numbers are to be calculated.



/* Arithmetic Operators Remainder */
#include <stdio.h>
main()
{
    int a, b, remainder;
    scanf("%d %d", &a, &b);
    remainder = a%b;
    printf("%d", remainder);
    return 0;

}

User Friendly Program

/* Arithmetic Operators Remainder – User friendly program */
#include<stdio.h>
main()
{
    int a, b, remainder;
    printf("\n Enter Value to A: ");
    scanf("%d", &a);
    printf("\n Enter Value to B: ");
    scanf("%d", &b);
    remainder = a%b;
    printf("\n Remainder = %d", remainder);
    return 0;

}





Like it ? Share it.

Thursday, August 13, 2015

C Program to find division of two numbers


Q. – Write a C program to find the Division of given two numbers.

Ans:- Two numbers, says a and b, are given (input) and the result division = a/b of two numbers are to be calculated.



/* Arithmetic Operators Division */
#include <stdio.h>
main()
{
    int a, b, division;
    scanf("%d %d", &a, &b);
    division = a/b;
    printf("%d", division);
    return 0;

}

User Friendly Program


/* Arithmetic Operators Division – User friendly program */
#include<stdio.h>
main()
{
    int a, b, division;
    printf("\n Enter Value to A: ");
    scanf("%d", &a);
    printf("\n Enter Value to B: ");
    scanf("%d", &b);
    division = a/b;
    printf("\n Division = %d", division);
    return 0;

}





Like it ? Share it.

Wednesday, August 12, 2015

C Program to find Multiplication or Product of Two Numbers


Q. – Write a C program to find the Product of given two numbers.

Ans:- Two numbers, says a and b, are given (input) and the result product = a*b of two numbers are to be calculated.



/* Arithmetic Operators Product or Multiplication */
#include <stdio.h>
main()
{
    int a, b, product;
    scanf("%d %d", &a, &b);
    product = a*b;
    printf("%d", product);
    return 0;

}

User Friendly Program

/* Arithmetic Operators Product or Multiplication – User friendly program */
#include<stdio.h>
main()
{
    int a, b, product;
    printf("\n Enter Value to A: ");
    scanf("%d", &a);
    printf("\n Enter Value to B: ");
    scanf("%d", &b);
    product = a*b;
    printf("\n Product = %d", product);
    return 0;

}






Like it ? Share it.

Tuesday, August 11, 2015

C Program to Subtract two numbers


Q. – Write a C program to find the subtraction of given two numbers.

Ans:- Two numbers, says a and b, are given (input) and the result sub = a-b of two numbers are to be calculated.




/* Arithmetic Operators Subtraction */
#include <stdio.h>
main()
{
    int a, b, sub;
    scanf("%d %d", &a, &b);
    sub = a-b;
    printf("%d", sub);
    return 0;

}

User Friendly Program



/* Arithmetic Operators Subtraction – User friendly program */
#include<stdio.h>
main()
{
    int a, b, sub;
    printf("\n Enter Value to A: ");
    scanf("%d", &a);
    printf("\n Enter Value to B: ");
    scanf("%d", &b);
    sub = a-b;
    printf("\n Subtract = %d", sub);
    return 0;

}




Like it ? Share it.