{"version":"1.0","provider_name":"How To &amp; Best Software","provider_url":"https:\/\/howto.ping.fm\/zh-tw\/","author_name":"zamozhnii","author_url":"https:\/\/howto.ping.fm\/zh-tw\/","title":"USB \u50b3\u8f38\u5728\u9060\u7aef\u5de5\u4f5c\u4e2d\u7684\u64cd\u4f5c\u6307\u5357","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"pUYoULgVHs\"><a href=\"https:\/\/howto.ping.fm\/zh-tw\/how-to-use-remote-desktop\/\">\u9019\u662f\u5982\u4f55\u5728\u96fb\u8166\u4e0a\u4f7f\u7528\u9060\u7aef\u684c\u9762\u5de5\u5177\u3002<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/howto.ping.fm\/zh-tw\/how-to-use-remote-desktop\/embed\/#?secret=pUYoULgVHs\" width=\"600\" height=\"338\" title=\"&#8220;\u9019\u662f\u5982\u4f55\u5728\u96fb\u8166\u4e0a\u4f7f\u7528\u9060\u7aef\u684c\u9762\u5de5\u5177\u3002&#8221; &#8212; How To &amp; Best Software\" data-secret=\"pUYoULgVHs\" 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-TaiwaneseMandarin.jpg","thumbnail_width":1280,"thumbnail_height":731,"description":"\u5982\u4f55\u5728\u60a8\u7684\u96fb\u8166\u4e0a\u4f7f\u7528\u9060\u7a0b\u684c\u9762 \u60f3\u50cf\u4e00\u4e0b\uff0c\u5982\u679c\u60a8\u80fd\u5920\u5728\u4e16\u754c\u4efb\u4f55\u5730\u65b9\u5b58\u53d6\u4e26\u63a7\u5236\u60a8\u7684\u96fb\u8166\uff0c\u5c31\u597d\u50cf\u60a8\u6b63\u5750\u5728\u96fb\u8166\u524d\u4e00\u6a23\u3002\u90a3\u5c31\u662f\u9060\u7a0b\u684c\u9762\u7684\u5a01\u529b\u3002\u5728\u6211\u5011\u4e92\u806f\u7684\u6642\u4ee3\uff0c\u9060\u7a0b\u684c\u9762\u6280\u8853\u88ab\u8d8a\u4f86\u8d8a\u666e\u904d\u5730\u7528\u65bc\u9060\u7a0b\u5de5\u4f5c\u3001\u8cc7\u8a0a\u79d1\u6280\u652f\u63f4\u8207\u500b\u4eba\u4f7f\u7528\u3002\u7121\u8ad6\u60a8\u662f\u8cc7\u8a0a\u79d1\u6280\u5c08\u696d\u4eba\u54e1\u3001\u9060\u7a0b\u8fa6\u516c\u8005\uff0c\u6291\u6216\u53ea\u662f\u5728\u65c5\u884c\u6642\u5c0b\u627e\u65b9\u4fbf\u5b58\u53d6\u5bb6\u4e2d\u96fb\u8166\u7684\u4eba\uff0c\u4e86\u89e3\u9060\u7a0b\u684c\u9762\u7684\u904b\u4f5c\u5c0d\u60a8\u800c\u8a00\u90fd\u662f\u975e\u5e38\u6709\u76ca\u7684\u3002\u8b93\u6211\u5011\u6df1\u5165\u9060\u7a0b\u684c\u9762\u7684\u4e16\u754c\uff0c\u770b\u770b\u5b83\u5011\u5982\u4f55\u7c21\u5316\u6211\u5011\u7684\u6578\u4f4d\u751f\u6d3b\u3002 1 \u5e38\u898b\u5834\u666f\uff1a \u5728\u5bb6\u5de5\u4f5c &#127968; \u5229\u7528\u865b\u64ec\u79c1\u4eba\u7db2\u7d61 (VPN)\u5b89\u5168\u5730\u9023\u63a5\u5230\u8fa6\u516c\u5ba4\u57fa\u790e\u8a2d\u65bd\u3002 \u5b58\u53d6\u5de5\u4f5c\u96fb\u8166\u4e0a\u7684\u6a94\u6848\u8207\u61c9\u7528\u7a0b\u5f0f\u3002 \u8207\u540c\u4e8b\u5be6\u6642\u5354\u4f5c\u9805\u76ee\u3002 \u63d0\u4f9b\u8cc7\u8a0a\u79d1\u6280\u652f\u63f4 &#128187; \u9060\u8ddd\u96e2\u9032\u884c\u5ba2\u6236\u7cfb\u7d71\u7684\u6545\u969c\u6392\u89e3\u3002 \u5728\u9060\u7a0b\u6a5f\u5668\u4e0a\u5b89\u88dd\u6216\u66f4\u65b0\u8edf\u9ad4\u3002 \u7121\u9700\u89aa\u81ea\u524d\u5f80\u4ed6\u5011\u7684\u4f4d\u7f6e\u5373\u53ef\u5354\u52a9\u9060\u7a0b\u7528\u6236\u3002 \u5728\u5916\u5b58\u53d6\u500b\u4eba\u6a94\u6848 &#128194; \u9032\u5165\u60a8\u7684\u5bb6\u7528\u96fb\u8166\u53d6\u56de\u91cd\u8981\u6587\u4ef6\u6216\u5a92\u9ad4\u3002 \u904b\u884c\u76ee\u524d\u4f7f\u7528\u7684\u8a2d\u5099\u4e0a\u672a\u5b89\u88dd\u7684\u61c9\u7528\u7a0b\u5f0f\u6216\u904a\u6232\u3002 \u901a\u904e\u9023\u63a5\u7684\u684c\u9762\u4ecb\u9762\u76e3\u63a7\u5bb6\u5ead\u5b89\u5168\u651d\u5f71\u6a5f\u3002 2 \u9010\u6b65\u6307\u5357\u3002\u9060\u7a0b\u684c\u9762USB\u7a7f\u900f\uff0c\u9060\u7a0b\u684c\u9762\u5354\u5b9a\uff1a \u65b9\u6cd5 1\uff1a\u4f7f\u7528Windows\u9060\u7a0b\u684c\u9762\u9023\u63a5 &#128421; \u555f\u7528\u4e3b\u6a5f\u96fb\u8166\u4e0a\u7684\u9060\u7a0b\u684c\u9762\uff0c\u901a\u904e\u300c\u7cfb\u7d71\u5c6c\u6027\u300d\u64cd\u4f5c\u3002 \u78ba\u4fdd\u4e3b\u6a5f\u96fb\u8166\u9023\u63a5\u4e92\u806f\u7db2\u4e26\u8a18\u4e0b\u5176IP\u4f4d\u5740\u3002 \u5728\u9060\u7a0b\u96fb\u8166\u4e0a\u6253\u958b\u9060\u7a0b\u684c\u9762\u9023\u63a5\u5ba2\u6236\u7aef\uff0c\u8f38\u5165\u4e3b\u6a5f\u7684IP\u4f4d\u5740\uff0c\u4e26\u9023\u63a5\u3002 \u6ce8\u610f\uff1a\u6b64\u65b9\u6cd5\u5167\u5efa\u65bcWindows\u4f5c\u696d\u7cfb\u7d71\u4e2d\uff0c\u4f46\u8981\u6c42\u4e3b\u6a5f\u904b\u884c\u5c08\u696d\u7248\u6216\u4f01\u696d\u7248\u3002 \u7d50\u8ad6\uff1a\u9019\u662f\u4e00\u500b\u6574\u5408\u7684\u89e3\u6c7a\u65b9\u6848\uff0c\u975e\u5e38\u9069\u5408\u9700\u8981\u5b58\u53d6\u5176Windows\u6a5f\u5668\u7684\u5728\u9014\u4f7f\u7528\u8005\u3002 \u65b9\u6cd5 2\uff1a\u5229\u7528TeamViewer &#128226; \u5728\u4e3b\u6a5f\u8207\u9060\u7a0b\u8a2d\u5099\u4e0a\u4e0b\u8f09\u4e26\u5b89\u88ddTeamViewer\u3002 \u6253\u958b\u61c9\u7528\u7a0b\u5f0f\uff0c\u5728\u5169\u500b\u8a2d\u5099\u4e0a\u5275\u5efa\u5e33\u865f\u4e26\u767b\u5165\u3002 \u4f7f\u7528\u63d0\u4f9b\u7684\u300c\u5408\u4f5c\u5925\u4f34ID\u300d\u9023\u63a5\u4e26\u63a7\u5236\u4e3b\u6a5f\u8a2d\u5099\u3002 \u6ce8\u610f\uff1aTeamViewer\u56e0\u5176\u8a2d\u7f6e\u7c21\u55ae\u548c\u5ee3\u6cdb\u7684\u8a2d\u5099\u517c\u5bb9\u6027\u800c\u53d7\u6b61\u8fce\u3002 \u7d50\u8ad6\uff1a\u5c0d\u65bc\u9700\u8981\u53ef\u9760\u4e14\u6613\u65bc\u4f7f\u7528\u7684\u9060\u7a0b\u684c\u9762\u5de5\u5177\u7684\u7528\u6236\u4f86\u8aaa\uff0cTeamViewer\u662f\u4e00\u500b\u4e0d\u932f\u7684\u9078\u64c7\u3002 \u65b9\u6cd5 3\uff1a\u5229\u7528Chrome\u9060\u7a0b\u684c\u9762 &#9989; \u5728\u5169\u53f0\u96fb\u8166\u4e0a\u900f\u904eChrome\u7db2\u4e0a\u5546\u5e97\u5b89\u88ddChrome\u9060\u7a0b\u684c\u9762\u64f4\u5145\u529f\u80fd\u3002 \u4f7f\u7528\u60a8\u7684Google\u5e33\u865f\u8a2d\u7f6e\u4e26\u9075\u5faa\u5c4f\u5e55\u4e0a\u7684\u8a2d\u7f6e\u8aaa\u660e\u3002 \u901a\u904e\u9078\u64c7\u5217\u8868\u4e2d\u53ef\u7528\u7684\u4e3b\u6a5f\u96fb\u8166\u9060\u7a0b\u9023\u63a5\u3002 \u6ce8\u610f\uff1a\u6b64\u65b9\u6cd5\u9700\u8981\u4f7f\u7528Google Chrome\u548cGoogle\u5e33\u865f\u3002 \u7d50\u8ad6\uff1a\u5982\u679c\u60a8\u5728\u5c0b\u627e\u8de8\u5e73\u53f0\u548c\u57fa\u65bc\u700f\u89bd\u5668\u7684\u9060\u7a0b\u684c\u9762\u9078\u64c7\uff0cChrome\u9060\u7a0b\u684c\u9762\u662f\u4e00\u500b\u4e0d\u932f\u7684\u9078\u64c7\u3002 \u65b9\u6cd5 4\uff1a\u8a2d\u7f6eVNC (\u865b\u64ec\u7db2\u7d61\u8a08\u7b97) &#128200; \u9078\u64c7\u4e00\u500bVNC\u670d\u52d9\u63d0\u4f9b\u5546\uff0c\u5982RealVNC\uff0c\u4e26\u5728\u4e3b\u6a5f\u8a2d\u5099\u4e0a\u5b89\u88dd\u4f3a\u670d\u5668\u8edf\u9ad4\u3002 \u5728\u9060\u7a0b\u8a2d\u5099\u4e0a\u5b89\u88dd\u76f8\u61c9\u7684VNC\u67e5\u770b\u5668\u3002 \u914d\u7f6eVNC\u4f3a\u670d\u5668\u8a2d\u5b9a\uff0c\u5305\u62ec\u5bc6\u78bc\u548c\u7db2\u7d61\u9078\u9805\u3002 \u4f7f\u7528\u4e3b\u6a5f\u7684IP\u4f4d\u5740\u548c\u5bc6\u78bc\u900f\u904e\u67e5\u770b\u5668\u5ba2\u6236\u7aef\u9023\u63a5\u3002 [&hellip;]"}