I want to create a network share using vbScript.
Is there a way of doing this other than executing a "net share" command?
e.g.
Set shell = CreateObject("WScript.Shell")
shell.Run "net share sc1=" & sShare , 1, false
I want to create a network share using vbScript.
Is there a way of doing this other than executing a "net share" command?
e.g.
Set shell = CreateObject("WScript.Shell")
shell.Run "net share sc1=" & sShare , 1, false
Use WMI via vbscript.
Taken from http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/filesfolders/sharedfolders/#CreateNetworkShare.htm
Try this -
Taken from this MSDN page - http://msdn.microsoft.com/en-us/library/8kst88h6(VS.85).aspx
It is how we map network shares in our login scripts.