Archive for 2012

Minimum System Requirement for Windows Server 8

Processor requirement:

  • The minimum clock speed for installing windows server 8 is 1.4 Ghz. and 64bit processor.
  • Windows server 8 supports minimum 1 CPU to multiple cores to enhance the performance of the windows Server 8

Primary Memory (RAM) Requirement:

  • A minimum of 2 GB RAM is required to install OS. But it require more RAM to perform various services, Typically more then 8 GB RAM is required.

Disk Space:  Minimum 32GB Hard Disk is required to install basics. But it requires more and more Hard disk space store your program files, Database files, Paging, hibernation etc.,

Leave a comment

How to Create multiple columns in Crystal Report 9

Open the report you want to format with multiple columns.

On the Report menu, click Section Expert

cry1

In the Section Expert, highlight Details, and then select Format with Multiple Columns.

cry2

A Layout tab is added to the Section Expert.

Click the Layout tab and set the Width you want your column to be. Keep in mind the width of your paper when deciding your column width. For example, if you have three fields in your Details section, and they take up four inches of space, limit the width of the column to under four and a half inches so that all the field information can be seen.

cry3

Set the Horizontal and/or Vertical gap you want to maintain between each record in your column. In the Printing Direction area, choose a direction

cry4

If the report you're formatting contains grouping, select Format Groups with multiple column.

 

Click OK

Your Settings will be appear like

cry5 cry6

The Reports will display like this

cry7

Leave a comment

How to import large sql files into mysql using phpmyadmin wamp server

When you try to import sql file to wamp server usually it cann't upload more than  2,048KiB size and gives error message like

There is another way to upload large size of sql file to wamp server

step 1

Find the config.inc.php file located in the phpmyadmin directory. In my case it is located here:

C:\wamp\apps\phpmyadmin3.4.5\config.inc.php

Note:  phymyadmin3.4.5 folder name is different in different version of wamp

step 2:

Find the line with $cfg['UploadDir'] on it and update it to:

$cfg['UploadDir'] = 'upload';


step 3:
Create a directory called ‘upload’ within the phpmyadmin directory.
   
C:\wamp\apps\phpmyadmin3.2.0.1\upload\


step 4:

copy and paste the  large sql file into upload directory which you want importing to phymyadmin

step 5:

select sql file from drop down list from phymyadmin to import



48 Comments

How to Disable Internet Search on Terminal Server in windows 2003

A Windows Terminal Server is a Windows 2003 server system that uses the Terminal Services application to allow remote users to connect to the machine. Internet Search is a feature of Windows Server that allows the system to automatically search for solutions to problems over the Internet. This can include driver updates, error messages and unknown file extensions. Blocking this behavior will increase your system's security by preventing users from locating untrusted or untested solutions as suggested steps to their problems. Internet Search is disabled with a group policy object.

Step 1

Log in to the Terminal Server as an administrative user.

Step 2

Open the Start menu, click "Run" and then type "gpedit.msc" (without quotes) and then press "Enter."

Step 3

Expand "Local Computer Policy" on the left by clicking the "+" symbol.

Step 4

Expand "Computer Configuration" on the left of the screen, then click "User Configuration" which opens below it.

Step 5

Double-click "Integrated Internet Search," then click "Disable." Click "OK" to save your changes.

Step 6

Click "OK" twice to save your settings.

References

