当前位置: 代码迷 >> SharePoint >> PowerShell -Identity是什么意思,该如何解决
  详细解决方案

PowerShell -Identity是什么意思,该如何解决

热度:369   发布时间:2016-05-02 07:27:15.0
PowerShell -Identity是什么意思
Remove-SPSite -Identity targetSite -Comfirm:$false,
这句命令 -Identity ,-Comfirm:$false是什么意思,
请问在MSDN上可以找到相关资料吗

------解决方案--------------------
-Identity http://yourSPSite 参数是对应的站点地址 
-Comfirm:$false  表示不提示是否删除
详细说明参考微软文档:
http://technet.microsoft.com/en-us/library/ff607948(v=office.14).aspx
------解决方案--------------------
-identity 是参数,需要你指定一个需要删掉站点的guid或者URL。
-Confirm:$false 意思是指 运行这行命令不需要确认,如果不加这个参数,那么你输入命令后,控制台会提示你是否确认运行这个命令
你在控制台敲 get-help remove-spsite -full 就可以得到非常详细的解释。
如果你想更深入了解powershell脚本,网上很多资料都可以查到。
  相关解决方案