Mar 17, 2013

Re-enable Mount option for ISO images on Windows 8

  1. Right-click the .ISO file, choose Properties.
  2. Click the Change button.
  3. Choose Windows Explorer from the application list.
  4. The Opens With option will change back to Windows Explorer.
  5. Click Apply, then OK to close the properties window.
  6. Right-click the ISO file. Mount will be one of the top options.
Source

Mar 6, 2013

Fix poor (washed out) image quality in VLC

No doubt VLC is the best video player there is. However I experienced poor image quality (dark washed out) on several computers on which I installed VLC and had a hard time trying to tweak the video effect settings to no avail.

Turns out the problem happens only on NVIDIA video cards, and the solution is amazingly simple:
  1. Go to Nvidia Control panel
  2. In Nvidia Control Panel select adjust video color settings
  3. In How do you make color adjustments? Select with Nvidia settings.
  4. Select advanced of Nvidia video settings
  5. Select FULL(0-255) in dynamic range.
Source

Mar 5, 2013

How to disable / enable User Account Control (UAC) via command line

Disable UAC
"C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f"

Enable UAC
"C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f"

Source