Windows 10 control panel printer not showing

In File Explorer right click on “This PC”
Click on “Manage”
The “Computer Management” window will open
Click on “Services and Applications” and then click on “Services”
When the list of services opens scroll down to “Device Association Service” and check its Startup Type. It should be Automatic (Trigger Start). If not right click on it and open Properties. Change the Startup Type to Automatic.
Then scroll down to “Device Install Service” and check its Startup Type. It should be Manual (Trigger Start). If not right click on it and open Properties. Change the Startup Type to Manual.
Then scroll down to “Device Management Enrollment Service” and check its Startup Type. It should be Manual. If not right click on it and open Properties. Change the Startup Type to Manual.
Then scroll down to “Device Setup Manager” and check its Startup Type. It should be Manual (Trigger Start). If not right click on it and open Properties. Change the Startup Type to Manual.
Once the four services are set as in steps 5, 6, 7 & 8, reboot the computer.
After rebooting check the “Devices & Printers” section in the settings. The missing printer should now show as it should.

preluat de pe https://answers.microsoft.com/en-us/windows/forum/windows_10-hardware/windows-10-control-panel-printer-not-showing/199e35bc-6ee1-4245-9f5e-7039feaf4d54

 

windows kernel modification repair (recovery boot loop)

DEL %windir%\system32\drivers\oem-drv64.sys
DEL %windir%\system32\xNtKrnl.exe
DEL %windir%\system32\xOsLoad.exe

attrib -r -h -s \boot\bcd

ren \boot\bcd bcd.old

 

DEL «%windir%\System32\ru-RU\xOsLoad.exe.mui»
DEL «%windir%\System32\en-US\xOsLoad.exe.mui»
%windir%\System32\BCDEDIT.exe /set {current} path \Windows\system32\winload.exe
%windir%\System32\BCDEDIT.exe /deletevalue {current} kernel
%windir%\System32\BCDEDIT.exe /deletevalue {current} nointegritychecks
%windir%\System32\BCDEDIT.exe /deletevalue {current} custom:26000027
REG DELETE HKLM\SYSTEM\CurrentControlSet\services\oem-drv64 /va /f

Filesystem check with DSM5

vgdisplay

> syno_poweroff_task -d
> vgchange -ay
> fsck.ext4 -pvf -C 0 /dev/vg1000/lv

If you get the message “UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY”, try :

> fsck.ext4 -yvf -C 0 /dev/vg1000/lv

 

 

preluat de pe https://forum.synology.com/enu/viewtopic.php?t=83186

Reinstall Internet Explorer and Outlook Express on Windows

Open the registry as administrator.
Depending on the version of Internet Explorer, search the appropriate registry subkey, right-click on the IsInstalled (REG_DWORD) value and then click Edit.
To reinstall Internet Explorer 6 on Windows XP, use the following registry key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed *Components\{89820200-ECBD-11cf-8B85-00AA005B4383}

To reinstall Outlook Express 6 on Windows XP, use the following registry key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{44BBA840-CC51-11CF-AAFA-00AA00B6015C}

Set the value to 0 and then click OK.
Close the Registry Editor, and then reinstall Internet Explorer 6 or Outlook Express 6.
You can also fix this error by running Windows Update:

http://v5.windowsupdate.microsoft.com/fr/default.asp

Repair 10 start menu and notification center

powershell

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml” -Verbose}

The Applications event log is full of ESENT errors about a TileRepository being damaged and it can’t repair it, so I took backup and then deleted all files in C:\users\{username}\appdata\local\TileDataLayer\Database. Reboot and everything works fine again BUT you will lose your customisations and will be left with a blank start menu.

 

Other command: PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”