Share via

Network error update 24H2

siegfried hirsnig 0 Reputation points
2024-10-22T11:27:00.35+00:00

Access code in WPF C# Created with Visual Studio 2022

string @strPath = @"\ 192.168.0.xxx \share";

bool boo_lavailable = md_0_3_folder_file_actions.is_folder_available (@strPath, @"No");

Module => is_folder_available (string @strPath, string @strCreate)

Switch (directory.exists (@strPath.trim ()))

{

 case false:

      bool_available = false;

      break;

  default:

         if (@strCreate == @"yes")

        {

            Directory.createdirectory (@strPath..trim ());

            Thread.sleep (1000);

            Switch (directory.exists (@strPath.trim ()))

            {

                case false:

                      bool_available = false;

                      break;

               default:

               bool_available = True;

               break;

           }

      }

      break;

}

Return under 23h2 => bool_available True

Return under 24h2 => bool_available False

Works below 23h2, not under 24h2 (notification no access).

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments

1 answer

Sort by: Most helpful
  1. Jing Zhou 7,805 Reputation points Microsoft External Staff
    2024-10-24T05:43:46.62+00:00

    Hello,

     

    Thank you for posting in Q&A forum.

    This issue could be caused by changes in the network settings or security updates. To further troubleshoot this issue, please kindly try below steps:

    1.Check if there's any SMB signing and guest fallback settings change on Win11 24H2

    2.Check if SMB signing is enabled on your network and guest fallback is disabled.

    3.Make sure the network drivers are up to date.

    4.Check if the firewall and antivirus are blokcing the network connectivity.

     

    I hope the information above is helpful.

    If you have any questions or concerns, please feel free to let us know.

     

    Best regards,

    Jill Zhou

     


    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.