1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Windows11 24H2で共有フォルダが開けない

Posted at

共有フォルダへアクセスする際、ユーザ認証を行わずにアクセスしようとすると、guestユーザでのアクセスになります。
しかし、Windows11 24H2環境ではguestユーザでのアクセスができなくなりました。

今のご時勢、セキュリティ的にguestユーザは使うなというのはごもっともなのですが、外に繋がらないイントラ環境だとちょっと困る事があります。

これはPowershell(管理者)で、以下のコマンドを実行する事で接続できるようになります。

Set-SmbClientConfiguration -RequireSecuritySignature $false -Force
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?