Showing posts with label Computer Guidelines. Show all posts
Showing posts with label Computer Guidelines. Show all posts

Thursday, December 29, 2011

DOS / Windows IP Commands


Below, you'll find a list of the most common IP commands for Windows and DOS. These include ipconfig, trace route, netstat, arp, route, hostname, control netconnections, and other popular DOS and Windows IP commands.

C:\> 

Display Connection Configuration: ipconfig /all

Display DNS Cache Info: ipconfig /displaydns

Clear DNS Cache: ipconfig /flushdns

Release All IP Address Connections: ipconfig /release


Renew All IP Address Connections: ipconfig /renew

Re-Register the DNS connections: ipconfig /registerdns

Change/Modify DHCP Class ID: ipconfig /setclassid

Network Connections: control netconnections

Network Setup Wizard: netsetup.cpl

Test Connectivity: ping whatismyip.com

Trace Route: tracert

Displays the TCP/IP protocol sessions: netstat

Display Local Route: route

Display Resolved MAC Addresses: arp

Display Name of Computer Currently on: hostname

Display DHCP Class Information: ipconfig /showclassid

NameServer Lookup: nslookup whatismyip.com

Monday, December 26, 2011

Aakash Tablet PC – DataWind Product



Aakash Tablet PC is mini laptop or tablet pc introduced by Human Resource Development Minister, Kapil Sibal. Aakash tablet PC is world ‘s first low price tablet pc which made for students and teachers and government will pay 50% subsidy on each purchase of product. It is manufacture by DataWind, UK and developed by IIT Rajasthan and datawind company.

Government ordered 1,00,000 pc tablet which will 10000 delivered to IIT Rajasthan and 90,000 tablet will be distribution for other institution and market. It is not available in market for sale. After three or four month after, will launch in market for sale. The cost of Aakash tablet PC will be Rs. 1100 to Rs. 1500 for students and Rs. 2250 to Rs. 2999.
Aakash tablet pc has many features and specification which make it best device. This tablet work on Android 2.2 operating system with 7 inch touch screen display, 256 MB ram, 2 GB hard drive which expendable to 32 GB by micro MMC and 2-3 hour battery backup. This device support various document, video and audio formats and also compatible for Internet browser and wi-fi connectivity.

Courtesy : http://aakashtabletpc.com/

Sunday, December 25, 2011

Basic Input Output System (BIOS)


The BIOS is a special software usually stored on a Flash memory chip on the motherboard. It is used by the microprocessor (processor) to get the computer system started after it is turned on. It also manages data flow between the computer's operating system and attached devices such as the hard disk, video adapter, keyboard, mouse, printer etc. When BIOS boots up (starts up) the computer, it first determines whether all of the attachments are in place and operational and then it loads the operating system (or key parts of it) into the computer's random access memory (RAM) from hard disk or diskette drive.

The BIOS uses CMOS (Complementary Metal Oxide Semiconductor) technology to save any changes made to the computer's settings. A small lithium or Ni-Cad cell, installed on the motherboard, supplies power to keep the data for years. To enter the CMOS Setup for altering custom settings of a computer, a certain key during the initial startup sequence is required to be pressed. Most systems use "Del," or "F1," keys to enter CMOS setup.
On entering CMOS setup, a text menu screen, the contents of which are different for different BIOS manufacturers, is displayed. The menu screen provides links for opening pages for changing various BIOS settings of the computer. These menus enable change of the following
  • System Time/Date
  • Drive Configuration
  • Boot Sequence - setting the order of boot devices;
  • Plug and Play;
  • Integrated peripherals;
  • Advanced chipset features;
  • Setting password for computer access;
  • Power Management etc.
The changes to CMOS setup must be made very carefully. Incorrect settings may stop the computer from booting.

Tuesday, December 20, 2011

Basic Knowledge in Computer Science Must


