Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #For MericanCheese
- $ComputerName = 'MFJ-01234'
- $origpos = $host.UI.RawUI.CursorPosition
- $origpos.x += 20
- write-host "Check connection to " -NoNewline
- $host.UI.RawUI.CursorPosition = $origpos
- Write-Host $ComputerName -NoNewline
- Sleep 1
- if($Online){
- $host.UI.RawUI.CursorPosition = $origpos
- Write-Host $ComputerName -ForegroundColor Green
- }else{
- $host.UI.RawUI.CursorPosition = $origpos
- Write-Host $ComputerName -ForegroundColor Red
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement