diff --git a/wakeup.ps1 b/wakeup.ps1 index 548be40..0a14542 100644 --- a/wakeup.ps1 +++ b/wakeup.ps1 @@ -6,7 +6,14 @@ param # Computer to wake up [Alias("Computer")] [String] - $targetComputer = "" + $targetComputer = "", +# Skip RDP connectivity readiness check + [Alias("Check", "Readiness")] + [Switch] + $ConnectivityCheck = $false, +# RDP connectivity readiness check timeout + [Int] + $Timeout = 300 ) function exitError($errMessage, $PSItem, $exitCode = 1)