Students do certification courses but fail to gain overall knowledge about the nature and fundamentals of computer sciences, says an expert.
Over the past few years, the share of ITES companies to our economy has been rising consistently. Though experts boast of the country's software prowess and there is a steady increase in the number of graduates with a computer science degree, not a single proprietary software product has come from any Indian firm. What causes these lacunae in the system?
John W. Walz, International President, IEEE Computer Society 2012, believes that this anomaly is a result of the lack of strong fundamental knowledge in the students.
“Students in India go through rote learning and do not have strong fundamental knowledge in any domain. They do certification courses which give them a good knowledge of specific software but fail to gain overall knowledge about the nature and fundamentals of the computer sciences,” he opined.
Though the Indian government agencies lay down the curriculum for courses in computer sciences, because of the rapid development of new technologies, it needs to be constantly updated or one risks learning obsolete technologies, he adds.

What could be a possible solution for this problem? Mr. Walz says that IEEE Computer Society's ‘Software Engineering Body of Knowledge' (SWEBOK) holds the key. “IEEE Computer Society is an International body comprising the experts and professionals from the computer industry. The society has compiled the available body of knowledge under SWEBOK in 2005 which will be revised in 2012. This body of knowledge ensures that a student gets a thorough knowledge in any field related to computer engineering,” he said.
Nearly 200 American universities are following SWEBOK and IEEE volunteers conduct yearly appraisals to check the level of compliance, he said.
To give the students a better edge and to ensure that they are ready with the requisite knowledge, when they join the industry, the society is also offering exams to give them basic and advanced certification. “The basic certificate ‘Certified Software Development Associate' will equip a fresh graduate with the foundation required to join a job and the advanced certificate ‘Certified Software Development Professional' is for candidates with three to four years of experience,” Mr. Walz explained. The society is currently offering these exams in the U.S. and will offer them in India soon, he said.
With global economies in the doldrums, should students choose computer science as an option? Mr. Walz says that students should definitely take computer science.
“Whatever may be the position of the economy, computer sciences is set to retain its prominence. With the newer technologies rolling out, automation of the processes is going to increase and this provides an opportunity for the software engineers,” he explained.
But Mr. Walz also has a piece of advice for the aspiring computer science student.
“Bigger companies will stop relying on the back office operations when cloud computing becomes more secure and reliable. Students who do not acquire strong fundamental knowledge in computer sciences will be relegated to inferior positions,” he warns.
 Source : Hindu dtd 19/12/2011

Friday, December 16, 2011

Usage of Attrib Command


Attrib allows a user to change the properties of a specified file. Using Attrib, the user has the capability of changing the file to have any of the below attributes. This command is available in DOS 3.0 and above and Windows 95 and above. We need to apply(+) or (-) option to apply or remove the effect.
  • Read-only (R): Allowing the file to be only viewed and not written to.
  • Archived (A): Allowing Microsoft backup and other backup programs to know what files to backup.
  • Hidden (H): Making the file invisible to standard users.
  • System (S): Making the file an important system file.
Syntax: attrib [+/-] [r/a/h/s] [filename]

Examples
  • To Set the Read Only permission to Autoexec.bat present in CDrive, we need to run the Command: "attrib +r c:\autoexec.bat"
  • To Remove the Read Only permission from Autoexec.bat, we need to run the Command: "attrib -r c:\autoexec.bat"
  • To Set the Hidden permission to Autoexec.bat, we need to run the command: "attrib +h c:\autoexec.bat"
  • To Remove the Hidden permission from Autoexec.bat, we need to run the Command: "attrib -h c:\autoexec.bat"
When you create any file or directory, Archive Attribute set by default. If you want to see the Attribute for each file, just run "attrib" Command and it will show you the present attribute. If you want to see the file with Read Only attribute, run "dir /ar" Command. Similarly for Hidden Attribute run "dir /ah" and for System Attribute run "dir /as".

In ideal DOS, it is not possible to delete any file having Read Only or Hidden attributes, but if you are working with Windows Shell, you can delete the file having these attributes.

Use of IPConfig Command


Ipconfig is a DOS utility that can be used from MS-DOS and a MS-DOS shell to display the network settings currently assigned and given by a network. This command can be utilized to verify a network connection as well as to verify your network settings. The ipconfig.exe command is an external command and is available in Windows 95, Windows 98, Windows ME, Windows 2000, Windows XP, Windows Vista and Windows 7.

Syntax - ipconfig [switches]

