<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>&#x6570;&#x636E;&#x6062;&#x590D;&#x8F6F;&#x4EF6;</provider_name><provider_url>https://datarecovery.ping.fm/zh/</provider_url><author_name>zamozhnii</author_name><author_url>https://datarecovery.ping.fm/zh/</author_url><title>&#x4ECE;&#x5DF2;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x4E2D;&#x6062;&#x590D;&#x6587;&#x4EF6;&#x3002;&#x6700;&#x7B80;&#x5355;&#x7684;&#x65B9;&#x6CD5;&#xFF01;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="DbXnUWD8ws"&gt;&lt;a href="https://datarecovery.ping.fm/zh/formatted-hd-recovery/"&gt;&#x5982;&#x4F55;&#x4ECE;&#x5DF2;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x4E2D;&#x6062;&#x590D;&#x6587;&#x4EF6;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://datarecovery.ping.fm/zh/formatted-hd-recovery/embed/#?secret=DbXnUWD8ws" width="600" height="338" title="&#x201C;&#x5982;&#x4F55;&#x4ECE;&#x5DF2;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x4E2D;&#x6062;&#x590D;&#x6587;&#x4EF6;&#x201D; &#x2014; &#x6570;&#x636E;&#x6062;&#x590D;&#x8F6F;&#x4EF6;" data-secret="DbXnUWD8ws" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script&gt;
/**
 * WordPress inline HTML embed
 *
 * @since 4.4.0
 * @output wp-includes/js/wp-embed.js
 *
 * This file cannot have ampersands in it. This is to ensure
 * it can be embedded in older versions of WordPress.
 * See https://core.trac.wordpress.org/changeset/35708.
 */
