Home Write+for+Cristal+Hack About+Mee Privacy+-+policy
Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

Thursday, 22 August 2013

Install Windows 95/98/XP on an Android smartphone

Hello guys, Today i found a pretty awesome trick .. using this trick you make a cool impression on your friends .. yes that trick was installing a windows operating system like 98 n xp on your smartfone's ...





Some smart nerds at xda-developers just proved that they can install Windows 95/98/XP on an HTC EVO 3D.

That's right, a mobile device with an ARM-processor running x86 architectures software. It's a proof of concept and is by no means meant for daily use, but still, you can now win bets against all your non-techie friends when they don't believe you have Windows XP on your phone.
According to xda-developer member mnomaanw who posted the instructions for the install, "Windows 95 works great on my EVO 3D."

The build even manages to squeeze in HDMI out. Zing!

Not sure why you'd want a slow OS slowing down your smartphone, but hey, I don't judge. You do what you want with your Android phone. Be sure to follow the directions carefully, or you might end up with a borked phone. We won't be held responsible if you decide you need to try to play Minesweeper on the go...

xda-developers, via Engadget

Monday, 29 July 2013

Create your own Photo Calendar in just some easy steps

Hello guys, Hope you are doing well i have want share some personal thing with you ... some day"s ago there was my friend"s birthday was gone.. but before his birthday i was totally confused what i give him as a gift then  i got an idea i make a calendar for him with his photos and you know what her really really like mt gift. So here is my post about how you can make a Create your own Photo Calendar in just some easy steps just read below.....

photo calendar

You can download this freely available software to create one of your own by downloading it here [link].

The image uploaded here in this software was shot by me at Sankey Tank, Malleshwaram, Bangalore.
As you can see in the above image, there are too many options while creating a photo calendar. When you import an image you can change brightness, contrast, rotate, tilt etc. While selecting data you again have multiple options to choose from. This software is just more than 2 MB and does lot many things to create a beautiful photo calendar. You can have your own images for every single month by importing it to this tool, change necessary settings and then click on preview to view all your changes before going for print option. There are multiple other ways to do this, but this is one of the easiest and simplest way that too for free of cost and hardly takes a minute to create one. Give it a try.... Hope you  like my post must leave a comment and don"t forgot to share it with your friends !!!!

Wednesday, 26 June 2013

Extract Any File Using Command Prompt (Cmd)



Hello guys, thanking you for your replies and comments now get on the today's topic. Today"s topic is how you can extract any extension file using command prompt (Cmd).

Getting to an MS-DOS box in Windows or Booting to MS-DOS

To start an MS-DOS session in Windows,

  1. Click Start | Run and type COMMAND then click okay.
  2. At the prompt {C:\>} type the commands listed below
To start a true DOS environment reboot your machine. While it is rebooting past the self test hold down the CTRL key. An MS-DOS menu will appear. Select COMMAND PROMPT ONLY and hit the enter key.
Alternatively, especially for Windows Me,xp,Vista,7 users, Click Start | Shut Down | ReStart in MSDOS Mode.


Extracting Windows Files from an Unknown Cabinet File

Extracting a Single File:

If you do not know which cabinet file contains the Windows file you want to extract, use the following command to search all the cabinet files in sequential order and then extract the file once it is found:

extract /a <cabinet> <filename> /l <destination>

For example, to extract the Unidrv.dll file from disks in drive A into the Windows\System folder on drive C, use the following command:

extract /a a:\win95_02.cab unidrv.dll /l c:\windows\system

The /a switch causes the Extract tool to search all the cabinet files starting with the first cabinet file mentioned on the command line (in this example, Win95_02.cab). Insert the disk containing the first cabinet file mentioned in the appropriate disk drive. You will be prompted to insert additional disks as they are needed. If you are extracting from a CD-ROM you must modify the <cabinet> parameter accordingly to reflect the actual location of the cabinet files.

NOTE: In Windows 98, you should use the Base4.cab file in command lines with the /a parameter.

If the Extract tool cannot find the specified Windows 95 file in any of the cabinet files, the file may be located in the Mini.cab, Precopy1.cab, or Precopy2.cab cabinet file. Use the following two commands to search these cabinet files:

  • extract /a a:\precopy1.cab <filename> /l <destination>

  • extract a:\mini.cab <filename> /l <destination>

