Skip to content

Instantly share code, notes, and snippets.

@jdhitsolutions
Created December 8, 2015 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jdhitsolutions/3ac1c2030e5b1861e1a0 to your computer and use it in GitHub Desktop.
Save jdhitsolutions/3ac1c2030e5b1861e1a0 to your computer and use it in GitHub Desktop.
#requires -version 3.0
<#
This command will attempt to execute a very simple scriptblock remotely using Invoke-Command. If the command fails
then PowerShell remoting is not properly enabled or configured.
#>
Function Test-PSRemoting {
[cmdletbinding()]
Param(
[Parameter(Position=0,Mandatory,HelpMessage = "Enter a computername",ValueFromPipeline)]
[ValidateNotNullorEmpty()]
[Alias('Cn')]
[string]$Computername,
[System.Management.Automation.Credential()]$Credential = [System.Management.Automation.PSCredential]::Empty,
[ValidateRange(1, 65535)]
[int]$Port,
[switch]$UseSSL,
[string]$ConfigurationName,
[string]$ApplicationName,
[System.Management.Automation.Remoting.PSSessionOption]$SessionOption,
[System.Management.Automation.Runspaces.AuthenticationMechanism]$Authentication,
[string]$CertificateThumbprint
)
Begin {
Write-Verbose "Starting $($MyInvocation.Mycommand)"
#add a very,very simple scriptblock to PSBoundParameters
$sb = { 1 }
$PSBoundParameters.Add("Scriptblock",$sb)
Write-Verbose "PSBoundparameter:"
Write-Verbose ($PSBoundParameters | out-string).Trim()
} #begin
Process {
Write-Verbose "Testing $computername"
Try {
#splat PSBoundParameters to Invoke-Command
$r = Invoke-Command @PSBoundParameters -ErrorAction Stop
#if no error remoting should be working
$True
}
Catch {
Write-Verbose $_.Exception.Message
$False
}
} #Process
End {
Write-Verbose "Ending $($MyInvocation.Mycommand)"
} #end
} #close function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment