LoginSignup
5
4

More than 5 years have passed since last update.

Windows 10(開発者モード)のsshdを停止させる方法

Last updated at Posted at 2016-10-09

Windows10でBash on Ubuntu on Windowsを使うには、開発者モードへの切り替えが必要ですが、その際、sshd(SshProxy, SshBroker)がサービスとして追加されてしまうようです。

弊害

SSHを用いて外部からアクセスできるようになるため、セキュリティ面でのリスクとなってしまいます。

対策

管理者権限でコマンドプロンプトを起動し、以下のコマンドを入力することで、サービスを停止させます。

sc stop SshProxy
sc config SshProxy start= disabled
sc stop SshBroker
sc config SshBroker start= disabled

参考文献

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4