Sabka Dost....... India Post...... DISCLAIMER CERTIFICATE - All the information on this website is published in good faith and for general information purpose only. We do not make any warranties about the completeness, reliability and accuracy of this information. Any action you take upon the information on our website is strictly at your own risk. And we will not be liable for any losses and damages in connection with the use of our website. From our website, you can visit other websites by following hyperlinks to these sites. While we strive to provide only links to useful and ethical websites, we have no control over the content and nature of these sites and the links to other websites do not imply a recommendation for all the content found on these sites. Please be also aware that when you leave our website, other sites may have different privacy policies

Friday, September 21, 2012

RUN Commands for XP,Vista, Windows 7

Some useful RUN commands:

1.Microsoft Access* msaccess
2.Microsoft Excel* excel
3.Microsoft Malicious Software Removal Tool mrt
4.Microsoft Paint mspaint
5.Microsoft Powerpoint* powerpnt
6.Microsoft Support Diagnostic Tool (Vista/Win7) msdt
7.Microsoft Word* winword
8.Mouse Properties control mouse
9.Mouse Properties main.cpl
10.MSN Messenger* msnmsgr

11.Regional Settings intl.cpl
12.Registry Editor regedit

13.Calculator-calc
14.Groupeditor-gpedit.msc
15.Dispaly Setting-desk.cpl
16.Event Viewer-eventvwr.msc
17.Game Contoller-joy.cpl

18.iP Configuration (Display Connection Configuration)-ipconfig /all
19.IP Configuration (Display DNS Cache Contents)-ipconfig /displaydns
20.IP Configuration (Delete DNS Cache Contents)-ipconfig /flushdns
21.IP Configuration (Release All Connections)-ipconfig /release
22.IP Configuration (Renew All Connections)-ipconfig /renew
23.IP Configuration (Refreshes DHCP & Re-Registers DNS)-ipconfig /registerdns
24.IP Configuration (Display DHCP Class ID)-ipconfig /showclassid
25.IP Configuration (Modifies DHCP Class ID)-ipconfig /setclassid



26.Shared Folders-fsmgmt.msc
27.Shuts Down Windows -shutdown

28.System File Checker Utility ( Scan Immediately )-sfc /scannow
29.System File Checker Utility ( Scan Once At Next Boot )-sfc /scanonce
30.System File Checker Utility ( Scan On Every Boot )-sfc /scanboot
31.System File Checker Utility ( Return to Default Settings)-sfc /revert
32.System File Checker Utility ( Purge File Cache )-sfc /purgecache
33.System File Checker Utility ( Set Cache Size to Size x )-sfc /cachesize=x
34.System Information-msinfo32
35.System Properties-sysdm.cpl
36.Task Manager-taskmgr



Courtesy : sapost.blogspot.in

ePayment Reset Registration

Do the web registration again and use the new user name and password for client registration after running the file eCounterResetRegistration.exl using script tool.

eCounterResetRegistration.exl

Cancel a Print Job Without Waiting Years

Ever tried canceling a print job in Windows but feel like it takes ages before anything actually happens? 
Windows is unable to cancel print jobs while the temporary file created for the print job is still being used by Windows. The solution: You've got to stop the spoolsv.exe service in the Windows Task Manager, delete any outstanding print jobs in the C:\Windows\system32\spool\printers\ directory, restart the spoolsv.exe service, and then start printing again. That's a lot of work to do manually, particularly if this is a problem you run into regularly, 

Here is the script for a batch file; just copy this to a new text document and save as "Clearprint.bat"
@echo off
echo Stopping print spooler.
echo.
net stop spooler
echo deleting stuff... where? I'm not sure. Just deleting stuff.
echo.
del "%systemroot%\system32\spool\printers\*.shd"
del "%systemroot%\system32\spool\printers\*.spl"
echo Starting print spooler.
echo.
net start spooler

 When click the Clearprint.bat file all the print request will be deleted & printer is ready to accept new request.