NOTE: The first command searches the Precopy1.cab and the Precopy2.cab cabinet files. The second command searches the Mini.cab cabinet file. If you are extracting from a CD-ROM, you must modify the <cabinet> parameter in these commands accordingly.

Extracting Multiple Files:

To extract multiple files, use the same syntax as above, but use a wildcard designation for the <filename> parameter. For example, to extract all the Windows 95 files with a .txt extension from disks in drive A to the Windows folder on drive C, use the following command:

extract /a a:\win95_02.cab *.txt /l c:\windows

Note that if you are extracting from a CD-ROM, you must modify the <cabinet> parameter in this command accordingly.

Finding Windows Files


Finding a Single File:

You can use the Extract tool to determine which cabinet file contains a particular Windows file. When you use this syntax, the Extract tool searches the cabinet files but does not extract the file once it is found:

extract /a /d <cabinet> <filename>

For example, to find the Windows 95 Unidrv.dll file, starting with the Win95_02.cab file, using disks in the A drive, use the following command:

extract /a /d a:\win95_02.cab unidrv.dll

Finding Multiple Files:

To find multiple files, use the same syntax as above, but use a wildcard designation for the <filename> parameter. For example, to find all the Windows 95 files with a .txt extension using disks in the A drive, use the following command:

extract /a /d a:\win95_02.cab *.txt

Extracting Windows Files from a Known Cabinet File

Extracting a Single File:

If you know which cabinet file contains the file you want to extract, use the following syntax to extract the file:

extract <cabinet> <filename> /l <destination>

For example, to extract the Windows 95 Unidrv.dll file from the Win95_10.cab file on a disk in drive A to the Windows\System folder on drive C, use the following command:

extract a:\win95_10.cab unidrv.dll /l c:\windows\system

Extracting Multiple Files:

To extract multiple files from a cabinet file, use the same syntax as above, but use a wildcard designation for the <filename> parameter. For example, to extract all the Windows 95 files that have a .txt extension from the Win95_06.cab file on a disk in drive A to the Windows folder on drive C, use the following command:

extract a:\win95_06.cab *.txt /l c:\windows\system
Listing the Contents of Cabinet Files

You can use the Extract tool to list the contents of cabinet files without actually extracting any files. To display the contents of a cabinet file, use the following syntax:

extract /d <cabinet>

To display the contents of all the cabinet files in a cabinet chain, starting with the specified cabinet file, use the following syntax:

extract /a /d <cabinet>

For example, to display the contents of all the Windows 95 cabinet files using disks in drive A, starting with the Win95_02.cab file, use the following command:

extract /a /d a:\win95_02.cab

NOTE: The /a switch causes the Extract tool to list the contents of all the cabinet files in the cabinet chain, starting with the first cabinet file mentioned.

Copying Cabinet Files to a Hard Disk

Although you cannot make copies of the original Windows 95 floppy disks using the utilities that are included with Windows 95, you can use the Extract tool to copy cabinet files from a CD-ROM or floppy disk to your hard disk. To do so, use the following syntax:

extract /c <cabinet> <destination>

For example, to copy the Win95_02.cab file from a disk in drive A to the Windows folder on drive C, use the following command:

extract /c a:\win95_02.cab c:\windows

NOTE: You cannot use the /a and /c switches at the same time. Therefore, you cannot copy all the cabinet files using a single command.

Other Optional Switches

  • Use the /y switch to cause the Extract tool to not prompt you before overwriting an existing file. If you use this switch when you are extracting a file, any file in the destination folder with the same name as the file you are extracting is automatically overwritten.

    For example, to extract the Unidrv.dll file from the Win95_02.cab file on a disk in drive A to the Windows\System folder on drive C and automatically overwrite any existing Unidrv.dll file that is already there, use the following command:
    extract /y /a a:\win95_02.cab unidrv.dll /l c:\windows\system
  • Use the /e switch in place of the "*.*" wildcard designation when you are extracting or finding multiple files. For example, to extract all the files from the Win95_06.cab file on a disk in drive A to the Windows folder on drive C, use either of the following commands:

    • extract /e a:\win95_06.cab /l c:\windows

    • extract a:\win95_06.cab *.* /l c:\windows
