Advertisement
About80Ninjas

Untitled

Jul 12th, 2016
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #For MericanCheese
  2.  
  3. $ComputerName = 'MFJ-01234'
  4. $origpos = $host.UI.RawUI.CursorPosition
  5. $origpos.x += 20
  6. write-host "Check connection to " -NoNewline
  7. $host.UI.RawUI.CursorPosition = $origpos
  8. Write-Host $ComputerName -NoNewline
  9. Sleep 1
  10. if($Online){
  11.   $host.UI.RawUI.CursorPosition = $origpos
  12.   Write-Host $ComputerName -ForegroundColor Green
  13. }else{
  14.   $host.UI.RawUI.CursorPosition = $origpos
  15.   Write-Host $ComputerName -ForegroundColor Red
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement