MECM/SCCM に登録されているユーザーや PC をグループ化することができます。
MECM/SCCM ではグループのことをコレクションと呼びます。
アプリ配布する際にコレクションを指定して配布したり、対象のコレクション内の PC の OS のバージョンを抽出したりなど、MECM/SCCM で各種操作の基本となる機能になります。
目次
コレクションを参照する
Get-CMCollection
#サンプル
[testUser]という名前のコレクションを表示させる
Get-CMCollection -Name "testUser"
コレクションを追加する
New-CMCollection
#サンプル
コレクションの名前を [All Users] とし、メンバーとして [testUser] を指定してコレクションを作成する
New-CMCollection -CollectionType User -LimitingCollectionName "All Users" -Name "testUser"
コレクションを編集する
Set-CMCollection
#サンプル
コレクションの名前を [testUser] から [newTestUser] に変更する
Get-CMCollection -Name "testUser" | Set-CMCollection -NewName "newTestUser"
コレクションを削除する
Remove-CMCollection
#サンプル
[testUser] という名前のコレクションを削除する
Remove-CMCollection -Name "testUser" -Force
コレクションの一覧をエクスポートする
Export-CMCollection
#サンプル
[testUser] という名前のコレクションを [collection.mof] ファイルにエクスポートする
Export-CMCollection -Name "testUser" -ExportFilePath "C:\collection.mof"
コレクションの一覧をインポートする
Import-CMCollection
#サンプル
エクスポートされた [collection.mof] ファイルをインポートする
Import-CMCollection -ImportFilePath "c:\path\collection.mof"
まとめ
- 参照:Get-CMCollection
- 追加:New-CMCollection
- 編集:Set-CMCollection
- 削除:Remove-CMCollection
- エクスポート:Export-CMCollection
- Import-CMCollection
コメント