共用方式為


非廣播設定檔範例

非廣播設定檔範例可用來連線到未廣播其網路名稱或 SSID 的網路。

此範例設定檔已設定為使用Wi-Fi在個人模式中執行的受保護存取安全性, (WPA-Personal) 。 暫時金鑰完整性通訊協定 (TKIP) 用於加密。 使用其他安全性和加密類型的設定檔也可以設定為非廣播設定檔。

Windows XP with SP3 和 Wireless LAN API for Windows XP with SP2:會忽略 WLANProfile專案的名稱子系。 設定檔的名稱,如同儲存在設定檔存放區中,衍生自SSID元素的名稱子系。

<?xml version="1.0" encoding="US-ASCII"?>
<WLANProfile xmlns="https://www.microsoft.com/networking/WLAN/profile/v1">
    <name>SampleNonBroadcast</name>
    <SSIDConfig>
        <SSID>
            <name>SampleNonBroadcast</name>
        </SSID>
        <nonBroadcast>true</nonBroadcast>
    </SSIDConfig>
    <connectionType>ESS</connectionType>
    <connectionMode>auto</connectionMode>
    <MSM>
        <security>
            <authEncryption>
                <authentication>WPAPSK</authentication>
                <encryption>TKIP</encryption>
                <useOneX>false</useOneX>
            </authEncryption>
        </security>
    </MSM>
</WLANProfile>

此範例設定檔已省略共用金鑰。 如果您嘗試使用此範例設定檔來連線到網路,系統會提示您輸入共用金鑰。 您可以將sharedKey子項目新增至緊接在authEncryption元素之後的安全性元素,以避免出現此提示。

下列程式碼片段顯示包含未加密金鑰的 sharedKey 元素。 您必須先將批註 <!-- insert key here --> 取代為實際的未加密金鑰,才能在設定檔中使用此程式碼片段。

<sharedKey>
    <keyType>passPhrase</keyType>
    <protected>false</protected>
    <keyMaterial> <!-- insert key here --> </keyMaterial>
</sharedKey>

無線設定檔範例