Wednesday, December 9, 2009

List of file hosting servers

This summary is not available. Please click here to view the post.

117 Run commands in Windows XP


Run command is very useful, but sometimes it is forgotten. Use it sometimes and you will find how powerful is run command.

1. Accessibility Controls - access.cpl ,                                    2. Accessibility Wizard - accwiz,
3.Add Hardware Wizard - hdwwiz.cpl,                                 4.Add/Remove Programs - appwiz.cpl,
5.Administrative Tools - control admintools,                         6.Bluetooth Transfer Wizard - fsquirt,
7.Calculator - calc,                                                                  8.Certificate Manager - certmgr.msc,
9.Character Map - charmap,                                                    10.Check Disk Utility - chkdsk,
11.Clipboard Viewer - clipbrd,                                               12.Command Prompt - cmd,
13.Component Services - dcomcnfg,                                      14.Computer Management - compmgmt.msc,
15.Control Panel - control,                                                      16.Date and Time Properties - timedate.cpl,
17.DDE Shares - ddeshare,                                                    18.Device Manager - devmgmt.msc,
19.Direct X Troubleshooter - dxdiag,                                     20.Disk Cleanup Utility - cleanmgr,
21.Disk Defragment - dfrg.msc,                                             22.Disk Management - diskmgmt.msc,
23.Disk Partition Manager - diskpart,                                     24.Display Properties - control desktop,
25.Display Properties - desk.cpl,                                            26.Dr. Watson System Troubleshooting Utility - drwtsn32,
27.Driver Verifier Utility - verifier,                                        28.Event Viewer - eventvwr.msc,
29.Files and Settings Transfer Tool - migwiz,                        30.File Signature Verification Tool - sigverif,
31.Findfast - findfast.cpl,                                                       32.Firefox - firefox,
33.Folders Properties - control folders,                                  34.Fonts - control fonts,
35.Fonts Folder - fonts,                                                          36.Free Cell Card Game - freecell,
37.Game Controllers - joy.cpl,                                                38.Group Policy Editor (for xp professional) - gpedit.msc,
39.Hearts Card Game - mshearts,                                           40.Help and Support - helpctr,
41.HyperTerminal - hypertrm,                                                42.Iexpress Wizard - iexpress,
43.Indexing Service - ciadv.msc,                                            44.Internet Connection Wizard - icwconn1,
45.Internet Explorer - iexplore,                                               46.Internet Properties - inetcpl.cpl,
47.Keyboard Properties - control keyboard,                           48.Local Security Settings - secpol.msc,
49.Local Users and Groups - lusrmgr.msc,                             50.Logs You Out Of Windows - logoff,
51.Malicious Software Removal Tool - mrt,                           52.Microsoft Chat - winchat,
53.Microsoft Movie Maker - moviemk,                                  54.Microsoft Paint - mspaint,
55.Microsoft Syncronization Tool - mobsync,                        56.Minesweeper Game - winmine,
57.Mouse Properties - control mouse,                         58.Mouse Properties - main.cpl,
59.Netmeeting - conf,                                                             60.Network Connections - control netconnections,
61.Network Connections - ncpa.cpl,                                      62.Network Setup Wizard - netsetup.cpl,
63.Notepad - notepad,                                                                        64.Object Packager - packager,
65.ODBC Data Source Administrator - odbccp32.cpl,          66.On Screen Keyboard - osk,
67.Outlook Express - msimn,                                                  68.Paint - pbrush,
69.Password Properties - password.cpl,                                 70.Performance Monitor - perfmon.msc,
71.Performance Monitor - perfmon,                                       72.Phone and Modem Options - telephon.cpl,
73.Phone Dialer - dialer,                                                         74.Pinball Game - pinball,
75.Power Configuration - powercfg.cpl,                                76.Printers and Faxes - control printers,
77.Printers Folder - printers,                                                   78.Regional Settings - intl.cpl,
79.Registry Editor - regedit,                                                   80.Registry Editor - regedit32,
81.Remote Access Phonebook - rasphone,                             82.Remote Desktop - mstsc,
83.Removable Storage - ntmsmgr.msc,                                  84.Removable Storage Operator Requests - ntmsoprq.msc,
85.Resultant Set of Policy (for xp professional) - rsop.msc,  86.Scanners and Cameras - sticpl.cpl,
87.Scheduled Tasks - control schedtasks,                              88.Security Center - wscui.cpl,
89.Services - services.msc,                                                      90.Shared Folders - fsmgmt.msc,
91.Shuts Down Windows - shutdown,                                  92.Sounds and Audio - mmsys.cpl,
93.Spider Solitare Card Game - spider,                                  94.SQL Client Configuration - cliconfg,
95.System Configuration Editor - sysedit,                             96.System Configuration Utility - msconfig,
97.System Information - msinfo32,                                        98.System Properties - sysdm.cpl,
99.Task Manager - taskmgr,                                                    100.TCP Tester - tcptest,
101.Telnet Client - telnet,                                                       102.User Account Management - nusrmgr.cpl,
103.Utility Manager - utilman,                                               104.Windows Address Book - wab,
105.Windows Address Book Import Utility - wabmig,         106.Windows Explorer - explorer,
107.Windows Firewall - firewall.cpl,                                     108.Windows Magnifier - magnify,
109.Windows Management Infrastructure - wmimgmt.msc, 110.Windows Media Player - wmplayer,
111.Windows Messenger - msmsgs,                                       112.Windows System Security Tool - syskey,
113.Windows Update Launches - wupdmgr,                         114.Windows Version - winver,
115.Windows XP Tour Wizard - tourstart,                            116.Wordpad - write
117.Automatic Updates - wuaucpl.cpl,