Windows 95, 98 and ME Switches
  • /ALL - Display detailed information.
  • /BATCH [FILE] - Write to file or ./WINIPCFG.OUT.
  • /RENEW_ALL - Renew all adapters.
  • /RELEASE_ALL - Release all adapters.
  • /RENEW N - Renew adapter N.
  • /RELEASE N - Release adapter N.
Windows 2000 and XP Switches
  • /ALL - Display full configuration information.
  • /RELEASE - Release the IP address for the specified adapter.
  • /RENEW - Renew the IP address for the specified adapter.
  • /FLUSHDNS - Purges the DNS Resolver cache.
  • REGISTERDNS - Refreshes all DHCP leases and re-registers DNS names.
  • /DISPLAYDNS - Display the contents of the DNS Resolver Cache.
  • /SHOWCLASSID - Displays all the dhcp class IDs allowed for adapter.
  • /SETCLASSID - Modifies the dhcp class id.
The default is to display only the IP address, subnet mask and default gateway for each adapter bound to TCP/IP. For Release and Renew, if no adapter name is specified, then the IP address leases for all adapters bound to TCP/IP will be released or renewed. For SetClassID, if no class id is specified, then the classid is removed.

How to turn off your computer immediately & safely?

Does you computer takes too much time to turn off? If yes, you are not the only user. Let me tell you the way to turn off your computer immediately. Don't worry, this method is totally safe and harmless. 
  • Open the task manager by pressing Ctrl + Alt + Del key.
  • Now press Alt + U. Your shut down menu will open.
  • Now keep pressing Ctrl key and then click on Turn Off menu. Your computer will turn off within 3 seconds. Just try it.

Microsoft Windows, Word, Excel, IE Shortcut keys

Microsoft Windows shortcut keysBelow commands may not work in some versions of Microsoft Windows.
  • Alt + Tab: Switch between open applications.
  • Alt + Shift + Tab: Switch backwards between open applications.
  • Alt + double-click: Display the properties of the object you double-click on. For example, doing this on a file would display its properties.
  • Ctrl + Tab: Switches between program groups or document windows in applications that support this feature.
  • Ctrl + Shift + Tab: Same as above but backwards.
  • Alt + Print Screen: Create a screen shot only for the program you are currently in.
  • Ctrl + Print Screen: Creates a screen shot of the entire screen
  • Ctrl + Alt + Del: Reboot the computer and/or bring up the Windows task manager.
  • Ctrl + Shift + Esc: Immediately bring up the Windows task manager.
  • Ctrl + Esc: Bring up the Windows Start menu. In Windows 3.x this would bring up the Task Manager.
  • Alt + Esc: Switch Between open applications on taskbar.
  • F1: Activates help for current open application.
  • F2: Renames selected Icon.
  • F3: Starts find from desktop.
  • F4: Opens the drive selection when browsing.
  • F5: Refresh Contents to where you were on the page.
  • Ctrl + F5: Refreshes page to the beginning of the page.
  • F10: Activates menu bar.
  • Shift + F10: Simulates right-click on selected item.
  • F4: Select a different location to browse in the Windows Explorer toolbar.
  • Alt + F4: Closes Current open program.
  • Ctrl + F4: Closes Window in Program.
  • F6: Move cursor to different Windows Explorer pane.
  • Alt + Spacebar: Drops down the window control menu.
  • Ctrl + (the '+' key on the keypad): Automatically adjust the widths of all the columns in Windows explorer
  • Alt + Enter: Opens properties window of selected icon or program.
  • Alt + Spacebar: Open the control menu for the current window open.
  • Shift + Del: Delete programs/files without throwing them into the recycle bin.
  • Holding Shift: Boot Safe Mode or by pass system files as the computer is booting. When putting in an audio CD, will prevent CD Player from playing.
  • Enter: Activates the highlighted program.
  • Alt + Down arrow: Display all available options on drop down menu.
  • * (on the keypad): Expands all folders on the currently selected folder or drive in Windows Explorer.
  • + (on the keypad): Expands only the currently selected folder in Windows Explorer.
  • - (on the keypad): Collapses the currently selected folder in Windows Explorer.
  • WINKEY: Pressing the Windows key alone will open Start.
  • WINKEY + F1: Opens the Microsoft Windows help and support center.
  • WINKEY + F3: Opens the Advanced find window in Microsoft Outlook.
  • WINKEY + D: Brings the desktop to the top of all other windows.
  • WINKEY + M: Minimizes all windows.
  • WINKEY + SHIFT + M: Undo the minimize done by WINKEY + M and WINKEY + D.
  • WINKEY + E: Open Microsoft Explorer.
  • WINKEY + Tab: Cycle through open programs through the taskbar.
  • WINKEY + F: Display the Windows Search / Find feature.
  • WINKEY + CTRL + F: Display the search for computers window.
  • WINKEY + F1: Display the Microsoft Windows help.
  • WINKEY + R: Open the run window.
  • WINKEY + Pause/Break key: Open the system properties window.
  • WINKEY + U: Open Utility Manager.
  • WINKEY + L: Lock the computer (Windows XP and above only).
  • WINKEY + P: Quickly change between monitor display types. (Windows 7 only).
  • WINKEY + LEFT ARROW: Shrinks the window to 1/2 screen on the left side for side by side viewing. (Windows 7 only).
  • WINKEY + RIGHT ARROW: Shrinks the window to 1/2 screen on the right side for side by side viewing. (Windows 7 only).
  • WINKEY + UP ARROW: When in the side by side viewing mode, this shortcut takes the screen back to full size. (Windows 7 only).
  • WINKEY + DOWN ARROW: Minimizes the screen. Also, when in the side by side viewing mode, this shortcut takes the screen back to a minimized size. (Windows 7 only).
