TechNet Recipient Address Report (Formally ProxyAddressCount):
'via Blog this'
Thursday, December 31, 2015
Tuesday, December 29, 2015
Thursday, December 17, 2015
Monday, November 16, 2015
Script to check connectivity to a list of computers
$on = @()
$off = @()
Import-Csv $args[0] | ForEach {
If (Test-Connection $_.ComputerName -Count 1 -Quiet) {
$on += $($_.ComputerName)
} else {
$off += $($_.ComputerName)
}
}
write-host "The Following Computers are Turned On"
$on | Out-String
write-host "The Following Computers are Turned Off"
$off | Out-String
$off = @()
Import-Csv $args[0] | ForEach {
If (Test-Connection $_.ComputerName -Count 1 -Quiet) {
$on += $($_.ComputerName)
} else {
$off += $($_.ComputerName)
}
}
write-host "The Following Computers are Turned On"
$on | Out-String
write-host "The Following Computers are Turned Off"
$off | Out-String
CSV Example
ComputerName
pc1.domain.com
pc2.domain.com
Thursday, November 12, 2015
Tuesday, July 7, 2015
Import SHA-256 Intermediate SSL to Netscaler 10.5
Follow the procedure to import using command line if you receive the "Invalid Certificate" message.
Adding or Updating a Certificate-Key Pair - Citrix eDocs:
'via Blog this'
Adding or Updating a Certificate-Key Pair - Citrix eDocs:
'via Blog this'
Thursday, April 16, 2015
Wednesday, March 11, 2015
Monday, January 12, 2015
Subscribe to:
Posts (Atom)