Skip to content

Instantly share code, notes, and snippets.

@rosjat
Created February 27, 2023 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosjat/dbd649b017aa5569692683b36f11d41b to your computer and use it in GitHub Desktop.
Save rosjat/dbd649b017aa5569692683b36f11d41b to your computer and use it in GitHub Desktop.
simple way to open all tohse silly iLO Pages in a browser
# simply add as many urls as you need and your standard browser should take care of the rest
# maybe i go through the trouble to figure out how to pass user and password one day but i guess not
# since HE is just to paranoid to let anyone do anything without there proprietary c**p
$ilos = @("https://your.ilo.fqdn", "https://or.your.ilo.ip")
$ilos | foreach-object -Process {Start-Process $_}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment