2017-02-10 63 views
0

我試圖在導入模塊ConfigurationManager.psd1作爲非管理員用戶在遠程計算機上運行CD到SCCM站點文件夾。不過我流汗以下錯誤:Powershell cd站點代碼不起作用

PS C:\windows\system32> Enter-PSSession -ComputerName somecomputer -Credential Sccm\u6 
[somecomputer]: PS C:\Users\u6\Documents> Import-Module ConfigurationManager.psd1 
[somecomputer]: PS C:\Users\u6\Documents> cd 1SA: 
cd : Cannot find drive. A drive with the name '1SA' does not exist. 
    + CategoryInfo   : ObjectNotFound: (1SA:String) [Set-Location], DriveNotFoundException 
    + FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.SetLocationCommand 

我可以通過以下鏈接給出的文檔解決這個問題:http://benef-it.blogspot.in/2013/04/solve-ps-drive-problem-with-sccm2012.html

但我怎麼能做到這一點從PowerShell中編程?

回答

-1

我不認爲文件夾的名稱中可以包含「:」。它確實看起來像該文件夾不存在。

+0

對不起,我已經貼了錯誤的命令是CD撒上:,撒上是在SCCM站點代碼。 – Prabhat

+0

那麼你試圖將光盤放入C:\ Users \ u6 \ Documents \ 1SA的路徑是什麼? C:\ Users \ u6 \ Documents \ 1SA:? 它存在嗎? –

+1

好的,得到了​​解決方案,我發佈了答案。實際上1SA:是在與創建的CMSite對應的電源外殼中驅動的。這是不可用的使用回答中給出的命令可以創建,現在可以訪問。 – Prabhat