How to Save Images from Orkut Albums

Orkut.com, world’s most popular social networking site is owned by Google Inc. Here users can creat their own online photo album and share it with their friends.

For security reasons, Orkut by default blocked right click on the album pages and the users can not download or save the images in their computer.

In this article, I will tell you how to save images from a Orkut user’s album in your computer as a JPEG file.

First, Go to the album of the user and click on the photo thumbnail that you want to see and save. When its fully loaded in your browser, left click on the image and drag and drop it in the Address Bar of the browser. The URL will change to something like http://images.orkut.com/../../imagename.jpg. Now click on the go button or press the ¿ [Enter] button on your keyboard.

Save Photos from Orkut

Save Photos from Orkut

The image will now load in the browser using its own direct link. You can now right click on it and save it in your computer.

The filename of the image will be very long and with some random alphabets, rename it to anything you like.

Popularity: 43% [?]

How to Start and end Processes on a remote Computar

Window NT Windows 2000 Resource Kit come with a number of command-line utilities that let you administer Windows NT/2K/2003/XP/Vista computers.For last month’s Take A Crack, We require a collection of such tools-Known as PsTools-find it at

http://download.sysinternals.com/Files/PsTools.zip.

A Resource Kit is a set of software resource and documentation released with or after a major version of Windows.The tools help administrators streamline management tasks such as troubleshooting OS issues, configuring networking and security features, and such. Before we begin, do note that some antivirus scanners might report some of the tools contained in the archive you download as infected-specifically, by a “remote admin” virus. None of the PsTools contain any viruses, though. These tools are sometimes used by certain viruses, and therefore trigger the wrong virus notification.Exclude these tools in your antivirus scanner to disable the warnings.
Extract the tools to a folder. These can be run as standalone programs and don’t need installation.The beauty of PsTools is that you don’t even to install any client software on the remote computers at which you target them.PsTools are interesting and useful; to learn about- and to clarify anything you might want to-visit

http://forum.sysinternals.com.

To start a process on a remote computer, you will require a tool PsExec. This is a lightweight replacement for Telnet you execute processes on other systems, complete with full interactivity for console applications, without having to manually install client software. A simplified usage of this command looks like the following:
PsExec\\computer-u username-p password command
Where computer=The name of the remote computer in UNC format. username=An existing username on the remote computer preceding the-u switch password=The password associated with the username preceding the-p switch. command= The command that is to be run remotely.
To stop a process on a remote computer, you will need the tool called PsKill. This is a utility that can not only kill processes on the local computer, but can also those on remote systems. Just copy PsKill onto your executable path, and type in pskill with the commandline options defined below. A simplified usage of this cmmand looks like.
PsKill-t\\ command-u username-p password process_id process_name.
Where computer= The name of the remote computer in UNC format.
username=An existing username on the remote computer preceding the-u switch.
password=The password associated with the username preceding the-p switch.
process_id= This specifies the process ID of the process you want to kill.
process_name=This specifies the process name of the process or processes you want to kill.
Note here that you can either specify the process ID or the process name of the process you want to kill.If you omit the computer name, PsExec will run the application on the local system, and if you enter a computer name as “\\*” (without the quotes), PsExec will runs the application on all computers in the current domain.If you wish, you can create scripts with multiple commands of the above kind to run it simultaneously against many computers.

Popularity: 50% [?]

Make Explorer’s Menu Bar Vanish, Then Re-appear

There are two solutions of it. I will just discuss the easier one now.

Open Notepad and type in the following:

Windows Registry Editor Version 5.1.00
[ - HKEY_CLASSES_ROOT\CLSID\{ 5b4dae26-b807-11d0-9815-00c04fd91972} ]

Save the file as menubarsdisable.reg
Double click on the file and press Yes when prompted. Restart your computer, and you will see that the menu bar in the windows explorer has dissapared.
Making the Menu Bar reappear is not as simple as reversing the changes you made to make it disapear. Here is what you need to do, open Notepad and type in the following:

Windows Registry Editor Version 5.1.00
[ - HKEY_CLASSES_ROOT\CLSID\{ 5b4dae26-b807-11d0-9815-00c04fd91972} ]
@=”Menu Band”
[ - HKEY_CLASSES_ROOT\CLSID\{ 5b4dae26-b807-11d0-9815-00c04fd91972} \ InProcServer32]
@=hex (2) :25, 00, 53, 00, 79, 00, 73, 00, 74, 00, 65, 00, 6d, 00, 52, 00, 6f, 00, 6f, 00, 74, 00, 25,\
00, 5c, 00, 73, 00, 79, 00, 73, 00, 74, 00, 65, 00, 6d, 00, 33, 00, 32, 00, 5c, 00, 53, 00, 48, 00,\
45, 00, 4c, 00, 4c, 00, 33, 00, 32, 00, 2e, 00, 64, 00, 6c, 00, 6c, 00, 00, 00
“ThreadingModel”=”Apartment”

Save the file as menubarsenable.reg Double click on it and press Yes when prompted.
Again, open Notepad and type in:

Dim myshell
Set myshell =
CreateObject(“WScript.Shell”)
myshell.run(“regsvr32 /i shell32″)
Set myshell = Nothing
MsgBox “Menu Bars have been restored.”, 4096,”Finished”

Save the file as menubandrestore.vbs and double click on it. Click OK twice when prompted.
Done!!
I will discuss the longer, but stable process using ResHac later.

Popularity: 6% [?]