Monday, April 28, 2014

How to Check Windows XP Product Activation Status



To check, view or verify the Windows XP current activation status, open Run command from Start Menu, and run the following command:

oobe/msoobe /a

A “Activate Windows” dialog window will open to let user know the activation status. If the Windows XP has been activated, the message is “Windows is already activated. Click OK to exit.”





Else, you will be asked to let’s activate Windows now, which means that the copy of Windows XP installation is not yet activated.

*** INFO FROM INTERNET ***

Wednesday, April 9, 2014

How to Run Android Apps on a PC


BlueStacks App Player is available for Windows and OSX computers, and is a quick, compact install to your boot drive (there's no option in the installer to go to a different drive or directory). The only choice you make during the install is whether to allow the program to make notifications, as well as the option to opt in to BlueStacks Spotlight, which holds daily app giveaways.

Download

How to take a snapshot of a video


Download VLC Media Player http://www.videolan.org/vlc/index.html & open your media file with it.

If you want to take a snapshot, when you watch a film in VLC, press down the hot-key for snap shooting. The pre-defined hot-keys is in

MAC OS X: Command+Alt+s,
Windows,Linux, and Unix: Shift+s.

If you want to change the hot-keys go to Preferences → Interface → Hotkeys and set Take video snapshot. Then write the hot-keys you want.
After you have tacked a snapshot you may want to see it.

In Windows you can find it at:  My Documents\My Pictures\
In MAC OS X:   Desktop/
In Linux and Unix:   $(HOME)/Pictures/

Monday, March 31, 2014

RUN Windows XP For Free In Windows 8


Microsoft gave Windows 7 users a way to run older applications via Windows XP Mode. With Windows 8, however, that mode is no longer officially supported, and if you want to run Windows XP in a virtual machine, you need the license for it. Lifehacker reader Miloš, however, has found a workaround. P

He discovered that within the free WindowsXPMode_en-us.exe file, there's a VirtualXPVHD file containing the Windows XP virtual machine, which you can open in VirtualBox. Here are the steps to get this working:P

Download WindowsXPMode_en-us.exe from Microsoft. You'll need to run the validation tool to prove your copy of Windows is valid. Then use 7-Zip or another archive tool to open the EXE file as an archive.
Within that archive, find the "sources/xpm" file within it, and extract that folder to your hard drive.
Finally, in the extracted xpm file, you'll find a file called VirtualXPVHD. Rename it with a VHD extension.
After you rename the file, open VirtualBox. Create a new virtual machine, give it a name, allocate some RAM, and when it asks to create a virtual hard drive, select the option "use an existing virtual hard drive file". Point it to the VHD file you made, and you're good to go!

In VirtualBox, open the VirtualXPVHD virtual machine, and voila! You've got Windows XP Mode (running Windows XP Professional) in Windows 8, no need for the XP license.

For How to bypass Windows Activation.. please read my previous post thru following link

http://andycabinet.blogspot.com/2014/02/how-to-turn-off-windows-vistaxp.html

Extra Notes:

a) ** This trick also works on windows 7,64 bit in Virtualbox.
However. During configuration the mouse will not work properly (at least in my case)
You must navigate through the XP setup using the keyboard (right click button, tab, spacebar, etc) to finish the configuration
After that, XP may hang a few times into a black screen. You must go to machine> Reset.
After that, once you are back to the desktop of XP, press WIN+R, then type appwiz.cpl
Then navigate using your keyboard and uninstall the "Virtual PC Integrated components" . You will be prompted to restart.
Restart it now. It would Have a black screen again. Reset the Virtualbox (machine >reset).
XP mode should now have working mouse input. Enjoy!

b) For Setting up Network Connection.
For Try to change network adaptor type to "Intel Pro/1000 T Server" as shown in the below.
** Give the guest (VirtualXP) two network adapters, Adaptor 1 set to NAT and the other (Adaptor 2) set to Host-only. The NAT one will allow the guest to see the Internet, and the Host-only one will allow the host to see the guest



















*** INFO FROM INTERNET ***


Saturday, March 29, 2014

How to share folders in winxp with a password


Instructions
1. Click "Start," then "Control Panel" and select "User Accounts" from the list of options. The "User Accounts" window will open.

2. Click the "Guest Account" icon, then click "Turn on the Guest Account." Close the window.

3. Click "Start," followed by "Run" then type "cmd" in the open field and click "OK." The "Command" window will open.

4. Type "Net user guest password" at the command prompt, then press the "Enter" key. The option to create a password is now enabled on the guest account. Close the "Command" window.

5. Click "Start," then "Control Panel" followed by "User Accounts." Click on the "Guest Account" again. Type in a password in the "Change the password" box to protect the shared folders. Close the window, then restart your computer. To view shared folders all users must enter the password.

Thursday, March 6, 2014

Free disk space in Linux or SCO UNIX operating system



