Connect-CmRcViewer.ps1
19 Sep 2025Description
Purpose
Connect-CmRcViewer
Detailed Description
Connect-CmRcViewer - Spawn ConfigMgr Remote Control Viewer and launches a session to a remote computer.
Usage
Example 1
Connect-CmRcViewer -ComputerName COMPUTERNAME
Starts an ConfigMgr Remote Control Viewer session to COMPUTERNAME
Example 2
Get-ADComputer -Filter { Name -like '*SCCM*' } | ForEach-Object -Process { Connect-CmRcViewer -ComputerName $_.DNSHostName }
Starts an ConfigMgr Remote Control Viewer session to all SCCM computers in Active Directory
Notes
Author: Luke Leigh Website: https://scripts.lukeleigh.com/ LinkedIn: https://www.linkedin.com/in/lukeleigh/ GitHub: https://github.com/BanterBoy/ GitHubGist: https://gist.github.com/BanterBoy
Script
Function Connect-CmRcViewer {
<#
.SYNOPSIS
Connect-CmRcViewer
.DESCRIPTION
Connect-CmRcViewer - Spawn ConfigMgr Remote Control Viewer and launches a session to a remote computer.
.PARAMETER ComputerName
This parameter accepts the Name of the computer you would like to connect to.
Supports IP/Name/FQDN
.EXAMPLE
Connect-CmRcViewer -ComputerName COMPUTERNAME
Starts an ConfigMgr Remote Control Viewer session to COMPUTERNAME
.EXAMPLE
Get-ADComputer -Filter { Name -like '*SCCM*' } | ForEach-Object -Process { Connect-CmRcViewer -ComputerName $_.DNSHostName }
Starts an ConfigMgr Remote Control Viewer session to all SCCM computers in Active Directory
.OUTPUTS
System.String. Connect-RDPSession
.NOTES
Author: Luke Leigh
Website: https://scripts.lukeleigh.com/
LinkedIn: https://www.linkedin.com/in/lukeleigh/
GitHub: https://github.com/BanterBoy/
GitHubGist: https://gist.github.com/BanterBoy
.INPUTS
ComputerName - You can pipe objects to this perameters.
.LINK
https://scripts.lukeleigh.com
Get-Date
Start-Process
Write-Output
#>
[CmdletBinding(DefaultParameterSetName = 'Default',
PositionalBinding = $true,
SupportsShouldProcess = $true)]
[OutputType([string], ParameterSetName = 'Default')]
Param
(
[Parameter(ParameterSetName = 'Default',
Mandatory = $false,
ValueFromPipeline = $true,
ValueFromPipelineByPropertyName = $true,
HelpMessage = 'Enter a computer name or pipe input'
)]
[Alias('cn')]
[string[]]$ComputerName
)
Begin {
}
Process {
ForEach ($Computer In $ComputerName) {
If ($PSCmdlet.ShouldProcess("$($Computer)", "Establish a ConfigMgr Remote Control Viewer connection")) {
try {
Start-Process "C:\Program Files (x86)\Microsoft Endpoint Manager\AdminConsole\bin\i386\CmRcViewer.exe" -ArgumentList "$Computer"
}
catch {
Write-Output "$($Computer): is not reachable."
}
}
}
}
End {
}
}
Download
Please feel free to copy parts of the script or if you would like to download the entire script, simply click the download button. You can download the complete repository in a zip file by clicking the Download link in the menu bar on the left hand side of the page.
Report Issues
You can report an issue or contribute to this site on GitHub. Simply click the button below and add any relevant notes. I will attempt to respond to all issues as soon as possible.