{"version":"1.0","provider_name":"Data Recovery Software","provider_url":"https:\/\/datarecovery.ping.fm\/zh-tw\/","author_name":"Data Recovery Software","author_url":"https:\/\/datarecovery.ping.fm\/zh-tw\/","title":"\u672a\u6307\u6d3e\u7684\u786c\u789f\u4ee5\u53ca\u5982\u4f55\u4fee\u5fa9\u3010\u6307\u5357\u3011","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"hDzqbs5e4z\"><a href=\"https:\/\/datarecovery.ping.fm\/zh-tw\/unallocated-hard-drive\/\">\u60a8\u786c\u789f\u4e2d\u7684\u672a\u5206\u914d\u7a7a\u9593\u662f\u4ec0\u9ebc\uff0c\u8a72\u5982\u4f55\u4fee\u5fa9\uff1f<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/datarecovery.ping.fm\/zh-tw\/unallocated-hard-drive\/embed\/#?secret=hDzqbs5e4z\" width=\"600\" height=\"338\" title=\"&#8220;\u60a8\u786c\u789f\u4e2d\u7684\u672a\u5206\u914d\u7a7a\u9593\u662f\u4ec0\u9ebc\uff0c\u8a72\u5982\u4f55\u4fee\u5fa9\uff1f&#8221; &#8212; Data Recovery Software\" data-secret=\"hDzqbs5e4z\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * This file cannot have ampersands in it. This is to ensure\n * it can be embedded in older versions of WordPress.\n * See https:\/\/core.trac.wordpress.org\/changeset\/35708.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\tvar supportedBrowser = false,\n\t\tloaded = false;\n\n\t\tif ( document.querySelector ) {\n\t\t\tif ( window.addEventListener ) {\n\t\t\t\tsupportedBrowser = true;\n\t\t\t}\n\t\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\tif ( ! data ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( ! ( data.secret || data.message || data.value ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( \/[^a-zA-Z0-9]\/.test( data.secret ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\t\/* Resize the iframe on request. *\/\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t}\n\n\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\tif ( 'link' === data.message ) {\n\t\t\t\tsourceURL = document.createElement( 'a' );\n\t\t\t\ttargetURL = document.createElement( 'a' );\n\n\t\t\t\tsourceURL.href = source.getAttribute( 'src' );\n\t\t\t\ttargetURL.href = data.value;\n\n\t\t\t\t\/* Only follow link if the protocol is in the allow list. *\/\n\t\t\t\tif ( ! allowedProtocols.test( targetURL.protocol ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t\/* Only continue if link hostname matches iframe's hostname. *\/\n\t\t\t\tif ( targetURL.host === sourceURL.host ) {\n\t\t\t\t\tif ( document.activeElement === source ) {\n\t\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tif ( loaded ) {\n\t\t\treturn;\n\t\t}\n\n\t\tloaded = true;\n\n\t\tvar isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),\n\t\t\tisIE11 = !!navigator.userAgent.match( \/Trident.*rv:11\\.\/ ),\n\t\t\tiframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\tiframeClone, i, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substr( 2, 10 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/* Remove security attribute from iframes in IE10 and IE11. *\/\n\t\t\tif ( ( isIE10 || isIE11 ) ) {\n\t\t\t\tiframeClone = source.cloneNode( true );\n\t\t\t\tiframeClone.removeAttribute( 'security' );\n\t\t\t\tsource.parentNode.replaceChild( iframeClone, source );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\tif ( supportedBrowser ) {\n\t\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\t\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n\t\twindow.addEventListener( 'load', onLoad, false );\n\t}\n})( window, document );\n<\/script>\n","thumbnail_url":"https:\/\/datarecovery.ping.fm\/wp-content\/uploads\/2024\/04\/What-is-an-Unallocated-Hard-Drive-and-How-to-Fix-It-TaiwaneseMandarin.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u4ec0\u9ebc\u662f\u672a\u5206\u914d\u7684\u786c\u789f\u4ee5\u53ca\u5982\u4f55\u4fee\u5fa9 \u5728\u786c\u789f\u7ba1\u7406\u7684\u9818\u57df\u4e2d\u5c0e\u822a\u5c0d\u65bc\u65b0\u624b\u4f86\u8aaa\u53ef\u80fd\u50cf\u662f\u5728\u6e3e\u6fc1\u7684\u6c34\u57df\u4e2d\u99d5\u99db\u3002\u6700\u8fd1\uff0c\u6211\u9762\u5c0d\u4e86\u4e00\u500b\u60c5\u5883\uff0c\u6211\u7684\u786c\u789f\u5728\u78c1\u76e4\u7ba1\u7406\u4e2d\u4e00\u90e8\u5206\u986f\u793a\u70ba\u672a\u5206\u914d\u3002\u9019\u770b\u4f3c\u4e1f\u5931\u7684\u7a7a\u9593\u81f3\u5c11\u662f\u4ee4\u4eba\u56f0\u60d1\u7684\uff0c\u9019\u4fc3\u4f7f\u6211\u63a2\u7d22\u4e86\u5404\u7a2e\u89e3\u6c7a\u6b64\u554f\u984c\u7684\u65b9\u6cd5\u3002\u7576\u60a8\u7684\u5132\u5b58\u88dd\u7f6e\u986f\u793a\u672a\u5206\u914d\u7a7a\u9593\u6642\uff0c\u901a\u5e38\u610f\u5473\u8457\u8a72\u7a7a\u9593\u5c1a\u672a\u683c\u5f0f\u5316\u6216\u5206\u5272\uff0c\u56e0\u6b64\u5c1a\u672a\u6e96\u5099\u597d\u9032\u884c\u6578\u64da\u5132\u5b58\u3002\u5728\u9019\u88e1\uff0c\u6211\u5c07\u5f15\u5c0e\u60a8\u5982\u4f55\u6062\u5fa9\u6216\u4fee\u5fa9\u672a\u5206\u914d\u7684\u786c\u789f\u5728Windows\u4e0a\uff0c\u4e26\u5145\u5206\u5229\u7528\u60a8\u7684HDD\u6216SSD\u3002 1 \u5e38\u898b\u60c5\u6cc1\uff1a \u610f\u5916\u522a\u9664\u5206\u5272\u5340 &#128465; \u5728\u5617\u8a66\u8abf\u6574\u5927\u5c0f\u6216\u91cd\u65b0\u5206\u5272\u9a45\u52d5\u5668\u6642\uff0c\u60a8\u53ef\u80fd\u6709\u6642\u6703\u4e0d\u5c0f\u5fc3\u522a\u9664\u73fe\u6709\u5206\u5272\u5340\u3002 \u8edf\u9ad4\u6545\u969c\u6216\u5728\u5206\u5272\u64cd\u4f5c\u671f\u9593\u7684\u4e2d\u65b7\u53ef\u80fd\u5c0e\u81f4\u5206\u5272\u8cc7\u8a0a\u7684\u4e1f\u5931\u3002 \u4f7f\u7528\u57f7\u884c\u932f\u8aa4\u64cd\u4f5c\u7684\u5354\u529b\u5ee0\u5546\u5206\u5272\u7ba1\u7406\u5de5\u5177\u53ef\u80fd\u5c0e\u81f4\u672a\u5206\u914d\u7684\u786c\u789f\u7a7a\u9593\u3002 \u9a45\u52d5\u5668\u5347\u7d1a\u548c\u514b\u9686\u5931\u8aa4 &#9877; \u5982\u679c\u60a8\u8981\u5347\u7d1a\u5230\u66f4\u5927\u7684\u9a45\u52d5\u5668\u4e26\u4e0d\u6b63\u78ba\u5730\u4f7f\u7528\u514b\u9686\u8edf\u9ad4\uff0c\u60a8\u53ef\u80fd\u6700\u5f8c\u6703\u7559\u4e0b\u672a\u5206\u914d\u7a7a\u9593\u3002 \u5728\u514b\u9686\u64cd\u4f5c\u671f\u9593\u672a\u9078\u64c7\u6b63\u78ba\u9078\u9805\u53ef\u80fd\u5c0e\u81f4\u65b0\u9a45\u52d5\u5668\u7121\u6cd5\u4f7f\u7528\u6240\u6709\u53ef\u7528\u7a7a\u9593\uff0c\u5c0e\u81f4\u672a\u5206\u914d\u5340\u200b\u200b\u57df\u3002 \u521d\u6b21\u786c\u789f\u8a2d\u7f6e\u6df7\u6dc6 &#129300; \u9996\u6b21\u521d\u59cb\u5316\u65b0\u786c\u789f\u53ef\u80fd\u6703\u5c0e\u81f4\u672a\u5206\u914d\u7a7a\u9593\uff0c\u5982\u679c\u5206\u5272\u64cd\u4f5c\u672a\u6b63\u78ba\u5b8c\u6210\u3002 \u5728\u8a2d\u7f6e\u904e\u7a0b\u4e2d\u907a\u6f0f\u91cd\u8981\u6b65\u9a5f\u53ef\u80fd\u6703\u5c0e\u81f4\u9a45\u52d5\u5668\u7121\u6cd5\u986f\u793a\u6216\u904b\u4f5c\u5982\u9810\u671f\u3002 2 \u9010\u6b65\u6307\u5357\u3002\u672a\u5206\u914d\u786c\u789f\uff1a \u65b9\u6cd51\uff1a\u4f7f\u7528\u78c1\u76e4\u7ba1\u7406\u5de5\u5177 &#9881; \u6309Windows + X\u4e26\u5f9e\u5feb\u901f\u8a2a\u554f\u9078\u55ae\u9078\u64c7\u78c1\u76e4\u7ba1\u7406\u3002 \u627e\u5230\u672a\u5206\u914d\u7684\u7a7a\u9593\uff0c\u53f3\u9375\u9ede\u64ca\u5b83\uff0c\u9078\u64c7&#8217;\u65b0\u5efa\u7c21\u6613\u5377&#8217;\u3002\u9075\u5faa\u7c21\u6613\u5377\u5411\u5c0e\u4f86\u5efa\u7acb\u548c\u683c\u5f0f\u5316\u4e00\u500b\u65b0\u5206\u5272\u5340\u3002 \u5206\u914d\u4e00\u500b\u9a45\u52d5\u5668\u5b57\u6bcd\uff0c\u9078\u64c7\u4e00\u500b\u6a94\u6848\u7cfb\u7d71\u548c\u5206\u914d\u55ae\u4f4d\u5927\u5c0f\uff0c\u7136\u5f8c\u9032\u884c\u683c\u5f0f\u5316\u5377\u3002 \u6ce8\u610f\uff1a\u5728\u5275\u5efa\u65b0\u5377\u4e4b\u524d\u78ba\u4fdd\u672a\u5206\u914d\u7a7a\u9593\u4e2d\u6c92\u6709\u91cd\u8981\u6578\u64da\uff0c\u56e0\u70ba\u9019\u500b\u904e\u7a0b\u5c07\u6e05\u9664\u4efb\u4f55\u53ef\u6062\u5fa9\u7684\u6578\u64da\u3002 \u7d50\u8ad6\uff1a\u9019\u662f\u5229\u7528\u672a\u5206\u914d\u7a7a\u9593\u7684\u6700\u76f4\u63a5\u65b9\u6cd5\uff0c\u7279\u5225\u662f\u5c0d\u65bc\u521d\u5b78\u8005\u3002 \u65b9\u6cd52\uff1a\u4f7f\u7528\u547d\u4ee4\u63d0\u793a\u5b57\u5143 &#128421; \u4ee5\u7ba1\u7406\u54e1\u8eab\u4efd\u6253\u958b\u547d\u4ee4\u63d0\u793a\u5b57\u5143\u3002 \u8f38\u5165&#8217;diskpart&#8217;\u555f\u52d5\u78c1\u789f\u5206\u5272\u5be6\u7528\u5de5\u5177\u3002 \u8f38\u5165&#8217;list disk&#8217;\u4e26\u8b58\u5225\u6709\u672a\u5206\u914d\u7a7a\u9593\u7684\u78c1\u789f\u3002 \u9078\u64c7\u8a72\u78c1\u789f\u5f8c\uff0c\u4f7f\u7528&#8217;create partition primary&#8217;\u547d\u4ee4\u5efa\u7acb\u4e00\u500b\u65b0\u5377\u3002 \u4f7f\u7528&#8217;format fs=ntfs&#8217;\uff08\u6216\u60a8\u504f\u597d\u7684\u6a94\u6848\u7cfb\u7d71\uff09\u7136\u5f8c\u8ddf\u8457\u8f38\u5165&#8217;assign letter=E&#8217;\uff08\u6216\u60a8\u504f\u597d\u7684\u5b57\u6bcd\uff09\u3002 \u6ce8\u610f\uff1a\u9019\u7a2e\u65b9\u6cd5\u66f4\u5148\u9032\uff0c\u5141\u8a31\u66f4\u5927\u7684\u63a7\u5236\u6b0a\uff0c\u4f46\u98a8\u96aa\u8f03\u9ad8\u3002\u547d\u4ee4\u63d0\u793a\u5b57\u5143\u7684\u77e5\u8b58\u63a8\u85a6\u4ee5\u907f\u514d\u932f\u8aa4\u3002 \u7d50\u8ad6\uff1a\u6700\u9069\u5408\u90a3\u4e9b\u7fd2\u6163\u65bc\u547d\u4ee4\u884c\u754c\u9762\u7684\u4eba\u4f7f\u7528\u3002 \u65b9\u6cd53\uff1a\u5206\u5272\u5340\u6062\u5fa9\u8edf\u9ad4 &#128736; \u4e0b\u8f09\u4e26\u5b89\u88dd\u6709\u4fe1\u8b7d\u7684\u5206\u5272\u5340\u6062\u5fa9\u8edf\u9ad4\u3002 \u904b\u884c\u8edf\u9ad4\u4e26\u9078\u64c7\u6062\u5fa9\u5206\u5272\u5340\u9078\u9805\u3002 \u9078\u64c7\u76ee\u6a19\u78c1\u76df\u4e26\u8b93\u8edf\u4ef6\u70ba\u4e1f\u5931\u7684\u5206\u5272\u7d50\u69cb\u9032\u884c\u6383\u63cf\u3002 \u9810\u89bd\u4e26\u6309\u7167\u87a2\u5e55\u4e0a\u7684\u6307\u793a\u6062\u5fa9\u627e\u5230\u7684\u5206\u5272\u5340\u3002 \u6ce8\u610f\uff1a\u9019\u7a2e\u65b9\u6cd5\u53ef\u80fd\u6709\u52a9\u65bc\u6062\u5fa9\u5e36\u6709\u5b8c\u6574\u6578\u64da\u7684\u5206\u5272\u5340\uff0c\u4f46\u6210\u529f\u8207\u5426\u4e0d\u4fdd\u8b49\uff1b\u4e3b\u8981\u53d6\u6c7a\u65bc\u5206\u5272\u6578\u64da\u662f\u5426\u5df2\u88ab\u8986\u5beb\u3002 \u7d50\u8ad6\uff1a\u5982\u679c\u672a\u5206\u914d\u7a7a\u9593\u5167\u7684\u6578\u64da\u91cd\u8981\u4e14\u5c1a\u672a\u88ab\u8986\u5beb\uff0c\u9019\u6703\u7279\u5225\u6709\u5e6b\u52a9\u3002 \u65b9\u6cd54\uff1a\u786c\u789f\u514b\u9686\u8edf\u9ad4 &#128260; \u4f7f\u7528\u80fd\u5920\u5728\u514b\u9686\u904e\u7a0b\u4e2d\u81ea\u52d5\u8abf\u6574\u5206\u5272\u5340\u5927\u5c0f\u7684\u514b\u9686\u8edf\u9ad4\u3002 \u4ed4\u7d30\u9078\u64c7\u60a8\u7684\u6e90\u9a45\u52d5\u5668\u548c\u76ee\u6a19\u9a45\u52d5\u5668\uff0c\u78ba\u4fdd\u6240\u6709\u671f\u671b\u7684\u5206\u5272\u5340\u90fd\u88ab\u9078\u64c7\u9032\u884c\u514b\u9686\u3002 \u5982\u679c\u8edf\u9ad4\u5141\u8a31\uff0c\u624b\u52d5\u8abf\u6574\u5206\u5272\u5340\u5927\u5c0f\u4ee5\u4f7f\u7528\u65b0\u9a45\u52d5\u5668\u7684\u5168\u90e8\u5bb9\u91cf\u3002 [&hellip;]"}