Posts

Showing posts from 2012

Active Desktop Group Policy in Windows 2003 Server

Image
If u want to restricted wallpaper changing in a domain then perform all steps of this video

How to Unlock Boot Loader of Htc Explorer

Image
Download following files HTC Sync > Download Download A310E recovery > Download Superuser.zip > Download Steps to install recovery and root HTC Explorer  Remove the battery of yout phone and again insert the battery and press the volume key down+power button after some seconds your phone start in boot mode and plug the usb in your phone.    To root HTC Explorer, you first need to unlock the bootloader of it. open c:\ drive and make a android folder and extract A310E recovery on overthere To unlock the bootloader, visit this  and follow appropriate steps there. Open www.htcdev.com and register yourself Goto Bootloader  and HTC Explorer isn’t listed as working device there  but it has been tested and works perfectly. So, choose “ all other supported models ” when selected device -Click "Yes" to continue. -You must accept the legal terms here, basically its saying that: -HTC and your carrier are NOT responsible for your actions -You a

How to Set up Your Own FTP Server Using FileZilla

Image
How to Set up Your Own FTP Server Using FileZilla  ------------------Follow The Steps------------- Step.1 Install Go to filezilla-project.org and download FileZilla Serve r. Install the program and launch it. after installation The first thing you will see is this: Server Address:----127.0.0.1 is your localhost address Port:---14147 is your default filezilla port address Administration password:- your admin password  Step2:-----Create User ------------ Go to the edit menu and choose “Users” Here you can create and edit your users. Click “Add” to add a new user and give it the name “as you wish”. Now go to “Shared Folders”, here you can choose wich Folders on your computer this user will have FTP access to.  Click add and choose ur folder. Select a folder you want to use and edit what permissions you want to give this user. Step.3 Add Firewell Now go to the control panel   Click Windows Firewell Click the exception tab and add program->g

How To Get The Computer Name Through the ip address

1--- Follow The Instruction:---------- Open ->Start->Run->Type cmd Type------>>nbtstat -a ipaddress  And Get the computer Name   How to find the all computers in the network 2--- Open ->Start->Run->Type cmd   Type ------>> Net view How to find the ip address through the computer name 3--- Open ->Start->Run->Type cmd   Type ------>>  ping -a Computer name 4----How to get the mac address Open ->Start->Run->Type cmd GETMAC /s computername - Get MAC by Computer Name GETMAC /s 192.168.1.1 – Get MAC by IP Address

Types of Server................

A Server is a computer or device on a network that manages network resources. For example, a file server is a computer and storage device dedicated to storing files Any user on the network can store files on the server. A print server is a computer that manages one or more printers and a network server is a computer that manages network traffic. Servers are often dedicated, meaning that they perform no other tasks besides their server tasks. On multiprocessing operating systems however, a single computer can execute several programs at once. A server in this case could refer to the program that is managing resources rather than the entire computer. What is Server Platform? A term often used synonymously with operating system. A platform is the underlying hardware or software for a system and is thus the engine that drives the server. Server types: Application Servers Sometimes referred to as a type of middleware, application servers occupy a large chunk of comput

Oracle Net Services ...............!!!!!!!!!!!!!!!!!!!!!!

Image
Oracle Client And Server Configuration In Oracle 10g

Creating Databases with the Oracle Database Configuration Assistant

Image
Creating Databases with the Oracle Database Configuration Assistant This chapter describes using the Oracle Database Configuration Assistant (DBCA) to create and delete Real Application Clusters databases. It explains how to decide whether to manually create your database and how to use the DBCA to delete Real Application Clusters databases. This chapter also briefly discusses migration and multiple Oracle homes issues. The topics in this chapter include: Using the Database Configuration Assistant Benefits of Using the Oracle Database Configuration Assistant Creating the Database after Installation Using the Database Configuration Assistant Creating a Real Application Clusters Database with the DBCA Deleting a Database with the Database Configuration Assistant Using the Database Configuration Assistant The DBCA creates your database using the optimal flexible architecture (OFA) . This means the DBCA creates your database file

Can We run the simple addition program without iostram.h and conio.h..........?

Yes we can do this.................... Solution .................. #include<constream.h> void main() { clrscr(); int a,b,c; cout<<"enter two number"; cin>>a>>b; c=a+b; cout<<"Sum="<<c; getch(); }

C Program to COPY DATA FROM ONE FILE TO ANOTHER File

#include<stdio.h>    int  main(){      FILE  *p,*q;      char  file1[20],file2[20];      char  ch;     printf( "\nEnter the source file name to be copied:" );     gets(file1);     p=fopen(file1, "r" );      if (p==NULL){         printf( "cannot open %s" ,file1);         exit(0);     }     printf( "\nEnter the destination file name:" );     gets(file2);     q=fopen(file2, "w" );      if (q==NULL){         printf( "cannot open %s" ,file2);         exit(0);     }      while ((ch=getc(p))!=EOF)         putc(ch,q);     printf( "\nCOMPLETED" );     fclose(p);     fclose(q);     return  0;   } 

Windows Azure Services..........!!!!!!!!!!!!!!!!!!!!!

Image
  Manage Center Deploy. Monitor. Scale. Automate. Windows Azure provides an easy-to-use management portal and powerful command-line tools to manage your applications from any platform. Create a virtual machine running Windows Server 2008 R2 Creating a virtual machine running Windows Server is easy when you use Windows Azure Management Portal. With no prior experience, you can easily create a Windows Azure virtual machine running Windows Server that you can then access and customize. Deploy a SQL Server virtual machine With the image gallery in the Management Portal, you can quickly create a virtual machine in Windows Azure running Windows Server 2008 R2, Service Pack 1 (64-bit) and a complete 64-bit installation of SQL Server. Create a virtual machine running Linux Creating a virtual machine running Linux is easy when you use the Windows Azure Management Portal. With no prior experience, you can easily create a Windows Azure virtual machine running

Getting started on Windows Azure with .NET and Visual Studio.

Image

Oracle Commands.............!!!!!!!!

SQL.RELEASE Oracle Version show release SQL.SQLCODE Current error code show sqlcode SQL.USER Currently connected user show user List SQL*Plus Parameters show all SQL> show all CONN as SYS CONN <logon> AS <SYSDBA | SYSOPER> conn / as sysdba conn sys@orabase AS SYSDBA Define / Undefine SQL*Plus: Release 10.1.0.2.0 - Production on Fri Nov 19 15:20:10 2004 Copyright (c) 1982, 2004, Oracle. All rights reserved. Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production With the Partitioning, OLAP and Data Mining options SQL> DEFINE _CONNECT_IDENTIFIER DEFINE _CONNECT_IDENTIFIER = "ORABASE" (CHA

How to Connect Oracle Client to Oracle Server........!

Procedure Start Oracle Net Configuration Assistant. On the Welcome page, select Local Net Service Name configuration and click Next . On the Net Service Name Configuration page, select Add and click Next . On the Net Service Name Configuration, Service Name page, type RICM and click Next . On the Net Service Name Configuration, Select Protocols page, select TCP and click Next . On the Net Service Name Configuration, TCP/IP Protocol page, enter the host name and use default port number 1521 unless it has changed. Click Next . On the Net Service Name Configuration, Test page, select Yes, perform a test and click Next . For the first test, if the connection fails, click Change Login , and provide the new user name and password. Then, repeat the test. After the test connects successfully, click Next . On the Net Service Name Configuration, Another Net Service Name page, select No and click Next . On the Net Service Name Configuration Done page, click Next . C