Try New Technology

Techie

Using Diskpart to delete partition when the GUI doesn’t work.

by on Dec.06, 2015, under Techie

Please perform the following steps:

1. Open a command prompt as administrator.

2. Run Diskpart application by typing Diskpart in the command prompt.

3. In the “Diskpart” prompt, enter rescan command and press Enter key to re-scan all partitions, volumes and drives available.

4. Then type in list disk and press Enter key to show all hard disk drive available.

5. Select the disk that contains the partition you want to remove. Normally, with just 1 hard disk, it will be disk 0. So the command will be:

Select disk 0

Finish by Enter key.

6. Type list partition and press Enter key to show all available and created partition in the disk selected.

7. Select the partition that wanted to be deleted by using the following command, followed by Enter key:

Select partition x

Where x is the number of the recovery partition to be removed and unlocked its space. Be careful with the number of this partition, as wrong number may get data wipes off.

8. Finally, type in delete partition override and press Enter key.

Comments Off on Using Diskpart to delete partition when the GUI doesn’t work. more...

Simple method to do a Fresh Windows 10 install (via the “free upgrade”)

by on Nov.05, 2015, under Techie

The below steps come from ghacks.net and are just put here to make it easier for me to find in the future. I have used this on 1 machine that was running Windows 7 Pro (Upgrade – came from Vista) and another running Windows 7 Home Premium.

SOURCE: How to clean install Windows 10 directly without upgrade

Here is what you need to do to clean install Windows 10 on a computer system.

  • You need a Windows 10 DVD or ISO image for that. If you don’t have one get it from here. Download the tool from Microsoft’s website to create the ISO image. Make sure you pick the right architecture and version.
  • Burn the ISO, mount it or extract it.
  • Navigate to the folder \Windows\x64\sources or P:\Windows\x32\sources and drag&drop the file gatherosstate.exe to the desktop.
  • Run the file afterwards. It creates GenuineTicket.xml on the desktop. This file is needed so copy it to a USB drive or other location.
  • Run a clean install of Windows 10 afterwards on the system. Make sure you skip the product key.
  • Once you are done and in Windows 10, copy the file GenuineTicket.xml to C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket.
  • The folder is hidden by default. If you cannot see it, select File > Options > View > Show hidden files, folders and drives in File Explorer.
  • Reboot the PC.
Comments Off on Simple method to do a Fresh Windows 10 install (via the “free upgrade”) more...

Linux: Batch rename to remove # leading characters from files of a certain type

by on Apr.12, 2015, under Techie

If you have a bunch of files like:

$ ls /home/me/Desktop/Music/
0001 – File1.mp3
0002 – File2.mp3
0003 – File3.doc

$

And you want to remove the “0001 – ” from the start of all of them then you can use the following expressing to do this provided they are all in the same folder (if not just run this more than once):

cd /home/me/Desktop/Music/ && for file in *mp3; do mv "$file" "${file:8}"; done

Afterwards:

$ ls /home/me/Desktop/Music/
File1.mp3
File2.mp3
0003 – File3.doc

$

NOTE: For more details see http://community.linuxmint.com/tutorial/view/1162 as I got my example from there.

Comments Off on Linux: Batch rename to remove # leading characters from files of a certain type more...


How to disable Flash Player protected mode in Firefox

by on Feb.08, 2015, under Techie

Since Firefox 35 you can do the following to disable the annoying “Activate Flash” on any page with Flash.

In the Address Bar type in “about:config”
Confirm that you will careful when prompted
Search for “dom.ipc.plugins.flash.disable-protected-mode” and set it to true (ie disabled)

Comments Off on How to disable Flash Player protected mode in Firefox more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Visit our friends!

A few highly recommended friends...