Showing posts with label does. Show all posts
Showing posts with label does. Show all posts

Thursday, April 13, 2017

Desktop does not refresh automatically in Windows 7 8

Desktop does not refresh automatically in Windows 7 8


The Desktop or Explorer window or folder will automatically refresh itself when you make a change to its contents. This could be creating a new shortcut, creating or saving a new file or folder in it, and so on.
But at times, you may find that the desktop or the window may not auto-refresh and to see the changes, you have to manually Refresh it, either by pressing F5 or via the context menu.

Desktop does not refresh automatically

If you find that you need to frequently refresh the desktop, you can follow these steps to try and fix the problem.
dontrefresh 600x374 Fix: Desktop does not refresh automatically in Windows 7 | 8

Open Registry Editor and navigate to the following registry key:
HKEY_CLASSES_ROOTCLSID
Here right-click and search for dontrefresh. If you find it, and if it has a value set to 1, change its value to 0. If you do not see it, create it and give it a value 0.
This is known to have helped fix the problem in most cases. If it does not, here are a few other suggestions:
1] Use ShellExView from Nirsoft and disable third-party shell extensions which may be obstructing the smooth functioning of Windows Explorer. This may be a trial-and-error method.
2] Restore the default Explorer Settings. To do so, open Folder Options and under the General tab, press Restore Defaults. Click Apply and Exit.
3] Some have found that deleting the thumbnail cache and/or rebuilding the icon cache has helped them resolve the issue.
This problem appears to be quite common � so much so that there is even an acronym made for it: WEDR � Windows Explorer Doesn�t Refresh! So the BSOD now has a companion! icon smile Fix: Desktop does not refresh automatically in Windows 7 | 8
Microsoft has released some hotfixes to resolve such issues at KB960954 and KB823291. Please check IF they are applicable to your operating system and situation before you decide to download and apply them.
UPDATE: Please also see the comment by Truth101/Guest below.
Check this post if you find that your Recycle Bin does not refresh correctly.
Read more »

Monday, April 10, 2017

Deepin os does not start dual boot with windows 8 or 10 GRUB error solution

Deepin os does not start dual boot with windows 8 or 10 GRUB error solution


 if you are having problem like windows is not getting started after dual booting with ubuntu then the same solution will work provide here


You�ll need to boot from a live CD or USB drive, switch deepin fail safe mode.
 above. Ensure the version of deepin on from a live CD or USB drive, as in the graphical method above. Ensure the version of Ubuntu on
the CD is the same as the version of Ubuntu installed on your computer � for example, if you
have deepin 15.03 installed, ensure you use a deepin os 15.03  live CD or usb drive.


Open a terminal after booting into the live environment. Identify the partition deepin is
installed on using one of the following commands:



sudo fdisk -l


sudo blkid


Here�s the output of both commands. In the fdisk -l command, the deepin partition is identified
by the word Linux in the System column. In the blkid command, the partition is identified by its
ext4 file system.Run the following command to mount the deepin partition at /mnt, replacing /dev/sdX# with
the device name of your deepin partition from the above commands:

 For example, use /dev/sda1 for the first partition of the first hard disk device.

 Mount the partition your deepin Installation is on. If you are not sure which it is, launch GParted (included in the Live CD) and find out. It is usually a EXT4 Partition. Replace the XY
with the drive letter, and partition number, for example: sudo mount /dev/sda1 /mnt.


 sudo mount /dev/sdXY /mnt


 Now bind the directories that grub needs access to to detect other operating systems, like so.



sudo mount --bind /dev /mnt/dev &&
sudo mount --bind /dev/pts /mnt/dev/pts &&
sudo mount --bind /proc /mnt/proc &&
sudo mount --bind /sys /mnt/sys

 Now we jump into that using chroot.

sudo chroot /mnt

Now install, check, and update grub.
This time you only need to add the drive letter (usually a) to replace X, for example: grub-install /dev/sda, grub-install �recheck /dev/sda.

grub-install /dev/sdX


 grub-install --recheck /dev/sdX

update-grub

Now grub is back, all that is left is to exit the chrooted system and unmount everything.



exit &&
 sudo umount /mnt/sys &&

sudo umount /mnt/dev/proc &&

sudo umount /mnt/dev/pts &&

sudo umount /mnt/dev &&

sudo umount /mnt




Shut down and turn your computer back on, and you will be met with the default Grub2 screen.
You may want to update grub or re-install burg however you like it.
Congratulations, you have just Repaired/Restored/Reinstalled Grub 2 with a deepin Live CD!
Read more »