{"version":"1.0","provider_name":"\u5982\u4f55\u64cd\u4f5c & \u6700\u4f73\u8f6f\u4ef6","provider_url":"https:\/\/howto.ping.fm\/zh\/","author_name":"webdev","author_url":"https:\/\/howto.ping.fm\/zh\/","title":"\u5982\u4f55\u8fdc\u7a0b\u684c\u9762USB\u900f\u4f20","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"FQhIpfdjZI\"><a href=\"https:\/\/howto.ping.fm\/zh\/how-to-use-remote-desktop\/\">\u5982\u4f55\u5728\u60a8\u7684 PC \u4e0a\u4f7f\u7528\u8fdc\u7a0b\u684c\u9762<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/howto.ping.fm\/zh\/how-to-use-remote-desktop\/embed\/#?secret=FQhIpfdjZI\" width=\"600\" height=\"338\" title=\"&#8220;\u5982\u4f55\u5728\u60a8\u7684 PC \u4e0a\u4f7f\u7528\u8fdc\u7a0b\u684c\u9762&#8221; &#8212; \u5982\u4f55\u64cd\u4f5c &amp; \u6700\u4f73\u8f6f\u4ef6\" data-secret=\"FQhIpfdjZI\" 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:\/\/www.ping.fm\/howto\/wp-content\/uploads\/2024\/04\/How-to-use-Remote-Desktop-on-your-PC-Chinese.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u5982\u4f55\u5728\u60a8\u7684\u7535\u8111\u4e0a\u4f7f\u7528\u8fdc\u7a0b\u684c\u9762 \u60f3\u8c61\u4e00\u4e0b\uff0c\u65e0\u8bba\u5728\u4e16\u754c\u4e0a\u54ea\u4e2a\u89d2\u843d\uff0c\u60a8\u90fd\u80fd\u50cf\u5750\u5728\u7535\u8111\u524d\u90a3\u6837\u8bbf\u95ee\u548c\u63a7\u5236\u60a8\u7684\u7535\u8111\u3002\u8fd9\u5c31\u662f\u8fdc\u7a0b\u684c\u9762\u7684\u80fd\u529b\u3002\u5728\u6211\u4eec\u8fd9\u4e2a\u4e92\u8054\u4e92\u901a\u7684\u65f6\u4ee3\uff0c\u4f7f\u7528\u8fdc\u7a0b\u684c\u9762\u6280\u672f\u5bf9\u4e8e\u8fdc\u7a0b\u5de5\u4f5c\u3001IT\u652f\u6301\u548c\u4e2a\u4eba\u7528\u9014\u6765\u8bf4\u8d8a\u6765\u8d8a\u666e\u904d\u3002\u65e0\u8bba\u60a8\u662fIT\u4e13\u4e1a\u4eba\u58eb\u3001\u8fdc\u7a0b\u901a\u52e4\u8005\uff0c\u8fd8\u662f\u5728\u65c5\u884c\u65f6\u5bfb\u6c42\u65b9\u4fbf\u5730\u8bbf\u95ee\u5bb6\u7528\u7535\u8111\u7684\u4eba\uff0c\u4e86\u89e3\u8fdc\u7a0b\u684c\u9762\u7684\u5de5\u4f5c\u539f\u7406\u662f\u6781\u5176\u6709\u76ca\u7684\u3002\u8ba9\u6211\u4eec\u6df1\u5165\u4e86\u89e3\u8fdc\u7a0b\u684c\u9762\u7684\u4e16\u754c\uff0c\u4ee5\u53ca\u5b83\u4eec\u5982\u4f55\u7b80\u5316\u6211\u4eec\u7684\u6570\u5b57\u751f\u6d3b\u3002 1 \u5e38\u89c1\u60c5\u5883: \u5bb6\u5ead\u529e\u516c &#127968; \u5229\u7528\u865a\u62df\u79c1\u4eba\u7f51\u7edc\uff08VPN\uff09\u5b89\u5168\u5730\u8fde\u63a5\u5230\u529e\u516c\u5ba4\u57fa\u7840\u8bbe\u65bd\u3002 \u8bbf\u95ee\u5de5\u4f5c\u7535\u8111\u4e0a\u7684\u6587\u4ef6\u548c\u5e94\u7528\u7a0b\u5e8f\u3002 \u4e0e\u540c\u4e8b\u5b9e\u65f6\u534f\u4f5c\u9879\u76ee\u3002 \u63d0\u4f9bIT\u652f\u6301 &#128187; \u5bf9\u5ba2\u6237\u7684\u7cfb\u7edf\u8fdb\u884c\u8fdc\u7a0b\u6545\u969c\u6392\u9664\u3002 \u5728\u8fdc\u7a0b\u673a\u5668\u4e0a\u5b89\u88c5\u6216\u66f4\u65b0\u8f6f\u4ef6\u3002 \u65e0\u9700\u4eb2\u81ea\u5230\u8bbf\u7528\u6237\u6240\u5728\u4f4d\u7f6e\u5373\u53ef\u8fdb\u884c\u8fdc\u7a0b\u534f\u52a9\u3002 \u968f\u65f6\u968f\u5730\u8bbf\u95ee\u4e2a\u4eba\u6587\u4ef6 &#128194; \u8fdb\u5165\u5bb6\u7528\u7535\u8111\u68c0\u7d22\u91cd\u8981\u7684\u6587\u6863\u6216\u5a92\u4f53\u3002 \u8fd0\u884c\u5f53\u524d\u4f7f\u7528\u7684\u8bbe\u5907\u4e0a\u672a\u5b89\u88c5\u7684\u5e94\u7528\u7a0b\u5e8f\u6216\u6e38\u620f\u3002 \u901a\u8fc7\u8fde\u63a5\u7684\u684c\u9762\u63a5\u53e3\u76d1\u63a7\u5bb6\u5ead\u5b89\u5168\u6444\u50cf\u5934\u3002 2 \u5206\u6b65\u6307\u5357\u3002\u8fdc\u7a0b\u684c\u9762USB\u7a7f\u900f\uff0c\u8fdc\u7a0b\u684c\u9762\u534f\u8bae\uff1a \u65b9\u6cd5 1: \u4f7f\u7528Windows\u8fdc\u7a0b\u684c\u9762\u8fde\u63a5 &#128421; \u901a\u8fc7\u201c\u7cfb\u7edf\u5c5e\u6027\u201d\u542f\u7528\u4e3b\u673a\u7535\u8111\u4e0a\u7684\u8fdc\u7a0b\u684c\u9762\u3002 \u786e\u4fdd\u4e3b\u673a\u7535\u8111\u8fde\u63a5\u5230\u4e92\u8054\u7f51\u5e76\u8bb0\u4e0b\u5176IP\u5730\u5740\u3002 \u5728\u8fdc\u7a0b\u7535\u8111\u4e0a\uff0c\u6253\u5f00\u8fdc\u7a0b\u684c\u9762\u8fde\u63a5\u5ba2\u6237\u7aef\uff0c\u8f93\u5165\u4e3b\u673a\u7684IP\u5730\u5740\u5e76\u8fde\u63a5\u3002 \u6ce8\u610f\uff1a\u6b64\u65b9\u6cd5\u5185\u7f6e\u4e8eWindows\u64cd\u4f5c\u7cfb\u7edf\u4e2d\uff0c\u4f46\u8981\u6c42\u4e3b\u673a\u8fd0\u884c\u4e13\u4e1a\u7248\u6216\u4f01\u4e1a\u7248\u3002 \u7ed3\u8bba\uff1a\u5bf9\u4e8e\u9700\u8981\u8bbf\u95eeWindows\u673a\u5668\u7684\u5728\u9014\u7528\u6237\u6765\u8bf4\uff0c\u8fd9\u662f\u4e00\u4e2a\u96c6\u6210\u7684\u89e3\u51b3\u65b9\u6848\u3002 \u65b9\u6cd5 2: \u4f7f\u7528TeamViewer &#128226; \u5728\u4e3b\u673a\u548c\u8fdc\u7a0b\u8bbe\u5907\u4e0a\u4e0b\u8f7d\u5e76\u5b89\u88c5TeamViewer\u3002 \u6253\u5f00\u5e94\u7528\u7a0b\u5e8f\uff0c\u5728\u4e24\u53f0\u8bbe\u5907\u4e0a\u521b\u5efa\u8d26\u6237\u5e76\u767b\u5f55\u3002 \u4f7f\u7528\u63d0\u4f9b\u7684\u201c\u5408\u4f5c\u4f19\u4f34ID\u201d\u8fde\u63a5\u5e76\u63a7\u5236\u4e3b\u673a\u8bbe\u5907\u3002 \u6ce8\u610f\uff1aTeamViewer\u56e0\u5176\u8bbe\u7f6e\u7b80\u4fbf\u548c\u8de8\u8bbe\u5907\u7684\u5e7f\u6cdb\u517c\u5bb9\u6027\u800c\u53d7\u6b22\u8fce\u3002 \u7ed3\u8bba\uff1a\u5bf9\u4e8e\u9700\u8981\u53ef\u9760\u4e14\u7528\u6237\u53cb\u597d\u8fdc\u7a0b\u684c\u9762\u5de5\u5177\u7684\u7528\u6237\u6765\u8bf4\uff0cTeamViewer\u662f\u4e00\u4e2a\u4e0d\u9519\u7684\u9009\u62e9\u3002 \u65b9\u6cd5 3: \u5229\u7528Chrome\u8fdc\u7a0b\u684c\u9762 &#9989; \u901a\u8fc7Chrome\u7f51\u4e0a\u5e94\u7528\u5e97\u5728\u4e24\u53f0\u7535\u8111\u4e0a\u5b89\u88c5Chrome\u8fdc\u7a0b\u684c\u9762\u6269\u5c55\u3002 \u4f7f\u7528\u60a8\u7684Google\u8d26\u6237\u8fdb\u884c\u8bbe\u7f6e\uff0c\u5e76\u6309\u7167\u5c4f\u5e55\u4e0a\u7684\u6307\u793a\u5b8c\u6210\u8bbe\u7f6e\u3002 \u901a\u8fc7\u9009\u62e9\u5217\u8868\u4e2d\u53ef\u7528\u7684\u4e3b\u673a\u7535\u8111\u6765\u8fdc\u7a0b\u8fde\u63a5\u3002 \u6ce8\u610f\uff1a\u6b64\u65b9\u6cd5\u8981\u6c42\u4f7f\u7528Google Chrome\u548cGoogle\u8d26\u6237\u3002 \u7ed3\u8bba\uff1a\u5982\u679c\u60a8\u6b63\u5728\u5bfb\u627e\u4e00\u4e2a\u8de8\u5e73\u53f0\u4e14\u57fa\u4e8e\u6d4f\u89c8\u5668\u7684\u8fdc\u7a0b\u684c\u9762\u9009\u9879\uff0cChrome\u8fdc\u7a0b\u684c\u9762\u662f\u4e00\u4e2a\u4e0d\u9519\u7684\u9009\u62e9\u3002 \u65b9\u6cd5 4: \u8bbe\u7f6eVNC\uff08\u865a\u62df\u7f51\u7edc\u8ba1\u7b97\uff09 &#128200; \u9009\u62e9\u4e00\u4e2a\u50cfRealVNC\u7684VNC\u670d\u52a1\u63d0\u4f9b\u5546\uff0c\u5e76\u5728\u4e3b\u673a\u4e0a\u5b89\u88c5\u670d\u52a1\u5668\u8f6f\u4ef6\u3002 \u5728\u8fdc\u7a0b\u8bbe\u5907\u4e0a\u5b89\u88c5\u76f8\u5e94\u7684VNC\u67e5\u770b\u5668\u3002 [&hellip;]"}