Test kettela programma. Dubbed the Windows 7 Loader, the activation crack is updated constantly, especially as Microsoft is also constantly tackling workarounds that illegally activate the latest iteration of the Windows client. What is interesting is that the authors of Windows 7 Loader are indicating that the crack will also work with Windows 7 SP1.
Customizing the /etc/default/grub file There are two ways of doing this using editing a grub file. These are described in the The two ways are: • Boot which ever operating system you booted last time, the 'saved method' • This is the one I use. It lets me decide which one I going to use and will allow me to reboot into that system, handy when I'm updating. • Boot a specific operating system by default. • The answer to your exact question. Finding the menuentry to set as the new default To start we need to find out what we are booting or want to boot.
With a bit of command line trickery, you can get the default of grub to always be a particular grub entry - for example Windows - no matter when a new kernel is installed. In a terminal type: fgrep menuentry /boot/grub/grub.cfg This will display all your grub entries - for example Highlight the entry you want to default to - for example Windows 7 in the screen-shot. Right click and choose copy Type gksu gedit /etc/default/grub Change the entry GRUB_DEFAULT=0 to GRUB_DEFAULT='Windows 7 (loader) (on /dev/sda2)' i.e. Paste the entry you want (including the quotes) Save, then type sudo update-grub.
You need to edit the /etc/default/grub file to set Windows as your default OS. Determine the Windows OS' position in the grub menu. To do this, open a terminal by pressing Ctrl+Alt+T and type the following: grep menuentry /boot/grub/grub.cfg This will list the grub menu entries. I'll use my grub menu as an example: menuentry 'Ubuntu, with Linux 2.6.38-8-generic' --class ubuntu --class gnu-linux --class gnu --class os { menuentry 'Ubuntu, with Linux 2.6.38-8-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os { menuentry 'Memory test (memtest86+)' { menuentry 'Memory test (memtest86+, serial console 115200)' { menuentry 'Windows 7 (loader) (on /dev/sda1)' --class windows --class os { You will then select the Windows partition, in my case 'Windows 7 (loader) (on /dev/sda1)' including the double quotes and copy it.
Open the /etc/default/grub file. To do this, type the following on the terminal: gksudo gedit /etc/default/grub It will open the /etc/default/grub file with gedit.
Look for the GRUB_DEFAULT=0 line and change it's value from 0 to the selected Windows menu entry by pasting it. GRUB_DEFAULT='Windows 7 (loader) (on /dev/sda1)' Alternatively, you can use an integer value specifying the index position of the Windows OS, take note that index starts counting at 0, so in my example, the Windows OS value would be 4, therefore you can also set GRUB_DEFAULT=4 After which, you need to update grub by typing sudo update-grub. You can follow this, You will have to add through sudo add-apt-repository ppa:danielrichter2007/grub-customizer sudo apt-get update sudo apt-get install grub-customizer Then launch it from dash, application lens. The above menu will be different to yours, so choose wisely and select the Windows 7 entry and from the top Menu bar, select the ^ arrow to move it upward to have the top position, while booting. For booting into Windows directly select the preference and reduce the boot-time to load windows. It can be done easily with a GUI tool called 'Grub Customizer'. What is Grub Customizer?