(function ( window, document ) {
	'use strict';

	var supportedBrowser = false,
		loaded = false;

		if ( document.querySelector ) {
			if ( window.addEventListener ) {
				supportedBrowser = true;
			}
		}

	/** @namespace wp */
	window.wp = window.wp || {};

	if ( !! window.wp.receiveEmbedMessage ) {
		return;
	}

	/**
	 * Receive embed message.
	 *
	 * @param {MessageEvent} e
	 */
	window.wp.receiveEmbedMessage = function( e ) {
		var data = e.data;

		if ( ! data ) {
			return;
		}

		if ( ! ( data.secret || data.message || data.value ) ) {
			return;
		}

		if ( /[^a-zA-Z0-9]/.test( data.secret ) ) {
			return;
		}

		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
			allowedProtocols = new RegExp( '^https?:$', 'i' ),
			i, source, height, sourceURL, targetURL;

		for ( i = 0; i &lt; blockquotes.length; i++ ) {
			blockquotes[ i ].style.display = 'none';
		}

		for ( i = 0; i &lt; iframes.length; i++ ) {
			source = iframes[ i ];

			if ( e.source !== source.contentWindow ) {
				continue;
			}

			source.removeAttribute( 'style' );

			/* Resize the iframe on request. */
			if ( 'height' === data.message ) {
				height = parseInt( data.value, 10 );
				if ( height &gt; 1000 ) {
					height = 1000;
				} else if ( ~~height &lt; 200 ) {
					height = 200;
				}

				source.height = height;
			}

			/* Link to a specific URL on request. */
			if ( 'link' === data.message ) {
				sourceURL = document.createElement( 'a' );
				targetURL = document.createElement( 'a' );

				sourceURL.href = source.getAttribute( 'src' );
				targetURL.href = data.value;

				/* Only follow link if the protocol is in the allow list. */
				if ( ! allowedProtocols.test( targetURL.protocol ) ) {
					continue;
				}

				/* Only continue if link hostname matches iframe's hostname. */
				if ( targetURL.host === sourceURL.host ) {
					if ( document.activeElement === source ) {
						window.top.location.href = data.value;
					}
				}
			}
		}
	};

	function onLoad() {
		if ( loaded ) {
			return;
		}

		loaded = true;

		var isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),
			isIE11 = !!navigator.userAgent.match( /Trident.*rv:11\./ ),
			iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
			iframeClone, i, source, secret;

		for ( i = 0; i &lt; iframes.length; i++ ) {
			/** @var {IframeElement} */
			source = iframes[ i ];

			secret = source.getAttribute( 'data-secret' );
			if ( ! secret ) {
				/* Add secret to iframe */
				secret = Math.random().toString( 36 ).substr( 2, 10 );
				source.src += '#?secret=' + secret;
				source.setAttribute( 'data-secret', secret );
			}

			/* Remove security attribute from iframes in IE10 and IE11. */
			if ( ( isIE10 || isIE11 ) ) {
				iframeClone = source.cloneNode( true );
				iframeClone.removeAttribute( 'security' );
				source.parentNode.replaceChild( iframeClone, source );
			}

			/*
			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe
			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
			 * window will then (re-)send the height message right away.
			 */
			source.contentWindow.postMessage( {
				message: 'ready',
				secret: secret
			}, '*' );
		}
	}

	if ( supportedBrowser ) {
		window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
		document.addEventListener( 'DOMContentLoaded', onLoad, false );
		window.addEventListener( 'load', onLoad, false );
	}
})( window, document );
&lt;/script&gt;
</html><thumbnail_url>https://datarecovery.ping.fm/wp-content/uploads/2024/03/How-to-Recover-Files-from-Formatted-Hard-Drive-Chinese.jpg</thumbnail_url><thumbnail_width>1280</thumbnail_width><thumbnail_height>731</thumbnail_height><description>&#x5982;&#x4F55;&#x4ECE;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x4E2D;&#x6062;&#x590D;&#x6587;&#x4EF6; &#x4ECE;&#x4E00;&#x4E2A;&#x5DF2;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x4E2D;&#x4E22;&#x5931;&#x91CD;&#x8981;&#x6570;&#x636E;&#x53EF;&#x80FD;&#x662F;&#x4E00;&#x79CD;&#x4EE4;&#x4EBA;&#x75DB;&#x82E6;&#x7684;&#x4F53;&#x9A8C;&#xFF0C;&#x7279;&#x522B;&#x662F;&#x5F53;&#x5B83;&#x5305;&#x542B;&#x5B9D;&#x8D35;&#x7684;&#x56DE;&#x5FC6;&#x6216;&#x5173;&#x952E;&#x6587;&#x4EF6;&#x65F6;&#x3002;&#x7136;&#x800C;&#xFF0C;&#x901A;&#x8FC7;&#x4F7F;&#x7528;&#x6B63;&#x786E;&#x7684;&#x5DE5;&#x5177;&#x548C;&#x6280;&#x5DE7;&#xFF0C;&#x6062;&#x590D;&#x8FD9;&#x4E9B;&#x4E22;&#x5931;&#x7684;&#x6587;&#x4EF6;&#x662F;&#x53EF;&#x80FD;&#x7684;&#x3002;&#x5728;&#x672C;&#x6587;&#x4E2D;&#xFF0C;&#x6211;&#x4EEC;&#x5C06;&#x63A2;&#x8BA8;&#x5982;&#x4F55;&#x4F7F;&#x7528;&#x4FE1;&#x8A89;&#x826F;&#x597D;&#x7684;&#x6570;&#x636E;&#x6062;&#x590D;&#x8F6F;&#x4EF6;&#x4ECE;&#x5DF2;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x6062;&#x590D;&#x6587;&#x4EF6;&#x3002; 1 &#x5E38;&#x89C1;&#x60C5;&#x666F;&#xFF1A; &#x610F;&#x5916;&#x683C;&#x5F0F;&#x5316; &#x9009;&#x62E9;&#x5FEB;&#x901F;&#x683C;&#x5F0F;&#x5316;&#x800C;&#x4E0D;&#x662F;&#x7B80;&#x5355;&#x7684;&#x6587;&#x4EF6;&#x5220;&#x9664;&#x3002; &#x5728;&#x521B;&#x5EFA;&#x6216;&#x4FEE;&#x6539;&#x5206;&#x533A;&#x65F6;&#x51FA;&#x9519;&#xFF0C;&#x5BFC;&#x81F4;&#x4E0D;&#x5F97;&#x4E0D;&#x8FDB;&#x884C;&#x683C;&#x5F0F;&#x5316;&#x3002; &#x6DF7;&#x6DC6;&#x4E86;&#x5916;&#x90E8;&#x9A71;&#x52A8;&#x5668;&#xFF0C;&#x683C;&#x5F0F;&#x5316;&#x4E86;&#x9519;&#x8BEF;&#x7684;&#x9A71;&#x52A8;&#x5668;&#x3002; &#x91CD;&#x88C5;&#x64CD;&#x4F5C;&#x5931;&#x8BEF; &#x5168;&#x65B0;&#x7684;&#x64CD;&#x4F5C;&#x7CFB;&#x7EDF;&#x5B89;&#x88C5;&#x9700;&#x8981;&#x8FDB;&#x884C;&#x78C1;&#x76D8;&#x683C;&#x5F0F;&#x5316;&#xFF0C;&#x800C;&#x4E4B;&#x524D;&#x6CA1;&#x6709;&#x59A5;&#x5584;&#x5907;&#x4EFD;&#x6570;&#x636E;&#x3002; &#x5728;&#x64CD;&#x4F5C;&#x7CFB;&#x7EDF;&#x5B89;&#x88C5;&#x8FC7;&#x7A0B;&#x4E2D;&#x65E0;&#x610F;&#x4E2D;&#x683C;&#x5F0F;&#x5316;&#x4E86;&#x7B2C;&#x4E8C;&#x4E2A;&#x5185;&#x90E8;&#x9A71;&#x52A8;&#x5668;&#x3002; &#x9A71;&#x52A8;&#x5668;&#x635F;&#x574F;&#x95EE;&#x9898; &#x9047;&#x5230;&#x635F;&#x574F;&#x7684;&#x6587;&#x4EF6;&#x7CFB;&#x7EDF;&#xFF0C;&#x63D0;&#x793A;&#x8FDB;&#x884C;&#x683C;&#x5F0F;&#x5316;&#x4EE5;&#x4FBF;&#x7EE7;&#x7EED;&#x4F7F;&#x7528;&#x3002; &#x6076;&#x610F;&#x8F6F;&#x4EF6;&#x6216;&#x75C5;&#x6BD2;&#x611F;&#x67D3;&#x5BFC;&#x81F4;&#x9A71;&#x52A8;&#x5668;&#x5185;&#x5BB9;&#x88AB;&#x683C;&#x5F0F;&#x5316;&#x3002; 2 &#x9010;&#x6B65;&#x6307;&#x5357;&#x3002;&#x4ECE;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x4E2D;&#x6062;&#x590D;&#x6587;&#x4EF6;&#xFF1A; &#x65B9;&#x6CD5;1&#xFF1A;&#x4F7F;&#x7528; Disk Drill &#x4ECE;&#x516C;&#x53F8;&#x7F51;&#x7AD9;&#x4E0B;&#x8F7D;&#x5E76;&#x5B89;&#x88C5; Disk Drill&#x3002; &#x542F;&#x52A8; Disk Drill &#x5E76;&#x4ECE;&#x53EF;&#x7528;&#x9A71;&#x52A8;&#x5668;&#x5217;&#x8868;&#x4E2D;&#x9009;&#x62E9;&#x5DF2;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x3002; &#x70B9;&#x51FB;&#x2018;&#x6062;&#x590D;&#x2019;&#x6309;&#x94AE;&#x4EE5;&#x5F00;&#x59CB;&#x626B;&#x63CF;&#x8FC7;&#x7A0B;&#x3002; &#x4ECE;&#x626B;&#x63CF;&#x7ED3;&#x679C;&#x4E2D;&#x9884;&#x89C8;&#x548C;&#x9009;&#x62E9;&#x4F60;&#x5E0C;&#x671B;&#x6062;&#x590D;&#x7684;&#x6587;&#x4EF6;&#x3002; &#x9009;&#x62E9;&#x4E00;&#x4E2A;&#x4E0E;&#x6E90;&#x9A71;&#x52A8;&#x5668;&#x4E0D;&#x540C;&#x7684;&#x6062;&#x590D;&#x76EE;&#x7684;&#x5730;&#xFF0C;&#x5E76;&#x6062;&#x590D;&#x4F60;&#x7684;&#x6587;&#x4EF6;&#x3002; &#x6CE8;&#x610F;&#xFF1A;&#x907F;&#x514D;&#x5728;&#x5DF2;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x786C;&#x76D8;&#x4E0A;&#x5B58;&#x50A8;&#x4EFB;&#x4F55;&#x65B0;&#x6570;&#x636E;&#xFF0C;&#x4EE5;&#x9632;&#x6B62;&#x8986;&#x76D6;&#x4E22;&#x5931;&#x7684;&#x6587;&#x4EF6;&#x3002; &#x7ED3;&#x8BBA;&#xFF1A;Disk Drill &#x63D0;&#x4F9B;&#x4E86;&#x4E00;&#x4E2A;&#x7528;&#x6237;&#x53CB;&#x597D;&#x7684;&#x754C;&#x9762;&#x548C;&#x5F3A;&#x5927;&#x7684;&#x626B;&#x63CF;&#x7B97;&#x6CD5;&#xFF0C;&#x6709;&#x6548;&#x5730;&#x4ECE;&#x5DF2;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x9A71;&#x52A8;&#x5668;&#x4E2D;&#x6062;&#x590D;&#x6587;&#x4EF6;&#x3002; &#x65B9;&#x6CD5;2&#xFF1A;&#x4ECE;&#x5907;&#x4EFD;&#x4E2D;&#x6062;&#x590D; &#x8FDE;&#x63A5;&#x5305;&#x542B;&#x4F60;&#x7684; &#x5907;&#x4EFD; &#x7684;&#x5916;&#x90E8;&#x9A71;&#x52A8;&#x5668;&#x3002; &#x5BFC;&#x822A;&#x5230;&#x5907;&#x4EFD;&#x6587;&#x4EF6;&#x5939;&#x5E76;&#x627E;&#x5230;&#x4F60;&#x9700;&#x8981;&#x7684;&#x6587;&#x4EF6;&#x3002; &#x5C06;&#x6587;&#x4EF6;&#x590D;&#x5236;&#x56DE;&#x5230;&#x4F60;&#x7684;&#x4E3B;&#x786C;&#x76D8;&#x3002; &#x6CE8;&#x610F;&#xFF1A;&#x8FD9;&#x4E2A;&#x65B9;&#x6CD5;&#x53D6;&#x51B3;&#x4E8E;&#x5728;&#x683C;&#x5F0F;&#x5316;&#x4E4B;&#x524D;&#x6709;&#x4E00;&#x4E2A;&#x6700;&#x65B0;&#x7684;&#x5907;&#x4EFD;&#x3002; &#x7ED3;&#x8BBA;&#xFF1A;&#x5B9A;&#x671F;&#x5907;&#x4EFD;&#x53EF;&#x4EE5;&#x8282;&#x7701;&#x5F88;&#x591A;&#x9EBB;&#x70E6;&#xFF0C;&#x5E76;&#x786E;&#x4FDD;&#x5728;&#x610F;&#x5916;&#x683C;&#x5F0F;&#x5316;&#x7684;&#x60C5;&#x51B5;&#x4E0B;&#x6570;&#x636E;&#x5B89;&#x5168;&#x3002; &#x65B9;&#x6CD5;3&#xFF1A;&#x4F7F;&#x7528;&#x6587;&#x4EF6;&#x5386;&#x53F2;&#x8BB0;&#x5F55; &#x524D;&#x5F80;&#x4F60;&#x7684; Windows &#x673A;&#x5668;&#x4E0A;&#x7684; &#x8BBE;&#x7F6E; &gt; &#x66F4;&#x65B0;&#x4E0E;&#x5B89;&#x5168; &gt; &#x5907;&#x4EFD;&#x3002; &#x5728; &#x2018;&#x4F7F;&#x7528;&#x6587;&#x4EF6;&#x5386;&#x53F2;&#x8BB0;&#x5F55;&#x5907;&#x4EFD;&#x2019; &#x90E8;&#x5206;&#x4E0B;&#x9009;&#x62E9; &#x2018;&#x66F4;&#x591A;&#x9009;&#x9879;&#x2019;&#x3002; &#x70B9;&#x51FB; [&hellip;]</description></oembed>