In Linux and Unix operating system, it’s possible to use “last” command to display and show the last logged in (and out) users history, and “lastb” command to show and display all the bad login attempts. The users’ login history is been logged and saved in wtmp file while faild login attempts is been stored in btmp file, both files For Linux usually located in /var/log directory. (For SCO Unix files normally is located in /var/adm)

To check your disk space, pls use the following command:
df -v

The logging of information into wtmp and btmp is continuous, and can potentially make the wtmp and btmp files grow very to a very big size. The situation is especially true to btmp, which logs failed or bad login attemps to the system, if the administrator does not disable FTP or SSH password authentication, and the server is been attacked via brute-force breaking in attempts, where any wrong user name or incorrect password been logged to btmp.

In addition, administrator may also want to clear and erase the history of login history once in a while. Or, system that running low or almost running out of disk space on /var may want to purge and delete the wtmp and btmp to reclaim and save some disk space.

In any case, the proper way to clear and reset wtmp and btmp files is by piping a blank input to the file, overwriting and replace all existing content. The command that can be used has the syntax like below:

cat /dev/null > /var/log/wtmp

or, on some system, simply like below:

> /var/log/wtmp

Note: Change the path and file name (i.e. btmp) accordingly.
Above commands will remove, clear and empty the content of the btmp or wtmp files, allowing new information to be started logging afresh again. The file is not been deleted or erased, and is leaved intact, as the btmp and wtmp files will not be recreated when not found. The system only logs information into these files if they are present.

Tip: For people who has already deleted the wtmp and btmp files, just re-create the file by touch command, and assign a proper permissions to the file (-rw-rw-r– root utmp or -rw—— root utmp btmp), or else “Excess permission or bad ownership on file /var/log/btmp or /var/log/wtmp” may occur.

Note that there may be files named as wtmp.1, wtmp.2 wtmp.3, wtmp.4, btmp.1, btmp.2, btmp.3, btmp.4, which are the backup archives, and can be safely removed or deleted.

*** Cron , boot.log, messages files in the /var/log directory also can be deleted.

Monday, February 24, 2014

How to Turn Off Windows Vista/XP Activation


Are you tired of 30-day trials? There are ways to bypass or ignore these messages, depending on the version of Windows you are using, which can help for those times when you can't find your old product key or are installing Windows on a computer that Microsoft won't let you register.

Windows Vista

1 Open the Registry Editor. You will be enabling the SkipRearm function, which when combined with another command will allow you to continually extend your trial period, effectively disabling registration.
Press the Windows key + R to open the "Run" dialog box.
Enter regedit and press Enter. This will open the Registry Editor.

2 Navigate to the correct folder. In the left frame, you can navigate to the different folders in the registry. Navigate to HKEY_LOCAL_MACHINE → SOFTWARE → Microsoft → Windows NT → CurrentVersion → SL

3 Double-click the "SkipRearm" entry. This will open a box allowing you to change the value. At default, it will read 00000000. Change the value to00000001 and press OK.
Close the Registry Editor after editing the entry.

4 Open the Command Prompt. You will need to do this as an administrator. To do this, click the Start button and enter cmd into the field. Press Ctrl + Shift + Enter to open it as an administrator.

5 Enter the command to restart the Software Licensing Manager. Entering in this command will reset the timer on your trial, and because you enabled SkipRearm in the previous step, you can perform this action indefinitely. Type the following and press Enter: slmgr -rearm. Close the Command Prompt by typingexit and pressing Enter.

6 Repeat the process every 30 days. You can repeat these steps every 30 days in order to reset your trial timer. You may or may not need to change the registry each time, it varies from system to system


Windows XP

1 Open the Registry Editor. You will need to make a tweak in your registry in order to make the activation messages disappear. Note that this method will only hide the notices, it will not bypass the activation. Windows will still need to be activated after 30 days. in order to truly crack Windows XP, you will need to download a cracking program or pirated key, which will not be discussed here.
Press the Windows key + R to open the "Run" dialog box.
Enter regedit and press Enter. This will open the Registry Editor.

2 Navigate to the correct folder. In the left frame, you can navigate to the different folders in the registry. Navigate to HKEY_LOCAL_MACHINE → SOFTWARE → Microsoft → Windows NT → CurrentVersion (or "Current Version") → WPAEvents.

3 Double click the OOBETimer entry. This will open a new dialog box where you can change the value.

4 Enter in the new value. Delete what's in the box and enter the following line. Click OK when you're done:
FF D5 71 D6 8B 6A 8D 6F D5 33 93 FD

5 Right-click on WPAEvents. Select Permissions from the menu.

6 Click the "SYSTEM" group. In the "Permissions for SYSTEM" frame, check the "Deny" box for the "Full Control" entry. Click OK when you're done.

Click "Yes" when asked to confirm your action. Exit the Registry Editor.











EPSON LQ300 Printer -(WIN7) troubleshooting the problem print out 284.4@EJL at the top left corner of the paper.

  Windows 7 + Epson LQ 300 Installation process 1.              Installed using the Driver available with Windows 7. Select as EPSON LQ-...