For a complete list of the command-line switches for the Extract tool, type "extract" (without quotation marks) at a command prompt.

System File Checker Tool

Windows 98 includes a System File Checker tool. You can use this tool to verify the integrity of your operating system files, to restore them if they are damaged, or to extract compressed files from the Windows 98 CD-ROM. NOTE: To use System File Checker to extract a compressed file from the Windows 98, follow these steps:

  1. Click Start, point to Programs, point to Accessories, point to System Tools, and then click System Information.

  2. On the Tools menu, click System File Checker.

  3. Click "Extract one file from installation disk," type the name of the file you want to extract in the "Specify the system file you would like to restore" box, and then click Start.

  4. In the Restore From box, type the path to the Win98 folder on the Windows 98 CD-ROM, type the destination folder in the Save File In box if necessary, and then click OK.

  5. Click OK, click OK, and then click Yes when you are prompted to restart your computer.

NOTE: If you do not specify a source cabinet (.cab) file in the Restore From box, System File Checker first searches for the file you are extracting in the specified folder (outside of a cabinet file). System File Checker then searches all cabinet files, sorted by MS-DOS directory order, in the specified folder. System File Checker extracts the first instance of the file it finds. To determine the order in which System File Checker searches cabinet files, type "dir" (without quotation marks) at a command prompt in the specified folder.

Using a Windows 98 or Windows Me,XP,Vista,7 Startup Disk to Access a CD-ROM and Extract Files

When you install Windows 98 or Windows Me, you are prompted to create a Windows 98 or Windows Me Startup disk. A feature included in the Windows 98 or Windows Me Startup disk is support for CD-ROM drives. This may be of benefit if you need to extract a file from the Windows 98 CD-ROM but you are unable to use System File Checker (for example, if your computer does not start properly).

NOTE: The Windows 98 Startup disk provides support for most types of CD-ROM drives, including IDE and SCSI CD-ROM drives, but it may not support your particular CD-ROM drive.

A Windows 98 Startup disk is required to perform the steps in the following sections of this article. If you do not have one, you can create one using any Windows 98-based computer to which you have access. To create a Windows 98 Startup disk, follow these steps:

  1. Click Start, point to Settings, click Control Panel, and then double- click Add/Remove Programs.

  2. Click the Startup Disk tab, click Create Disk, and then follow the instructions on the screen.

How to Start Your Computer with CD-ROM Support and Then Extract Files:

To start your computer with CD-ROM support and then extract files, use the following steps:

  1. Insert the Windows 98 or Windows Me Startup disk in drive A, and then restart your computer.

  2. When the Microsoft Windows 98 or Windows Me Startup menu appears, choose Start Computer With CD-ROM Support.

  3. Insert the Windows 98 or Windows Me CD-ROM in the CD-ROM drive. NOTE: Windows Me installs the cabinet files, by default, in the following directory: \Windows\Options\Install. If these files are on your computer, you do not need your Windows Me CD-ROM at this step, you can extract the files needed from the \Windows\Options\Install directory.

  4. To extract files at the command prompt, you can use the information provided earlier in this article, or you can use the Extract Command Line Helper tool. To use Extract Command Line Helper, type "ext" (without quotation marks) at the command prompt, and then follow the instructions on the screen. 

Using the Ext.exe Tool to Extract Files

The Ext.exe tool builds a command line for the Extract.exe tool. It is located on the Windows 98 or Me Startup disk.

To extract a file from a .cab file, run the Ext.exe program from your Windows 98 or Me Startup disk, and follow the instructions on the screen to extract the file you want.

How to Extract Protected Files in Windows Me

Since Windows Me has a feature called System File Protection, extraction is different for these files. See the following Microsoft Knowledge Base article for information about how to extract protected files in Windows Me.

 


Saturday, 4 May 2013

How to Try Any Window's or Linux Operating System Without loosing your old Operating System Settings

Hello Guy's as you know there are so many operating systems on internet some examples like window's has window 7,8 xp and more older and Linux has more then 1000 of versions and what if want to try these operating systems without loosing our old computer settings yes I have a way to do this in a very easy way there are some software's are available which I listed below these software are very helpful to know that the newer version of that operating system is good or not so lets check them out.

First You have know little bit about Virtualization I know you are thinking what is Virtualization and what is relation of this word with this task.