"Windows Admin Scripting Little Black Book;" Jesse M. Torres; 2008

    1 Comment

    How to identify our computer is 32-bit or 64-bit

    Some times we will get confusion or we don't know our pc is 32-bit machine or 64-bit machine. we should know this information which is useful for some time while you are downloading and install the software. because some software can support only 32-bit or 64-bit only..

    To determine our computer is 32-bit or 64-bit
    Follow these steps.

    Open the System Information
    Open the Start menu, and click on Programs -> Accessories -> System Tools -> System Information 
    Look for  System type item which is  available at right hand side of the window

    The value of this item will tell you whether your computer is 32-bit or 64-bit:

    • x86-based PC: It’s a 32-bit computer.
    • x64-based PC: It’s a 64-bit computer.

    Leave a comment

    Exercise and solved in C language

    Write a program to swap two numbers.

            Answer:

    #include<stdio.h>
    #include<conio.h>
    void main()
    {
    int a,b,temp;
    clrscr();
    printf("Enter the value for a: ");
    scanf("%d",&a);
    printf("Enter the value for b: ");
    scanf("%d",&b);
    temp=a;
    a=b;
    b=temp;
    printf("\n Swaping of two numbers a=%d \t b=%d",a,b);
    getch();





    Write a program to find area of circle (radius is input by the keyboard)

    #include<stdio.h>
    #include<conio.h>
    #define PI 3.14
    void main()
    {
    int r;
    float area;
    clrscr();
    printf("Enter the radius of the circle");
    scanf("%d",&r);
    area=PI * r * r;
    printf("The Area of the circle is %f",area);
    getch();
    }



    Write a program to find area of triangle and rectangle. 

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

    void main()
    {
    int tri_hight,tri_breadth,rect_hight,rect_breadth;
    float area_tri,area_rect;
    clrscr();
    printf("Enter the Hight and Breadth of Rectangle: ");
    scanf("%d%d",&tri_hight,&tri_breadth); 
    printf("Enter the Hight and Breadth of the triangle: ");
    scanf("%d%d",&rect_hight,&rect_breadth);
    area_tri=0.5 * tri_hight * tri_breadth;
    area_rect=rect_hight * rect_breadth;
    printf("\nThe Area of the Triangle: %.2f",area_tri);
    printf("\nThe Area of the Rectangle: %.2f",area_rect);
    getch();
    }


    Write a program to find Total marks & percentage of the 6 subjects marks.

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

    void main()
    {
    int s1,s2,s3,s4,s5,s6,total;
    float avg;
    clrscr();
    printf("Enter the 6 subjects marks: " );
    scanf("%d%d%d%d%d%d",&s1,&s2,&s3,&s4,&s5,&s6);
    total=s1+s2+s3+s4+s5+s6;
    avg=(float)total/6;
    printf("\nTotal marks of the 6 subjects: %d",total);
    printf("\nAverage marks of the 6 subjects: %.2f",avg);
    getch();
    }

    Posted in , | Leave a comment

    How to format usb drive to NTFS in xp

    Generally in windows XP by default USB drive can be formated in FAT or  FAT32 format even the size is more than 8 gb.But you cannot copy a single file which contain more than 4gb of size to flash drive which is formated by FAT or FAT32 format. To solve this problem the USB drive should be formated in NTFS format. but you cannot see this option by default in windows XP. so you must enable this option to appear in File system option in format form.

    To Enable NTFS on your USB(Flash) drive

    1. Right click My Computer and select Manage option


     
    2. A computer Management form will be opened. Next click on device manager then click on Diskdrives it is available in right panel.
























    3. Click on Disk drive and select and Click right button on USB Drive option .
    4. when you Select Properties .A device properties form will be opened. Then Select Policies Tab and select  Optimize for performance. Then click OK button.





















    4. Now you can format your USB Drive using NTFS Formate

    Leave a comment

    How to download videos from facebook without downloader

    I am going to explain in blog that is how to download videos from facebook without using any downloader sofware

    follow these steps to do

    1.Open facebook website and  select the videos which you want to download to your computer using FireFox web browser or any other.
    2. Select address bar and copy the web link


    3.  open new tab and type the fallowing web address
    http://www.keepvid.com
    4. paste the web link which copied from facebook and click Search button
    5. after clicking the search button you will see the download link below the search option
    like this

     6. Right click download mp4  and select save link as option from pop up menu

    7.It will ask a location u can select target and click on save button .the video file will be downloaded as *.mp4 format  and you can open it in any video player which is support by mp4 format..
























    Leave a comment

    free Virtual CD/DVD/Blue-rays softwares

    DAEMON Tools Lite

    Daemon Tools software opens your image files like  *.iso  *.nrg  etcs..
    Download

    Leave a comment

    free recovery softwares

    PC Inspector File Recovery

    It is one of the freeware file recovery software. the deleted files can be recovered which are using shift+del button.

    Requirements:    Windows 2000 / XP / 2003 / Vista / Windows7 / XP64 / Vista64 / Windows7 64
    Languages:    en-US
    License:    Freeware


    Download
      

    Card Recovery Software

    Card Recovery software helps you get back your digital image files which are accidentally deleted.
    Requirements: Windows(All)
    License: Commercial Trail
    Download


    Leave a comment

    best Free Firewall sofware


    Comodo Internet Security

    comodo fire wall is one of the best free software. and it is award winning software for personal usage
    i am using this software since 4 years..so 100% safe your system..

    You may use this link to Download click here .

     Latest version :  5.10 and above
    Requirements:Windows XP / 2003 / Vista / Windows7
    Languages:Multiple languages
    License:Freeware                  

    Sygate Personal Firewall 5.6.2808


     Another best fire wall software is sygate personal fire wall. It is freeware but after this version it is discontinued during 2005th year but still it is available the version 5.6.2808
    Note: if your system has symantec antivirus it cannot be installed properly ,but it is still good software

    Requirements:  Windows XP/ 2000 /2003
    License: Freeware
    Download

    Leave a comment