我有这个:
[Environment]::GetFolderPath('MyDocuments')
但是我需要声明其余的路径:
\WindowsPowerShell\Modules\SharePointOnline.CSOM\0.1.0\Microsoft.SharePoint.Client.dll'
我该怎么做?
答案 0 :(得分:0)
有几种方法可以做到这一点 您可以通过声明变量$ VariableName
将对象放入变量中$Test = [Environment]::GetFolderPath('MyDocuments')
"$Test\WindowsPowerShell\Modules\SharePointOnline.CSOM\0.1.0\Microsoft.SharePoint.Client.dll"
或
使用 $(),您可以将命令的输出声明为变量
"$([Environment]::GetFolderPath('MyDocuments'))\WindowsPowerShell\Modules\SharePointOnline.CSOM\0.1.0\Microsoft.SharePoint.Client.dll"