Microsoft Excel shortcut keys: Below commands may not work in some versions of Microsoft Excel.
  • F2: Edit the selected cell.
  • F5: Go to a specific cell. For example, C6.
  • F7: Spell check selected text and/or document.
  • F11: Create chart.
  • Ctrl + Shift + ; - Enter the current time.
  • Ctrl + ; - Enter the current date.
  • Alt + Shift + F1: Insert New Worksheet.
  • Shift + F3: Open the Excel formula window.
  • Shift + F5: Bring up search box.
  • Ctrl + A: Select all contents of the worksheet.
  • Ctrl + B: Bold highlighted selection.
  • Ctrl + I: Italic highlighted selection.
  • Ctrl + K: Insert link.
  • Ctrl + U: Underline highlighted selection.
  • Ctrl + 5: Strikethrough highlighted selection.
  • Ctrl + P: Bring up the print dialog box to begin printing.
  • Ctrl + Z: Undo last action.
  • Ctrl + F9: Minimize current window.
  • Ctrl + F10: Maximize currently selected window.
  • Ctrl + F6: Switch between open workbooks / windows.
  • Ctrl + Page up: Move between Excel work sheets in the same Excel document.
  • Ctrl + Page down: Move between Excel work sheets in the same Excel document.
  • Ctrl + Tab Move: between Two or more open Excel files.
  • Alt + = - Create a formula to sum all of the above cells
  • Ctrl + ' - Insert the value of the above cell into cell currently selected.
  • Ctrl + Shift + ! - Format number in comma format.
  • Ctrl + Shift + $ - Format number in currency format.
  • Ctrl + Shift + # - Format number in date format.
  • Ctrl + Shift + % - Format number in percentage format.
  • Ctrl + Shift + ^ - Format number in scientific format.
  • Ctrl + Shift + @ - Format number in time format.
  • Ctrl + Arrow key: Move to next section of text.
  • Ctrl + Spacebar: Select entire column.
  • Shift + Spacebar: Select entire row.
