Thursday, February 4, 2016

Picture and Fax viewer is back like magic

Picture and fax viewer disappeared in windows 10. You can get it back with some changes to the registry.

Download and run this:

1. Copy the code from into Notepad and save it as a REG file (call it whatever you like, maybe photoviewer.reg).
2. Double-click on your new REG file to merge it with your Windows Registry. You will need to click through the User Account Control and a few other windows to allow the file to make changes to the Registry.


Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Applications\photoviewer.dll]

[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell]

[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open]
"MuiVerb"="@photoviewer.dll,-3043"

[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open\command]
@=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,72,00,75,00,\
6e,00,64,00,6c,00,6c,00,33,00,32,00,2e,00,65,00,78,00,65,00,20,00,22,00,25,\
00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,46,00,69,00,6c,00,65,00,73,00,\
25,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,20,00,50,00,68,00,6f,\
00,74,00,6f,00,20,00,56,00,69,00,65,00,77,00,65,00,72,00,5c,00,50,00,68,00,\
6f,00,74,00,6f,00,56,00,69,00,65,00,77,00,65,00,72,00,2e,00,64,00,6c,00,6c,\
00,22,00,2c,00,20,00,49,00,6d,00,61,00,67,00,65,00,56,00,69,00,65,00,77,00,\
5f,00,46,00,75,00,6c,00,6c,00,73,00,63,00,72,00,65,00,65,00,6e,00,20,00,25,\
00,31,00,00,00

[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open\DropTarget]
"Clsid"="{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"

[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\print]

[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\print\command]
@=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,72,00,75,00,\
6e,00,64,00,6c,00,6c,00,33,00,32,00,2e,00,65,00,78,00,65,00,20,00,22,00,25,\
00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,46,00,69,00,6c,00,65,00,73,00,\
25,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,20,00,50,00,68,00,6f,\
00,74,00,6f,00,20,00,56,00,69,00,65,00,77,00,65,00,72,00,5c,00,50,00,68,00,\
6f,00,74,00,6f,00,56,00,69,00,65,00,77,00,65,00,72,00,2e,00,64,00,6c,00,6c,\
00,22,00,2c,00,20,00,49,00,6d,00,61,00,67,00,65,00,56,00,69,00,65,00,77,00,\
5f,00,46,00,75,00,6c,00,6c,00,73,00,63,00,72,00,65,00,65,00,6e,00,20,00,25,\
00,31,00,00,00

[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\print\DropTarget]
"Clsid"="{60fd46de-f830-4894-a628-6fa81bc0190d}"

Friday, January 1, 2016

Removing or repairing a Windows 8 or 10 built in app

Removing or repairing a Windows 8 or 10 built in app


From CMD you want to know what package to remove:
Mail and Calendar are called windows communication apps. The rest are easier to correlate.

C:\Program Files\WindowsApps>dir
 Volume in drive C has no label.
 Volume Serial Number is 5A4E-ED39

 Directory of C:\Program Files\WindowsApps

...
12/31/2015  07:28 AM              microsoft.windowscommunicationsapps_17.6525.42271.0_x64__8wekyb3d8bbwe
12/31/2015  07:28 AM              microsoft.windowscommunicationsapps_2015.6525.42271.0_neutral_~_8wekyb3d8bbwe
...

               0 File(s)              0 bytes
             122 Dir(s)  50,681,364,480 bytes free


Get the names of the packages to remove


From powershell you remove it:

PS C:\WINDOWS\system32> Remove-AppxPackage microsoft.windowscommunicationsapps_17.6525.42271.0_x64__8wekyb3d8bbwe
PS C:\WINDOWS\system32> Remove-AppxPackage microsoft.windowscommunicationsapps_2015.6525.42271.0_neutral_~_8wekyb3d8bbwe