Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm trying to share a folder on the local network with the following code:

        My.Computer.FileSystem.CreateDirectory("C:\FolderToShare\")
        Dim managementClass As New Management.ManagementClass("Win32_Share")
        Dim inParams As Management.ManagementBaseObject = managementClass.GetMethodParameters("Create")
        inParams.Item("Description") = "This is a shared folder"
        inParams.Item("Name") = "FolderToShare"
        inParams.Item("Path") = "C:\FolderToShare\"
        inParams.Item("Type") = 0
        If (DirectCast(managementClass.InvokeMethod("Create", inParams, Nothing).Properties.Item("ReturnValue").Value, UInt32) <> 0) Then
            Throw New Exception("Unable to share directory.")
        End If

When the program is executed it indeed creates a shared folder and i can see it on the network, but i can't seem to be able to access it. Probably due to wrong permission settings. To make sure it was due to wrong permission settings I tried to set the folder's permissions through explorer, but the explorer told me that everyone on the computer indeed had access to this folder.

Could someone advise please? Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.