Microsoft Word shortcut keys: Below commands may not work in some versions of Microsoft Word.
  • Ctrl + A: Select all contents of the page.
  • Ctrl + B: Bold highlighted selection.
  • Ctrl + C: Copy selected text.
  • Ctrl + E: Aligns the line or selected text to the center of the screen.
  • Ctrl + F: Open find box.
  • Ctrl + I: Italic highlighted selection.
  • Ctrl + J: Aligns the selected text or line to justify the screen.
  • Ctrl + K: Insert link.
  • Ctrl + L: Aligns the line or selected text to the left of the screen.
  • Ctrl + M: Indent the paragraph.
  • Ctrl + P: Open the print window.
  • Ctrl + R: Aligns the line or selected text to the right of the screen.
  • Ctrl + T: Create a hanging indent.
  • Ctrl + U: Underline highlighted selection.
  • Ctrl + V: Paste.
  • Ctrl + X: Cut selected text.
  • Ctrl + Y: Redo the last action performed.
  • Ctrl + Z: Undo last action.
  • Ctrl + Shift + F: Change the font.
  • Ctrl + Shift + > - Increase selected font +1pts up to 12pt and then increases font +2pts.
  • Ctrl + ] - Increase selected font +1pts.
  • Ctrl + Shift + < - Decrease selected font -1pts if 12pt or lower, if above 12 decreases font by +2pt.
  • Ctrl + [ - Decrease selected font -1pts.
  • Ctrl + Shift + * - View or hide non printing characters.
  • Ctrl + left arrow: Moves one word to the left.
  • Ctrl + right arrow: Moves one word to the right.
  • Ctrl + up arrow: Moves to the beginning of the line or paragraph.
  • Ctrl + down arrow: Moves to the end of the paragraph.
  • Ctrl + Del: Deletes word to right of cursor.
  • Ctrl + Backspace: Deletes word to left of cursor.
  • Ctrl + End: Moves the cursor to the end of the document.
  • Ctrl + Home: Moves the cursor to the beginning of the document.
  • Ctrl + Spacebar: Reset highlighted text to the default font.
  • Ctrl + 1: Single-space lines.
  • Ctrl + 2: Double-space lines.
  • Ctrl + 5:1.5-line spacing.
  • Ctrl + Alt + 1: Changes text to heading 1.
  • Ctrl + Alt + 2: Changes text to heading 2.
  • Ctrl + Alt + 3: Changes text to heading 3.
  • Ctrl + F1: Open the Task Pane.
  • F1: Open Help.
  • Alt + Ctrl + F2: Open new document.
  • Ctrl + F2: Display the print preview.
  • Shift + F3: Change the text in Microsoft Word from upper to lower case or a capital letter at the beginning of every word.
  • Shift + Insert: Paste.
  • F4: Repeat the last action performed (Word 2000+)
  • F5: Open the find, replace, and go to window in Microsoft Word.
  • Ctrl + Shift + F6: Opens to another open Microsoft Word document.
  • F7: Spell and grammar check selected text and/or document.
  • Shift + F7: Runs a Thesaurus check on the word highlighted.
  • F12: Save as.
  • Shift + F12: Save.
  • Ctrl + Shift + F12: Prints the document.
  • Alt + Shift + D: Insert the current date.
  • Alt + Shift + T: Insert the current time.
Microsoft Internet Explorer shortcut keys: Below commands may not work in some versions of Microsoft Internet Explorer.
  • Alt + Left Arrow: Back a page.
  • Backspace: Back a page.
  • Alt + Right Arrow: Forward a page.
  • F5: Refresh current page, frame, or tab.
  • F11: Display the current website in full screen mode. Pressing F11 again will exit this mode.
  • Esc: Stop page or download from loading.
  • Ctrl + (- or +) - Increase or decrease the font size, pressing '-' will decrease and '+' will increase.
  • Ctrl + Enter: Quickly complete an address. For example, typemicrosoft in the address bar and press CTRL + ENTER to gethttp://www.microsoft.com.
  • Ctrl + D: Add a Favorite for the page currently opened.
  • Ctrl + I: Display available bookmarks.
  • Ctrl + N: Open New browser window.
  • Ctrl + P: Print current page / frame.
  • Ctrl + T: Opens a new tab.
  • Ctrl + F4: Closes the currently selected tab.
  • Ctrl + Tab: Moves through each of the open tabs.
  • Spacebar: Moves down a page at a time.
  • Shift + Spacebar: Moves up a page at a time.
  • Alt + Down arrow: Display all previous text entered in a text box and/or available options on drop down menu.
  • Alt + D: Highlights the text in the address bar
Mozilla Firefox shortcut keys: Below commands may not work in some versions of Mozilla Firefox.
  • Alt + Left Arrow: Back a page.
  • Backspace: Back a page.
  • Alt + Right Arrow: Forward a page.
  • F5: Refresh current page, frame, or tab.
  • F11: Display the current website in full screen mode. Pressing F11 again will exit this mode.
  • Esc: Stop page or download from loading.
  • Ctrl + (- or +) - Increase or decrease the font size, pressing '-' will decrease and '+' will increase.
  • Ctrl + Enter: Quickly complete an address. For example, typemicrosoft in the address bar and press CTRL + ENTER to gethttp://www.microsoft.com.
  • Shift + Enter: Complete a .net instead of a .com address.
  • Ctrl + Shift + Enter: Complete a .org address.
  • Ctrl + Shift + Del: Open the Clear Data window to quickly clear private data.
  • Ctrl + D: Add a bookmark for the page currently opened.
  • Ctrl + I: Display available bookmarks.
  • Ctrl + J: Display the download window.
  • Ctrl + N: Open New browser window.
  • Ctrl + P: Print current page / frame.
  • Ctrl + T: Opens a new tab.
  • Ctrl + F4 or Ctrl + W: Closes the currently selected tab.
  • Ctrl + Shift + T: Undo the close of a window.
  • Ctrl + Tab: Moves through each of the open tabs.
  • Spacebar: Moves down a page at a time.
  • Shift + Spacebar: Moves up a page at a time.
  • Alt + Down arrow: Display all previous text entered in a text box and/or available options on drop down menu.
How to create own shortcut keys

Create a shortcut 
  • Open the folder or directory that contains the program you wish to create a shortcut for.
  • Right-click on the program and click Create Shortcut.
  • This will create a shortcut named "Shortcut to " in the directory you are in. If you wish to rename this shortcut, right-click the file and click rename.
  • Once the above steps have been completed, you can copy or cut this shortcut and paste it anywhere to execute this program.
Assign shortcut key to that Windows shortcut
  • Once the shortcut has been created to assign a shortcut key to that Windows shortcut follow the below steps.
  • Right-click the shortcut and click Properties.
  • Click the Shortcut tab.
  • Click in the Shortcut key box and press a letter. For example, if you press "p" the shortcut key will automatically be made Ctrl + Alt + P. Which means if saved when pressing Ctrl and Alt and "P" all at the same time will run that shortcut.

About File Type ( JPG , GIF , PNG )

Following are the most commonly used graphics file formats for putting graphics on the World Wide Web and how each differs from the others.

JPEG/JPG: Short for Joint Photographic Experts Group, the original name of the committee that wrote the standard. JPG is one of the image file formats supported on the Web. JPG is a lossy compression technique that is designed to compress color and grayscale continuous-tone images. The information that is discarded in the compression is information that the human eye cannot detect. JPG images support 16 million colors and are best suited for photographs and complex graphics. The user typically has to compromise on either the quality of the image or the size of the file. JPG does not work well on line drawings, lettering or simple graphics because there is not a lot of the image that can be thrown out in the lossy process, so the image loses clarity and sharpness.

GIF: Short for Graphics Interchange Format, another of the graphics formats supported by the Web. Unlike JPG, the GIF format is a lossless compression technique and it supports only 256 colors. GIF is better than JPG for images with only a few distinct colors, such as line drawings, black and white images and small text that is only a few pixels high. With an animation editor, GIF images can be put together for animated images. GIF also supports transparency, where the background color can be set to transparent in order to let the color on the underlying Web page to show through. The compression algorithm used in the GIF format is owned by Unisys, and companies that use the algorithm are supposed to license the use from Unisys (Unisys announced in 1995 that it would require people to pay licensing fees in order to use GIF. This does not mean that anyone who creates or uses a GIF image has to pay for it. Authors writing programs that output GIF images are subject to licensing fees).

PNG: Short for Portable Network Graphics, the third graphics standard supported by the Web (though not supported by all browsers). PNG was developed as a patent-free answer to the GIF format but is also an improvement on the GIF technique. An image in a lossless PNG file can be 5%-25% more compressed than a GIF file of the same image. PNG builds on the idea of transparency in GIF images and allows the control of the degree of transparency, known as opacity. Saving, restoring and re-saving a PNG image will not degrade its quality. PNG does not support animation like GIF does.

List of Unnecessary Services in Windows


In Windows operating system, we have many services which are not necessary for day to day working. These services use resource of Windows and decrease the performance of the operating system. We can simply disable these services to enhance the machine performance. To disable any services, please follow the steps (please note that you will need Administrator privilege to perform these tasks):
  • Click on Start -> Settings -> Control Panel.
  • Go to "Administrative Tools".
  • Now open "Services". There you will find list of available services.
  • Now double click on any service which you want to stop/start.
  • Now under “Startup type”, select “Disable” through drop down menu.
  • Now click on "Apply" and the "OK".
Following is the list of service which you can disable:
  • Alerter
  • Application Management
  • Background Intelligent Transfer Service
  • Clipbook
  • Error Reporting Service
  • Fast User Switching
  • IMAPI CD-Burning COM Service
  • Indexing Service
  • IP SEC
  • Messenger
  • Net Logon
  • Network DDE
  • NT LM Security Support Provider
  • Performance Logs and Alerts
  • Portable Media Serial Number
  • QOS RSVP
  • Remote Desktop Help Session Manager
  • Remote Registry
  • Routing & Remote Access
  • Secondary Login
  • Smart Card
  • Smart Card Helper
  • SSDP Discovery Service
  • TCP/IP NetBIOS Helper
  • Telnet
  • Uninterruptible Power Supply Service
  • Universal Plug and Play Device Host
  • Upload Manager
  • Volume Shadow Copy Service
  • Web Client
  • Wireless Zero Configuration
  • WMI Performance Adapter

Alasan Memilih Bergabung di Pulsagram Allowances Announcements APLIKASI HP APLIKASI PC Banking bisnis internet BISNIS ONLINE BOLA BSNL Business Cara Buat Akun Liberty Reserve (LR) Cara Daftar Di Neobux Cara kerja Copy Paste Cara mendapatkan uang dari duitbux Cara Mendapatkan Uang dari Facebook Melalui Like To Cash Cara Mudah Cari Dollar Via Donkeymails Cara mudah dapat uang melalui internet dengan Dollarsincome CEA CGHS Computer Guidelines Customer Care dapat dollar gratis Dollar Dari Clicksense Dollar Dari Neobux dollar gratis DOP News DOP Orders DOPT Orders DOWNLOAD Education Employees News Employment News Entertainments Events Exam / Result Exam / Syllabus FACEBOOK FAQ For System Administrators Forms GDS General Informations General Knowledge GOVT Orders Guidelines Hardwares Health Tips Holiday Home Honorarium / Incentives Income Tax INFO KITA Info Lowongan Kerja Internet Tips IPO JOB COPAS Jual KERJA COPY PASTE Kerja Sampingan Kode Bank Indonesia Latest Software Updates Leave Rules Lowongan kerja aman Lowongan kerja copy paste LOWONGAN KERJA ONLINE LTC MACP Mails MASTER BURUNG Membuat Account PayPal Menaikkan atau menurunkan berat badan dengan Herbalife Menghasilkan Uang dari PTC Lokal Wisbux Mobile Tips National Pension System (NPS) Network Trouble shooting News Obat Pemutih Gigi Membuat Gigi Putih Berseri Pay Commission Pension Persmin Pie Susu Bali Paling Enak dan Asli Yah Merek Kami... PLI and RPLI PointOfSale Postal Informations Postal Savings Schemes Printer Trouble shooting Printing Tips Project Arrow ptc terpercaya Questions / Answers Railway Recovery Tips Registry Tips Registry Tools Reimbursement rental mobil di surabaya RMS Rulings SanchayPost Savings Scheme SB Orders SBCO Security Guidelines Security Tips sewa mobil di surabaya Software Tips Softwares SQL Staffs and Welfare Tanya - Jawab Technology TEMPLATE Testimoni Tips and Tricks TN - தமிழ்நாடு Tools Training Transfer / Postings Trouble shooting UnCategorized Union News Useful Softwares Utilities Verifikasi PayPal tanpa Credit Card Virus Solutions Websites windows 7 Windows Server Windows Tips Windows Vista wootekh biolo slimming capsule wsc biolo world slimming capsule biolo