<?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>&#x6570;&#x636E;&#x6062;&#x590D;&#x8F6F;&#x4EF6;</author_name><author_url>https://datarecovery.ping.fm/zh/</author_url><title>&#x5982;&#x4F55;&#x5728;Windows 11&#x4E0A;&#x6062;&#x590D;&#x5DF2;&#x5220;&#x9664;&#x7684;&#x6587;&#x4EF6;&#x3010;&#x6700;&#x4F73;&#x65B9;&#x6CD5;&#x3011;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="fwnM1OWjfi"&gt;&lt;a href="https://datarecovery.ping.fm/zh/recover-deleted-files-windows-11/"&gt;&#x5982;&#x4F55;&#x5728;Windows 11&#x4E0A;&#x6062;&#x590D;&#x5DF2;&#x5220;&#x9664;&#x7684;&#x6587;&#x4EF6;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://datarecovery.ping.fm/zh/recover-deleted-files-windows-11/embed/#?secret=fwnM1OWjfi" width="600" height="338" title="&#x201C;&#x5982;&#x4F55;&#x5728;Windows 11&#x4E0A;&#x6062;&#x590D;&#x5DF2;&#x5220;&#x9664;&#x7684;&#x6587;&#x4EF6;&#x201D; &#x2014; &#x6570;&#x636E;&#x6062;&#x590D;&#x8F6F;&#x4EF6;" data-secret="fwnM1OWjfi" 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/04/How-to-Recover-Deleted-Files-on-Windows-11-Chinese.jpg</thumbnail_url><thumbnail_width>1280</thumbnail_width><thumbnail_height>731</thumbnail_height><description>&#x5982;&#x4F55;&#x5728;Windows 11&#x4E0A;&#x6062;&#x590D;&#x5DF2;&#x5220;&#x9664;&#x6587;&#x4EF6; &#x610F;&#x5916;&#x5220;&#x9664;&#x91CD;&#x8981;&#x6587;&#x4EF6;&#x662F;&#x8BB8;&#x591A;&#x7528;&#x6237;&#x90FD;&#x4F1A;&#x9047;&#x5230;&#x7684;&#x5E38;&#x89C1;&#x9519;&#x8BEF;&#x3002;&#x5E78;&#x8FD0;&#x7684;&#x662F;&#xFF0C;Windows 11&#x5305;&#x542B;&#x4E86;&#x51E0;&#x9879;&#x529F;&#x80FD;&#x548C;&#x5DE5;&#x5177;&#xFF0C;&#x53EF;&#x4EE5;&#x5E2E;&#x52A9;&#x6062;&#x590D;&#x8FD9;&#x4E9B;&#x5173;&#x952E;&#x7684;&#x6570;&#x636E;&#x3002;&#x672C;&#x6587;&#x5C06;&#x6307;&#x5BFC;&#x4F60;&#x4E86;&#x89E3;Windows 11&#x4E2D;&#x7684;&#x6587;&#x4EF6;&#x6062;&#x590D;&#x7EC6;&#x8282;&#xFF0C;&#x5229;&#x7528;&#x5185;&#x7F6E;&#x65B9;&#x5F0F;&#x548C;&#x5916;&#x90E8;&#x89E3;&#x51B3;&#x65B9;&#x6848;&#x3002;&#x76EE;&#x6807;&#x662F;&#x63D0;&#x4F9B;&#x4E00;&#x79CD;&#x5168;&#x9762;&#x7684;&#x6587;&#x4EF6;&#x8FD8;&#x539F;&#x65B9;&#x6CD5;&#xFF0C;&#x8FD9;&#x662F;&#x6211;&#x5728;&#x9047;&#x5230;&#x7C7B;&#x4F3C;&#x95EE;&#x9898;&#x65F6;&#x4EB2;&#x81EA;&#x5B9E;&#x8DF5;&#x8FC7;&#x7684;&#x3002; 1 &#x5E38;&#x89C1;&#x573A;&#x666F;&#xFF1A; &#x610F;&#x5916;&#x5220;&#x9664; &#x1F5D1; &#x6E05;&#x7A7A;&#x56DE;&#x6536;&#x7AD9;&#x65F6;&#x6CA1;&#x610F;&#x8BC6;&#x5230;&#x6709;&#x5173;&#x952E;&#x6587;&#x4EF6;&#x5728;&#x91CC;&#x9762;&#x3002; &#x4F7F;&#x7528;Shift + Delete&#x547D;&#x4EE4;&#xFF0C;&#x8BE5;&#x547D;&#x4EE4;&#x4F1A;&#x7ED5;&#x8FC7;&#x56DE;&#x6536;&#x7AD9;&#x3002; &#x6279;&#x91CF;&#x5220;&#x9664;&#x6587;&#x4EF6;&#x540E;&#x7ACB;&#x5373;&#x610F;&#x8BC6;&#x5230;&#x9519;&#x8BEF;&#x3002; &#x7CFB;&#x7EDF;&#x66F4;&#x65B0;&#x6216;&#x5D29;&#x6E83; &#x1F4A5; Windows 11&#x66F4;&#x65B0;&#x5BFC;&#x81F4;&#x610F;&#x5916;&#x6587;&#x4EF6;&#x5220;&#x9664;&#x3002; &#x610F;&#x5916;&#x7684;&#x65AD;&#x7535;&#x6216;&#x7CFB;&#x7EDF;&#x5D29;&#x6E83;&#x5BFC;&#x81F4;&#x672A;&#x4FDD;&#x5B58;&#x6570;&#x636E;&#x7684;&#x4E22;&#x5931;&#x3002; &#x7531;&#x4E8E;&#x7CFB;&#x7EDF;&#x6545;&#x969C;&#x5BFC;&#x81F4;&#x7684;&#x786C;&#x76D8;&#x9519;&#x8BEF;&#x3002; &#x75C5;&#x6BD2;&#x6216;&#x6076;&#x610F;&#x8F6F;&#x4EF6;&#x653B;&#x51FB; &#x1F9A0; &#x88AB;&#x6740;&#x6BD2;&#x8F6F;&#x4EF6;&#x81EA;&#x52A8;&#x5220;&#x9664;&#x7684;&#x611F;&#x67D3;&#x6587;&#x4EF6;&#x3002; &#x6076;&#x610F;&#x8F6F;&#x4EF6;&#x5BFC;&#x81F4;&#x6587;&#x4EF6;&#x635F;&#x574F;&#x6216;&#x5220;&#x9664;&#x3002; &#x5728;&#x89E3;&#x51B3;&#x6076;&#x610F;&#x8F6F;&#x4EF6;&#x653B;&#x51FB;&#x540E;&#x51FA;&#x73B0;&#x6587;&#x4EF6;&#x8BBF;&#x95EE;&#x95EE;&#x9898;&#x3002; 2 &#x9010;&#x6B65;&#x6307;&#x5357;&#x3002;&#x5728;Windows 11&#x4E0A;&#x6062;&#x590D;&#x5DF2;&#x5220;&#x9664;&#x6587;&#x4EF6;&#xFF1A; &#x65B9;&#x6CD5;1&#xFF1A;&#x4F7F;&#x7528;&#x56DE;&#x6536;&#x7AD9; &#x1F5D1; &#x53CC;&#x51FB;&#x684C;&#x9762;&#x4E0A;&#x7684;&#x56DE;&#x6536;&#x7AD9;&#x56FE;&#x6807;&#x6253;&#x5F00;&#x56DE;&#x6536;&#x7AD9;&#x3002; &#x627E;&#x5230;&#x4F60;&#x5E0C;&#x671B;&#x6062;&#x590D;&#x7684;&#x5DF2;&#x5220;&#x9664;&#x6587;&#x4EF6;&#x3002; &#x53F3;&#x952E;&#x70B9;&#x51FB;&#x6587;&#x4EF6;&#x5E76;&#x9009;&#x62E9;&#x8FD8;&#x539F;&#x4EE5;&#x5C06;&#x5B83;&#x4EEC;&#x79FB;&#x56DE;&#x539F;&#x6765;&#x7684;&#x4F4D;&#x7F6E;&#x3002; &#x6CE8;&#x610F;&#xFF1A;&#x5982;&#x679C;&#x6587;&#x4EF6;&#x6CA1;&#x6709;&#x88AB;&#x6C38;&#x4E45;&#x5220;&#x9664;&#x6216;&#x56DE;&#x6536;&#x7AD9;&#x6CA1;&#x6709;&#x88AB;&#x6E05;&#x7A7A;&#xFF0C;&#x624D;&#x80FD;&#x4ECE;&#x56DE;&#x6536;&#x7AD9;&#x6062;&#x590D;&#x6587;&#x4EF6;&#x3002; &#x7ED3;&#x8BBA;&#xFF1A;&#x56DE;&#x6536;&#x7AD9;&#x662F;&#x6062;&#x590D;&#x6700;&#x8FD1;&#x5220;&#x9664;&#x4E14;&#x672A;&#x88AB;&#x6C38;&#x4E45;&#x64E6;&#x9664;&#x6587;&#x4EF6;&#x7684;&#x6700;&#x7B80;&#x5355;&#x548C;&#x6700;&#x5FEB;&#x901F;&#x7684;&#x65B9;&#x6CD5;&#x3002; &#x65B9;&#x6CD5;2&#xFF1A;&#x4F7F;&#x7528;&#x6587;&#x4EF6;&#x5386;&#x53F2;&#x8BB0;&#x5F55; &#x1F552; &#x6253;&#x5F00;&#x8BBE;&#x7F6E;&#x5E76;&#x8F6C;&#x5230;&#x2018;&#x66F4;&#x65B0;&#x4E0E;&#x5B89;&#x5168;&#x2019; &gt; &#x2018;&#x5907;&#x4EFD;&#x2019;&#x3002; &#x786E;&#x4FDD;&#x5DF2;&#x8BBE;&#x7F6E;&#x6587;&#x4EF6;&#x5386;&#x53F2;&#x8BB0;&#x5F55;&#x529F;&#x80FD;&#xFF0C;&#x5E76;&#x5728;&#x201C;&#x4F7F;&#x7528;&#x6587;&#x4EF6;&#x5386;&#x53F2;&#x8BB0;&#x5F55;&#x5907;&#x4EFD;&#x201D;&#x4E0B;&#x9009;&#x62E9;&#x2018;&#x66F4;&#x591A;&#x9009;&#x9879;&#x2019;&#x3002; &#x70B9;&#x51FB;&#x2018;&#x4ECE;&#x5F53;&#x524D;&#x5907;&#x4EFD;&#x8FD8;&#x539F;&#x6587;&#x4EF6;&#x2019;&#xFF0C;&#x6D4F;&#x89C8;&#x6587;&#x4EF6;&#x4EE5;&#x627E;&#x5230;&#x4F60;&#x9700;&#x8981;&#x7684;&#x6587;&#x4EF6;&#x3002; &#x9009;&#x62E9;&#x6587;&#x4EF6;&#x5E76;&#x70B9;&#x51FB;&#x7EFF;&#x8272;&#x7684;&#x8FD8;&#x539F;&#x6309;&#x94AE;&#x6765;&#x56DE;&#x6536;&#x5B83;&#x4EEC;&#x3002; &#x6CE8;&#x610F;&#xFF1A;&#x6B64;&#x65B9;&#x6CD5;&#x8981;&#x6C42;&#x4F60;&#x4E4B;&#x524D;&#x5DF2;&#x5728;&#x5916;&#x90E8;&#x9A71;&#x52A8;&#x5668;&#x6216;&#x7F51;&#x7EDC;&#x4F4D;&#x7F6E;&#x6FC0;&#x6D3B;&#x6587;&#x4EF6;&#x5386;&#x53F2;&#x8BB0;&#x5F55;&#x3002; &#x7ED3;&#x8BBA;&#xFF1A;&#x6587;&#x4EF6;&#x5386;&#x53F2;&#x8BB0;&#x5F55;&#x662F;&#x4E00;&#x4E2A;&#x5B9D;&#x8D35;&#x7684;&#x6301;&#x7EED;&#x5907;&#x4EFD;&#x5DE5;&#x5177;&#xFF0C;&#x5982;&#x679C;&#x5728;&#x6587;&#x4EF6;&#x5220;&#x9664;&#x524D;&#x5DF2;&#x8BBE;&#x7F6E;&#xFF0C;&#x53EF;&#x4EE5;&#x8F7B;&#x677E;&#x6062;&#x590D;&#x3002; &#x65B9;&#x6CD5;3&#xFF1A;&#x4F7F;&#x7528;Windows&#x6587;&#x4EF6;&#x6062;&#x590D; &#x1F9F0; &#x4ECE;&#x5FAE;&#x8F6F;&#x5546;&#x5E97;&#x4E0B;&#x8F7D;&#x5E76;&#x5B89;&#x88C5;Windows&#x6587;&#x4EF6;&#x6062;&#x590D;&#x5DE5;&#x5177;&#x3002; &#x4EE5;&#x7BA1;&#x7406;&#x5458;&#x8EAB;&#x4EFD;&#x4F7F;&#x7528;&#x547D;&#x4EE4;&#x63D0;&#x793A;&#x7B26;&#x542F;&#x52A8;&#x8BE5;&#x5DE5;&#x5177;&#x3002; &#x8F93;&#x5165;&#x6B63;&#x786E;&#x7684;&#x547D;&#x4EE4;&#x8BED;&#x6CD5;&#xFF0C;&#x5BF9;&#x4F60;&#x6B63;&#x5728;&#x6267;&#x884C;&#x7684;&#x6062;&#x590D;&#x7C7B;&#x578B;&#xFF08;&#x5E38;&#x89C4;&#x6216;&#x6269;&#x5C55;&#x6A21;&#x5F0F;&#xFF09;&#x3002; &#x6309;&#x7167;&#x5C4F;&#x5E55;&#x6307;&#x793A;&#x5B8C;&#x6210;&#x6587;&#x4EF6;&#x6062;&#x590D;&#x8FC7;&#x7A0B;&#x3002; &#x6CE8;&#x610F;&#xFF1A;Windows&#x6587;&#x4EF6;&#x6062;&#x590D;&#x901A;&#x8FC7;&#x547D;&#x4EE4;&#x884C;&#x64CD;&#x4F5C;&#xFF0C;&#x53EF;&#x80FD;&#x66F4;&#x9002;&#x5408;&#x9AD8;&#x7EA7;&#x7528;&#x6237;&#x3002; &#x7ED3;&#x8BBA;&#xFF1A;Windows&#x6587;&#x4EF6;&#x6062;&#x590D;&#x53EF;&#x4EE5;&#x662F;&#x6062;&#x590D;&#x6587;&#x4EF6;&#x7684;&#x4E00;&#x4E2A;&#x5F3A;&#x5927;&#x5DE5;&#x5177;&#xFF0C;&#x7279;&#x522B;&#x662F;&#x4ECE;&#x683C;&#x5F0F;&#x5316;&#x6216;&#x635F;&#x574F;&#x7684;&#x5B58;&#x50A8;&#x8BBE;&#x5907;&#x4E0A;&#x6062;&#x590D;&#x3002; &#x65B9;&#x6CD5;4&#xFF1A;&#x4F7F;&#x7528;&#x7B2C;&#x4E09;&#x65B9;&#x6587;&#x4EF6;&#x6062;&#x590D;&#x8F6F;&#x4EF6; &#x1F4BD; [&hellip;]</description></oembed>
