Posts Tagged ‘Run’

Mysql-Run optimize table

Thursday, July 24th, 2008

his command defragments a table after you have deleted a lot of rows from it.

Google Earth API—>Run Google Earth Applications in Browser

Friday, June 20th, 2008

Google have recently released a Google Earth plug-in and API. So now you can easily view Google Earth-based applications – with functionality defined by the developer of a site – in your (Windows) browser. It’s like a framework for Google Maps browser-only application. I’ve tried using it in Internet Explorer and it works like a

Hide in the (Network) Neighborhood

Wednesday, June 18th, 2008

Don’t want your XP computer to show up in the network browse list (Network Neighborhood/My Network Places) to other users on your network? One way to accomplish that is to disable file sharing. To do this, click Start, right click My Network Places and select Properties. Right click your local area connection and click Properties. Uncheck the box that says File and Printer Sharing for Microsoft Networks. Click OK.

But what if you want to be able to share folders with some users; you just don’t want everyone on the network to see your computer’s shares? There’s a way:

Click Start and select Run.
In the Run box, type net config server /hidden:yes
Click OK.
Now others who know the UNC path (\\computer name\share name) can connect to your computer’s shares from the Run box, but it won’t show up in the network browse list.

Remove the Links folder in IE Favorites

Wednesday, June 18th, 2008

If you’re one of the many people that NEVER use the “links” folder in your favorites and can’t keep windows for re-creating it. Here’s how:

[Start] [Run] [Regedit]

Registry Key: HKEY_CURRENT_USER\ Software\ Microsoft\ Internet Explorer\ Toolbar

Modify/Create the Value Data Type(s) and Value Name(s) as detailed below.

Data Type: REG_SZ [String Value] // Value Name:

LinksFolderName

Value Data: [Set the String Value to a blank string]

Open Internet Explorer and manually delete the Links folder from Favorites Menu. The Links folder will not be recreated. Exit Registry and Reboot.

Delete An Undeletable File

Wednesday, June 18th, 2008

Open a Command Prompt window and leave it open.
Close all open programs.
Click Start, Run and enter TASKMGR.EXE
Go to the Processes tab and End Process on Explorer.exe.
Leave Task Manager open.
Go back to the Command Prompt window and change to the directory the AVI (or other undeletable file) is located in.
At the command prompt type DEL where is the file you wish to delete.
Go back to Task Manager, click File, New Task and enter EXPLORER.EXE to restart the GUI shell.
Close Task Manager.

Or you can try this

Open Notepad.exe

Click File>Save As..>

locate the folder where ur undeletable file is

Choose ‘All files’ from the file type box

click once on the file u wanna delete so its name appears in the ‘filename’ box

put a ” at the start and end of the filename
(the filename should have the extension of the undeletable file so it will overwrite it)

click save,

It should ask u to overwrite the existing file, choose yes and u can delete it as normal

Here’s a manual way of doing it. I’ll take this off once you put into your first post zain.

1. Start
2. Run
3. Type: command
4. To move into a directory type: cd c:\*** (The stars stand for your folder)
5. If you cannot access the folder because it has spaces for example Program Files or Kazaa Lite folder you have to do the following. instead of typing in the full folder name only take the first 6 letters then put a ~ and then 1 without spaces. Example: cd c:\progra~1\kazaal~1
6. Once your in the folder the non-deletable file it in type in dir - a list will come up with everything inside.
7. Now to delete the file type in del ***.bmp, txt, jpg, avi, etc… And if the file name has spaces you would use the special 1st 6 letters followed by a ~ and a 1 rule. Example: if your file name was bad file.bmp you would type once in the specific folder thorugh command, del badfil~1.bmp and your file should be gone. Make sure to type in the correct extension.

Hidden Programs In Windows XP

Wednesday, June 18th, 2008

Strange, but true that some good programs are hidden in Windows XP !!!

Programs :

1. Private Character Editor :
Used for editing fonts,etc.

** start>>Run
** Now, type eudcedit

2. Dr. Watson :
This an inbuilt windows repairing software !

** start>>Run
** Now, type drwtsn32

3. Media Player 5.1 :
Even if you upgrade your Media Player, you can still access your old player in case the new one fails !!!

** start>>Run
** Now, type mplay32

4. iExpress :
Used to create Setups

You can create your own installers !

** start>>Run
** Now, type iexpress

Hide Files in Image Files

Wednesday, June 18th, 2008

So, now i have got a trick to hide files in image files !!!

Here it is :

** You require WinRAR installed on your PC for this trick.
** First add your files to .rar and i.e. say files.rar
** Say you have a image as img.jpg
** Now, save files.rar and img.jpg in c:\ drive.
** Click start >> Run
** Type cmd
** Now in command prompt type cd..
** Again type cd..
** Type copy /b img.jpg + files.rar new.jpg

————– Please Note ————–

>> This command will concatenate the two files into the new file new.jpg
>> Don’t type files.rar + img.jpg instead of img.jpg + files.rar.
>> Now, (size of new.jpg) = (size of img.jpg) + (size of files.rar) .

——————————————-

*** Mission Accomplished !!! ***

Now, we have new.jpg consisting of both img.jpg and files.rar .

Accessing the files :

** Double click new.jpg and img.jpg can be viewed.

** Now, to access files.rar :
# Right click on new.jpg >> Select Open With >> Choose Program…
# Select WinRAR archiver.
# Now, simply Extract your files !

Display Your Quick Launch Toolbar Tip

Wednesday, June 18th, 2008

[ Start] [Run] [Regedit]
Registry Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\BitBucket
Modify/Create the Value Data Type(s) and Value Name(s) as detailed below.
Data Type: DWORD // Value Name: NukeOnDelete
Setting for Value Data: [0 = Use Recycle Bin / 1 = Permanently Delete]
Exit Registry and Reboot

Automate the DIR Command

Tuesday, June 17th, 2008

If your are using same switches frequently in Command prompt then open your system command prompt using open Run option

Click Start and open Run option then type cmd to open command prompt, here type

set dircmd=/w/o/p

then press Enter, now every time thereafter that you type

dir

the /w/o/p switches will be automatically applied and now need to type every time. If your are interested to use single switch like /w you can use it

set dircmd=/w

and press Enter.

and same if you wants to undo these switches then you can very easily by typing

dir /-switch

For example, if you wanted to do a directory with only the /w switch, you could enter

dir /-p/-o

When you exit the Command prompt window, however, the Dircmd setting returns to its default settings.