powershell 带参数创建共享

param($folderPath,$shareName,$maxAllowed=5,$description="BY PowerShell!")

if(!$folderPath)

{

    Write-Host "缺少需要共享的目录!";exit

}

if(!$shareName)

{

    Write-Host "缺少共享名称!";exit

}

$class="win32_share"

$type=0

if(!(Test-Path $folderPath))

{

    New-Item -Path $folderpath -ItemType directory

}

$objwmi=[WmiClass]$class

$objwmi.create($folderpath,$shareName,$type,$maxallowed,$description)


本文出自 “加速器” 博客,请务必保留此出处http://3544640.blog.51cto.com/3534640/1649648

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。