Как экспортировать настройки WiFi из Windows 7 в Apple Mac OSX?

837
questioner56

Купил новый Mac, но не могу получить доступ к беспроводным сетям, которые я использовал, потому что их пароли сохранены на моем старом компьютере.

Можно ли экспортировать имена WiFi и их пароли с ПК с Windows 7 и импортировать в OSX Yosemite?

Это можно сделать локально (без отправки настроек через интернет), например, через USB?

Я не знаю, как писать сценарии или код, но я разбираюсь в технологиях - уточните, если у вас есть сложное решение.

0
@Ramhound Вы можете использовать `netsh wlan show profile name = имя профиля ключ = очистить` DavidPostill 7 лет назад 0
@DavidPostill - я не знал об этой команде. Ramhound 7 лет назад 0
@Ramhound Вы можете узнать что-нибудь каждый день;) DavidPostill 7 лет назад 0
@DavidPostill - Когда я научусь уходить от определенных типов пользователей, прежде чем из-за разочарования ударить головой о свой стол и объяснить своему боссу, почему он сломался? * Я должен отметить, что я оставил «это» намеренно расплывчатым, в неудачной попытке быть смешным. Ramhound 7 лет назад 0

1 ответ на вопрос

1
DavidPostill

How can you export WiFi settings from Windows 7

Two ways:

  1. Use Netsh.

  2. Use WirelessKeyView by Nirsoft.

Notes:

  • This will allow to export or see the wireless keys for stored wireless profiles.
  • I don't use OSX so I don't know how you would import the keys.

Netsh solution:

  1. Retrieve a list of wireless profiles:

    netsh wlan show profiles 
  2. Retrieve the detailed profile for a specific wireless profile:

    netsh wlan show profiles name=profile_name key=clear 

Notes:

  • key=clear. When specified, it means that if a key is present in the profile and the user has administrative privileges on the local computer, then the plain text key is displayed as part of the profile.
  • In the following example, the Profile name and Wireless key have been censored.

Example:

F:\test>netsh wlan show profiles Profiles on interface Wireless Network Connection: Group policy profiles (read only) --------------------------------- <None> User profiles ------------- All User Profile : censored F:\test>netsh wlan show profiles name=censored key=clear Profile censored on interface Wireless Network Connection: ======================================================================= Applied: All User Profile Profile information ------------------- Version : 1 Type : Wireless LAN Name : censored Control options : Connection mode : Connect automatically Network broadcast : Connect only if this network is broadcasting AutoSwitch : Do not switch to other networks Connectivity settings --------------------- Number of SSIDs : 1 SSID name : "censored" Network type : Infrastructure Radio type : [ Any Radio Type ] Vendor extension : Not present Security settings ----------------- Authentication : WPA2-Personal Cipher : CCMP Security key : Present Key Content : censored 

WirelessKeyView solution

WirelessKeyView recovers all wireless network security keys/passwords (WEP/WPA) stored in your computer by the 'Wireless Zero Configuration' service of Windows XP or by the 'WLAN AutoConfig' service of Windows Vista, Windows 7, Windows 8, and Windows Server 2008.

It allows you to easily save all keys to text/html/xml file, or copy a single key to the clipboard. You can also export your wireless keys into a file and import these keys into another computer.

enter image description here

...

License

This utility is released as freeware.

Source WirelessKeyView v1.70 - Recover lost wireless network key


Disclaimer

I am not affiliated with Nirsoft in any way, I am just an end user of the software.


Further Reading

Похожие вопросы