Lapas

ceturtdiena, 2018. gada 25. oktobris

Recycle Bin is corrupted

Run Command prompt as Administrator.

rd /s /q C:\$Recycle.bin

This clears out the $Recycle.bin folder from the C:\ partition. You may have to do this for each hard disk partition in your system

Source: https://social.technet.microsoft.com

ceturtdiena, 2018. gada 18. oktobris

Remove duplicate lines with Notepad++

In replace dialog select "Regular expression" and ". matches newline"

Find what:^(.*?)$\s+?^(?=.*^\1$)
Replace with:

Source: https://stackoverflow.com