Virtualization addresses IT’s most pressing challenge: the infrastructure sprawl that compels IT departments to channel 70% of their budget into maintenance, leaving scant resources for business-building innovation.

The difficulty stems from the architecture of today’s X86 computers: they’re designed to run just one operating system and application at a time. As a result, even small datacenters have to deploy many servers, each operating at just 5% to 15% of capacity—highly inefficient by any standard.
Virtualization software solves the problem by enabling several operating systems and applications to run on one physical server or “host.” Each self-contained “virtual machine” is isolated from the others, and uses as much of the host’s computing resources as it requires.

The Benefits of Server Virtualization

The benefits advantages of virtualization are nothing short of dramatic:
  • Up to 80% greater utilization of every server
  • Reductions in hardware requirements by a ratio of 10:1 or better
  • Capital and operations expenses cut by half, with annual savings of more than $1,500 for each server virtualized
  • Robust, affordable high availability

Learn more about virtualization







as you can see the pic given above there is mac install in my laptop but I can use windows 7 in a separate box . To do this  I listed some software below

1.Virtual Box



VirtualBox is a general-purpose full virtualizer for x86 hardware, targeted at server, desktop and embedded use.

For a thorough introduction to virtualization and VirtualBox, please refer to the online version of the VirtualBox User Manual's first chapter.

2.Virtual PC 2007

Save time and money as Virtual PC allows you to maintain the compatibility of legacy and custom applications during migration to new operating systems and increases the efficiency of support, development, and training staffs.

With Microsoft® Virtual PC 2007, you can create and run one or more virtual machines, each with its own operating system, on a single computer. This provides you with the flexibility to use different operating systems on one physical computer.

For more information about the ways you can use virtual machines, see Virtual PC at http://go.microsoft.com/fwlink/?LinkId=78095.

3.VMware Workstation 9.0

VMware, Inc. is an American software company that provides cloud and virtualization software and services. It was founded in 1998 and based in Palo Alto, California, USA. The company was acquired by EMC Corporation in 2004, and operates as a separate software subsidiary.

VMware's desktop software runs on Microsoft Windows, Linux, and Mac OS X, while VMware's enterprise software hypervisors for servers, VMware ESX and VMware ESXi, are bare-metal embedded hypervisors that run directly on server hardware without requiring an additional underlying operating system.


now if you want to know how to use these software then please use google and youtube sorry guys I can add some more about this and more Linux and mac users these software is also available for them !! hope you all like my post must give a comment and share with your friends ....... 

Wednesday, 13 March 2013

How to super highly compress your data 3gb to 10mb


KGB Archiver is an application created to allow you to compress and decompress files. Unfortunately although its powerful compression rate, it has high hardware requirements ( processor with 1.5GHz clock and 256MB of RAM as an essential minimum).

Hello guys, Hope you all are enjoying my blog posts, Today we will going talk about data compression. Some days ago i found a 10mb image of windows 7 on torrent in .zip format and i was quite shocked when i extract it it was full 3.7GB ISO image. Then i was start thinking about this type of compression how it's possible and i found only one ans that was KGB Compression software. So let me tell you how to compress your data 3gb to 10mb easly !

KGB Compressing Software

   
When compressing you have two output formats to choose from: KGB and ZIP. The compression level for KGB archives is quite impressive

   There are 10 levels of compression that you can select: minimal, very weak, weak, normal, medium, above medium, good, very good, extreme and maximum. This is a wider variety than what all the other related programs have to offer. 


When working with compression levels up to the Good one, you will pretty much get the same result as you would with any other archiving application. But, when you land in the next category (very good, extreme and maximum) things do change dramatically. You files become more smaller and your system memory usage goes up.
 
   One thing i don’t like about this program is that it has a wizard look and once you’ve selected one of the three options from the main screen, there’s no turning back. Your only option to go back to a previous step is by closing the program and running it again.

   One of the advantage of KGB Archiver is AES-256 encryption which is used to encrypt the archives. This is one of the strongest encryptions known for human.

   Using KGB for higher compression level slow down your system, it better to write the DVD at 1X speed. But if you use it under very good compression level then this is a good compression tool i have ever used.

 
Download KGB Archiver Beta 2 / KGB Archiver 1.x

Tell me in comments what you are going to compress and please share this with your friends !!!!