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.