作为部署过程的一部分,我将添加云工作者角色所需的证书。
Add-AzureCertificate -ServiceName" $ service" -CertToDeploy" $ certPath" -Password $ CertPassword
当$ certPath的值是本地路径(&#34; D:\ certificates \ cert.pfx &#34;)时,我可以添加证书,一切顺利。< / p>
当$ certPath是共享路径时(&#34; \ shared.ad.abc.com \ certificates \ cert.pfx &#34;),我得到以下异常,< / p>
&#34;不支持指定路径的格式&#34;
请帮我解决这个问题!
由于
答案 0 :(得分:0)
了解命令提示符命令net use:
C:\Users\SomeUser>net use /?
The syntax of this command is:
NET USE
[devicename | *] [\\computername\sharename[\volume] [password | *]]
[/USER:[domainname\]username]
[/USER:[dotted domain name\]username]
[/USER:[username@dotted domain name]
[/SMARTCARD]
[/SAVECRED]
[[/DELETE] | [/PERSISTENT:{YES | NO}]]
NET USE {devicename | *} [password | *] /HOME
NET USE [/PERSISTENT:{YES | NO}]
一个简单的样本:
net use z: \shared.ad.abc.com\certificates
然后在PowerShell中使用z:\cert.pfx