Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Publish a Shared Folder in Active DirectoryContent of Publish a Shared Folder in Active Directory.vbsMD5 Hash: 2B3AAA8401301F3334CD6389E69FFB95 |
||
' Description: Publishes a shared folder in Active Directory, assigning the folder a description and three keywords.
Set objComputer = GetObject _ ("LDAP://OU=Finance, DC=fabrikam, DC=com") Set objShare = objComputer.Create("volume", "CN=FinanceShare") objShare.Put "uNCName", "\\atl-dc-02\FinanceShare" objShare.Put "Description", "Public share for users in the Finance group." objShare.Put "Keywords", Array("finance", "fiscal", "monetary") objShare.SetInfo | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |