Table of Contents

Window$ Stuff

Things I thought I would never have to look at again but is somehow, quite consistently, forced to tinker with from time to time m(

Disclaimer: The stuffs I have here are only for my personal note (I got most of them from online resources - kudos to the original resource). If you want to try the same thing based on this, I cannot be held responsible if something goes wrong 8-).

Get 'Open Command Prompt Here' Option in Windows Explorer

Turn On or Off Guest Account in Command Prompt

In Administrator's command prompt only…

Create Linux Boot Entry on Windows using BCDEdit

More BCDEdit stuffs

On Windows 8.1 (and above?), the Windows Recovery Environment is disabled by default on UEFI systems (helps to boot faster). To get access, enable using BCDEdit:

bcdedit /set {default} bootmenupolicy legacy

To revert to original settings:

bcdedit /set {default} bootmenupolicy standard

Do note that we need to run command prompt as Administrator when doing this.

Remove Services

System Event Error

I got this error:

Windows could not connect to the System Event Notification Service service...

Using diskpart

Disk partitioning utility on Windows is diskpart (other than using GUI-based disk manager). It create MBR partition table.

e.g. To create single FAT32 partition in SD card, open command prompt as administrator and run diskpart.

  1. list all disk
    > list disk
    • identify sd card id <n>
  2. select sd card
    > select disk <n>
  3. list all available partitions
    > list part
  4. select partition id {n}
    > select part {n}
  5. remove selected partition
    > delete part
  6. repeat last two steps for each partition found
  7. create single partition
    > create part primary offset=1024
    • note offset value is in kilobytes
  8. exit and format as FAT32