Thursday, November 26, 2009

Windows Management Instrumentation Service not available in windows services.


This happens if the operating system is not installed properly or “winmgmt.exe, winmgmtr.dll & wmi.mfl” is missing or these files are damaged due to number of reasons.

Resolution
•    Copy the winmgmt.exe, winmgmtr.dll & wmi.mfl from any PC with same operating system (with its service pack) and paste it in “C:\Windows\System32\Wbem”

•    Now type the following command in CMD.
o    Winmgmt/kill                (To kill any windows management based application that is running)
o    Winmgmt/clearadap     (To clear the windows management adapter settings)
o    Winmgmt/unregserver  (To un-register the windows management components)
o    Winmgmt/regserver     (To register the windows management components)

•    Now, open services.msc and start the service that is added.

Friday, November 13, 2009

Windows Services(creating and deleting)


How to Register or Create a Service in Windows.
Process:
Go to start menu
Run.
Type CMD.
Here Type: [sc create “Chicken” binpath=  “C:\Chicken.exe”]
Note:
Remove brackets when typing this command.


How to Delete a Service in Windows.
Process:
Go to start menu
Run.
Type CMD.
Here Type: [sc Delete ClinckSystemLayer]
Note:
ClinckSystemLayer is a registered service so you can delete without giving whole path.
 

Thursday, October 29, 2009

Why Repair/Reset Winsock settings?

Most of the Internet connectivity problems arise out of corrupt Winsock settings. Windows sockets settings may get corrupted due to the installation of a networking software, or perhaps due to Malware infestation. You will be able connect to the Internet, but the packets won't transfer back and forth. And errors such as Page cannot be displayed may occur when using Internet Explorer. This article lists the methods (with links to third-party websites) to reset/repair the Winsock configuration to defaults.


Windows XP Service Pack 2 - New Winsock NETSH commands
These Two new Netsh commands are available in Windows XP Service Pack 2.


1.    netsh winsock reset catalog.
This command resets the Winsock catalog to the default configuration. This can be useful if a malformed LSP is installed that results in loss of network connectivity. While use of this command can restore network connectivity, it should be used with care because any previously-installed LSPs will need to be re-installed. The output results to this in Command Prompt (CMD.EXE) “netsh winsock reset”


2.    netsh winsock show catalog.
This command displays the list of Winsock LSPs that are installed on the computer. The output results to a file type this in Command Prompt (CMD.EXE) “netsh winsock show catalog >D:\Winsock.txt”


There are also some Tools available to reset.


WinSock XP Fix offers a last resort if your Internet connectivity has been corrupted due to invalid or removed registry entries. It can often cure the problem of lost connections after the removal of Adware components or improper uninstall of firewall applications or other tools that modify the XP network and Winsock settings. If you encounter connection problems after removing network related software, Adware or after registry clean-up; and all other ways fail, then give WinSock XP Fix a try. It can create a registry backup of your current settings, so it is fairly safe to use. We actually tested it on a test machine that was having a Winsock problem due to some Adware removal, and after running the utility and rebooting, the connectivity was restored.

Pros: May save you hours of headaches; can fix tricky connection problems
Cons: Not actively supported or developed
Type: Freeware.
OS: Win XP