Import-Module ConfigurationManager.psd1の後に、非管理者ユーザーとしてSCCMサイトフォルダにCDを実行しようとしています。しかし、私は次のエラーをgetttingています:Powershell cd sitecodeが動作しない
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内からこれを行うことができますか?
申し訳ありませんが、私は1SA :, 1SAは、SCCMでのサイトコードである、それはCDだった間違ったコマンドを貼り付けていました。 – Prabhat
C:\ Users \ u6 \ Documents \ 1SAにcdをしようとしているパスは何ですか? C:\ Users \ u6 \ Documents \ 1SA:? 存在しますか? –
私は答えとして投稿した解決策を得ました。実際に1SA:作成されたCMSiteに対応する電源シェルのドライブです。答えで与えられたコマンドを使用して利用できなかったのは、それを作成してアクセスできるようになりました。 – Prabhat