码迷,mamicode.com
首页 > 系统相关 > 详细

powershell 带参数创建共享

时间:2015-05-08 18:24:12      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:share   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

powershell 带参数创建共享

标签:share   powershell   

原文地址:http://3544640.blog.51cto.com/3534640/1649648

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!