Crystal Disk Mark & Crystal Disk Info
http://crystalmark.info/?lang=auto
Tools to decrypt your data
https://support.kaspersky.com/viruses/disinfection/10556#block1
http://support.kaspersky.com/13059#block1
http://support.kaspersky.com/13107#block1
more…
https://www.avast.com/c-ransomware
http://blogs.cisco.com/security/talos/teslacrypt
so many things you can do
Works on iPhone, Android, Windows and Mac OS.
Some features are only available on Jailbroken iPhones. Works on all iOS if the phone is NOT Jailbroken. Check compatible devices: https://www.mspy.com/compatibility.html
Features:
https://www.mspy.com/features.html
https://demo.mspy.com/user.view.dashboard.phone_id-1.html
The website for Kidguard is not that informative. If you chose a product based on the way the website looks then Kidguard’s website doesn’t look that great. The features they list are a lot less than mspy.com offers. The web interface for monitoring is not as nice as what is being offered by mspy.com
These 4 website below look great but they look like knock offs of each other. Possibly the same product sold under the different names. Or they are reselling a product.
When you click “Buy Now” on each of the following 4 websites the purchase page looks the same.
bootrec /rebuildbcd
The bootrec command will search for Windows installations not included in the Boot Configuration Data and then ask you if you’d like to add one or more to it.
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 0
The operation completed successfully.
Option 2
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:\Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
If you see:
Option 1: Move on to Step 5. This result most likely means that Windows installation data in the BCD store exists but bootrec couldn’t find any additional installations of Windows on your computer to add to the BCD. That’s fine, you’ll just need to take a few extra steps to rebuild the BCD.
Option 2: Enter Y or Yes to the Add installation to boot list? question, after which you should see a The operation completed successfully message, followed by a blinking cursor at the prompt. Finish up with Step 10 toward the bottom of the page.
bcdedit /export c:\bcdbackup
The bcdedit command is used here to export the BCD store as a file: bcdbackup. There’s no need to specify a file extension.
The command should return the following on screen:
The operation completed successfully.
meaning the BCD export worked as expected.
attrib c:\boot\bcd -h -r -s
What you just did with the attrib command was remove the hidden, read-only, and system attributes from the file bcd. Those attributes restricted the actions you could take on the file. Now that they’re gone, you can manipulate the file more freely – specifically, rename it.
ren c:\boot\bcd bcd.old
Now that the BCD store is renamed, you should now be able to successfully rebuild it, as you tried to do in Step 3.
Note: You could delete the BCD file entirely since you’re about to create a new one. However, renaming the existing BCD accomplishes the same thing since it’s now unavailable to Windows, plus provides you yet another layer of backup, in addition to the export you did in Step 5 if you decide to undo your actions.
bootrec /rebuildbcd
which should produce this in the Command Prompt window:
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:\Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
meaning that the BCD store rebuild is progressing as expected.
The operation completed successfully.
meaning that the BCD rebuild is complete.