Skip to content

Commit

Permalink
Added readme
Browse files Browse the repository at this point in the history
  • Loading branch information
emoacht committed Aug 22, 2015
1 parent b2c7c3e commit 6037c9f
Show file tree
Hide file tree
Showing 6 changed files with 168 additions and 0 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
##History

Ver 1.0.0 2015-8-22

- Initial release
Binary file added Images/Screenshot_Win10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/Screenshot_Win81.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015 EMO

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
71 changes: 71 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
[Japanese](README_ja.md)

WLAN Profile Viewer
===================

WLAN Profile Viewer is a Windows desktop app to manage wireless LAN profiles. It can do the following:
- Show a list of all existing wireless LAN profiles
- Connect and disconnect to a wireless LAN
- Change the order (priority) of wireless LAN profiles
- Delete a wireless LAN profile

![Screenshot on Windows 10](Images/Screenshot_Win10.png)<br>
![Screenshot on Windows 8.1](Images/Screenshot_Win81.png)

##Requirements

* Windows 7 or newer
* .NET Framework 4.5.2

##Download

[Download](https://github.com/emoacht/WlanProfileViewer/releases/download/1.0.0/WlanProfileViewer100.zip)

##Install

No installation is required.

Settings file will be saved in the following folder.<br>
[system drive]\Users\[user name]\AppData\WlanProfileViewer\

##Remarks

- Each profile is associated with a specific wireless LAN adapter and so, if the adapter is removed (in the case of a USB adapter for example), such profile will not be shown.

- Reloading requests a wireless LAN adapter to rescan wireless LANs. As a result, if it has been already connected, frequent reloading might slow down the connection speed.

- On Windows 10, the order of profiles can be changed (except a profile receiving a signal). However, it is virtually meaningless because OS automatically changes the order depending on the situation.

- When the order of a profile is changed, it may happen that the position of another profile will jump (especially if the authentication is open). It is done by OS itself but the clear reason is unknown.

##History

[History](History.md)

##License

- MIT License

##Libraries

- [Reactive Extensions][1]
- [Reactive Property][2]
- [WPF Monitor Aware Window][3]

[1]: https://github.com/Reactive-Extensions/Rx.NET
[2]: https://github.com/runceel/ReactiveProperty
[3]: https://github.com/emoacht/WpfMonitorAware

##Reference: How to delete wireless LAN profiles from OS's GUI

The GUI to delete wireless LAN profiles has come back in Windows 8.1 Update. To reach this GUI, see the following.

###Windows 8.1 Update

"Settings" in Charm ¨ "Change PC settings" ¨ "Network" ¨ "Connections" ¨ "Manage known networks" in "Wi-Fi"

###Windows 10

"Network settings" from notification area (or "Settings" from Start menu) ¨ "Network & Internet" ¨ "Wi-Fi" ¨ "Manage WiFi Settings" ¨ "Manage known networks"

Note: If multiple profiles of the same name exist (it will happen if you connected to the same wireless LAN using multiple wireless LAN adapters because SSID of wireless LAN is used for a profile name), such profiles will not be differentiated and will be deleted in bulk.
71 changes: 71 additions & 0 deletions README_ja.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
[English](README.md)

WLAN Profile Viewer
===================

WLAN Profile Viewerは無線LANプロファイルを管理するためのWindowsデスクトップアプリです。以下のことが可能です。
- 既存の無線LANプロファイルの一覧表示
- 無線LANへの接続と切断
- 無線LANプロファイルの順番(優先度)の変更
- 無線LANプロファイルの削除

![Screenshot on Windows 10](Images/Screenshot_Win10.png)<br>
![Screenshot on Windows 8.1](Images/Screenshot_Win81.png)

##動作条件

* Windows 7以降
* .NET Framework 4.5.2

##ダウンロード

[ダウンロード](https://github.com/emoacht/WlanProfileViewer/releases/download/1.0.0/WlanProfileViewer100.zip)

##インストール

インストール作業は必要ありません。

設定ファイルは以下のフォルダーに保存されます。<br>
[システムドライブ]\Users\[ユーザー名]\AppData\Roaming\WlanProfileViewer\

##特記事項

- 各プロファイルは特定の無線LANアダプターに関連付けられているので、そのアダプターが取り外されているときは(例えばUSBアダプターの場合)、表示されません。

- リロードは無線LANアダプターに無線LANの再スキャンを要求します。結果的に、既に接続中の場合、頻繁なリロードは接続速度を遅くするかもしれません。

- Windows 10では、プロファイルの順番を変更することはできますが(電波が入っているプロファイルを除く)、OSが状況によって自動的に順番を変更するため、実質的に無意味です。

- プロファイルの順番を変更したとき、別のプロファイルの位置が飛ぶことがあります(とくに認証がオープンな場合)。OS自身によるものですが、明確な理由は不明です。

##履歴

[History](History.md)

##ライセンス

- MIT License

##ライブラリ

- [Reactive Extensions][1]
- [Reactive Property][2]
- [WPF Monitor Aware Window][3]

[1]: https://github.com/Reactive-Extensions/Rx.NET
[2]: https://github.com/runceel/ReactiveProperty
[3]: https://github.com/emoacht/WpfMonitorAware

##参考: 無線LANプロファイルをOSのGUIから削除する方法

無線LANプロファイルを削除するためのGUIがWindows 8.1 Updateから復活しました。このGUIに辿り着くには以下を見てください。

###Windows 8.1 Update

チャームの"設定" → "PC設定の変更" → "ネットワーク" → "接続" → "Wi-Fi"の"既知のネットワークの管理"

###Windows 10

通知領域から"ネットワーク設定"(またはスタートメニューから"設定")→ "ネットワークとインターネット" → "Wi-Fi" → "Wi-Fi設定を管理する" → "既知のネットワークの管理"

注意: 同名のプロファイルが複数ある場合(プロファイル名には無線LANのSSIDが使われるので、同じ無線LANに複数の無線LANアダプターで接続した場合に起こる)、これらは区別されず、まとめて削除されます。

0 comments on commit 6037c9f

Please sign in to comment.