Pages

Tuesday, August 27, 2013

Important RUN Commands For Windows


Everytime when we want to open a particular programee in our system its hard to navigate the programee through the Mouse , So here is a smart solution to save your valuable time, Here i am providing more than 100+ Run commands to complete the work more easier.

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

Tuesday, August 20, 2013

Aptitude in C language

1.          main()
            {
            static int var = 5;
            printf("%d ",var--);
            if(var)
                        main();
            }
Answer:
5 4 3 2 1
           Explanation:
When static storage class is given, it is initialized once. The change in the value of a static variable is retained even between the function calls. Main is also treated like any other ordinary function, which can be called recursively.

2.        void main()
{
            int  const * p=5;
            printf("%d",++(*p));
}
Answer:
                        Compiler error: Cannot modify a constant value.
Explanation:   
p is a pointer to a "constant integer". But we tried to change the value of the "constant integer".

3.      main()
{
            char s[ ]="man";
            int i;
            for(i=0;s[ i ];i++)
            printf("\n%c%c%c%c",s[ i ],*(s+i),*(i+s),i[s]);
}
Answer:
                        mmmm
                       aaaa
                       nnnn
Explanation:
s[i], *(i+s), *(s+i), i[s] are all different ways of expressing the same idea. Generally  array name is the base address for that array. Here s is the base address. i is the index number/displacement from the base address. So, indirecting it with * is same as s[i]. i[s] may be surprising. But in the  case of  C  it is same as s[i].

4.      main()
{
             int c[ ]={2.8,3.4,4,6.7,5};
             int j,*p=c,*q=c;
             for(j=0;j<5;j++) {
                        printf(" %d ",*c);
                        ++q;     }
             for(j=0;j<5;j++){
printf(" %d ",*p);
++p;     }
}

Answer:
                        2 2 2 2 2 2 3 4 6 5
            Explanation:
Initially pointer c is assigned to both p and q. In the first loop, since only q is incremented and not c , the value 2 will be printed 5 times. In second loop p itself is incremented. So the values 2 3 4 6 5 will be printed.

5.      main()
{
            extern int i;
            i=20;
printf("%d",i);
}

Answer: 
Linker Error : Undefined symbol '_i'
Explanation:
                        extern storage class in the following declaration,
                                    extern int i;
specifies to the compiler that the memory for i is allocated in some other program and that address will be given to the current program at the time of linking. But linker finds that no other variable of name i is available in any other program with memory space allocated for it. Hence a linker error has occurred .
 






Foods to eat everyday

Common Abbrevations

Monday, August 5, 2013

How to lock the Folder Without Software(தமிழில் படிக்க)


உங்கள் கணனியில் உங்களுடைய தனிப்பட்ட Photos,Videos,Documents File களை வைத்திருப்பீர்கள் அவற்றை யாரும் பார்க்காமல் ஒரு Folder இல் Password கொடுத்து Lock செய்து மறைத்து வைக்க நினைப்பீர்கள் அவ்வாறு செய்வதற்கு நிச்சயமாக ஒரு மென்பொருளின் உதவி தேவை! எந்தவொரு மென்பொருளும் இல்லாமல் ஒரு Folder ஐ Password கொடுத்து Lock செய்வது எப்படி என்று பார்ப்போம்
  • கீழே படத்தில் உள்ளவாறு Start இல் உள்ள Search Box இல் Notepad என type செய்து ஒரு Noteped ஐ Open செய்து கொள்ளவும்.

Posted Image


2. கீழே உள்ள coding ஐ Copy செய்து நீங்கள் Open செய்த Notepad இல் Paste செய்துகொள்ளவும்
cls
@ECHO OFF
title www.kananinet.com
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto
CONFIRM
:LOCK
ren MyFolder “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p “pass=>”
if NOT %pass%== 123456789 goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

3. பின்பு அதில் 123456789 என்று இலக்கங்கள் உள்ள இடத்தில் உங்களுக்கு விரும்பிய Password ஐ கொடுத்து மாற்றிக்கொள்ளவும்.

4. உங்கள் Notepad இன் File இல் சென்று Save As கொடுக்கவும் இப்பொழுது கீழே படத்தில் உள்ளவாறு ஒரு window தோன்றும் அதில் இந்த File ஐ என்ன Name இல் எங்கு Save செய்ய என்று கேட்கும் உங்களுக்கு விருப்பமான இடத்தை தெரிவு செய்து File Name இல் உங்களுக்கு விரும்பிய பெயர்.bat என்று கொடுத்து Save செய்யவும் உதரணத்துக்கு கீழே படத்தில் Locker.bat என்று கொடுக்கப்பட்டுள்ளது.

Posted Image
5. இப்பொழுது நீங்கள் Save செய்த இடத்தில் நீங்கள் கொடுத்த பெயரில் ஒரு புதிய Batch File வந்திருக்கும், நான் மேலுள்ள படத்தில் Locker.bat என்று Save கொடுத்ததால் Locker என்ற பெயரில் ஒரு Batch File வந்திருப்பதை கீழே படத்தில் பார்க்கவும்.

Posted Image

6. இப்பொழுது நீங்கள் கொடுத்த பெயரில் வந்திருக்கும் Batch File ஐ Click செய்யவும் அதே இடத்தில் My Folder என்ற பெயரில் ஒரு புதிய Folder வந்திருக்கும்.

7. My Folder ஐ திறந்து அதற்குள் உங்களுடைய மறைத்து வைத்து Lock செய்ய வேண்டிய Personal Video,Photo Documents File களை Copy செய்யவும்.

8. இப்பொழுது வெளியே வந்து திரும்பவும் உங்கள் பெயரில் உள்ள Batch File Open செய்யவும் பின்பு கீழே உள்ளவாறு ஒரு Window தோன்றும் அதில் Y என type செய்து Enter கொடுக்கவும் ,இப்பொழுது அந்த My Folder மறைக்கப்பட்டுவிடும்.


Posted Image


9. மீண்டும் மறைக்கப்பட்ட My Folder ஐ பார்ப்பதற்கு உங்கள் பெயரில் உள்ள Batch File ஐ Open செய்யவும் பின்பு கீழே படத்தில் உள்ளவாறு ஒரு Window தோன்றும் அதில் உங்களுடைய Password ஐ கொடுத்து Enter செய்தவுடன் அதே இடத்தில் மறைக்கப்பட்ட My Folder திரும்பவும் வந்துவிடும்



Posted Image


இதை நீங்கள் தேவையான நேரம் Lock செய்து பின்பு Password கொடுத்து திறந்து பார்க்கலாம்!