Guest User

Untitled

a guest
Jan 20th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. # SetBiosConfiguration.ps1 Usage and Description
  2.  
  3. ## Description
  4.  
  5. This script will take parameters from .CSV file and configure various BIOS options on HP DL360 / DL380 Server (Gen9)
  6.  
  7. ## Prerequisites
  8.  
  9. - Windows Workstation with Powershell 5.1 installed
  10. - HP Powershell cmdlets for BIOS & iLO installed
  11. - You must configure iLO IP and all servers must have the same iLO Admin credentials
  12. - Servers must be turned off before running the script
  13. - Script must run with admin privileges
  14.  
  15. ## UEFI Boot Order Modifications:
  16.  
  17. The default boot order is to boot from RAID device and then 10GB Ethernet #1 Interface. This setup assumes RAID located in position #2 and 10GB Ethernet in location #3 in the current UEFI Boot Order.
  18. If you need to modify it, please run *Get-Help Set-HPBIOSUEFIBootOrder - Detailed* for cmdlet explanation and follow the steps there
  19.  
  20. ## Parameters
  21.  
  22. ### Servers_CSV
  23.  
  24. Location of CSV file containing the servers information. Should contain the following values (example):
  25.  
  26. | Hostname | iLOIP | NUMAGroupSizeOptimization | NodeInterleaving | IntelHyperthreading |
  27. | -------- | --------- | ------------------------- | ---------------- | ------------------- |
  28. | ESXi-01 | 100.0.0.1 | Clustered | Disabled | Disabled |
  29.  
  30. ### LogPath
  31.  
  32. Location to place the script log file
  33.  
  34. ### BiosStatusPath
  35.  
  36. Location to place the Bios Status after deployment
  37.  
  38. ## OUTPUTS
  39.  
  40. Log file will be created @ $LogPath
  41. Bios Status will be created @ $BiosStatusPath
Add Comment
Please, Sign In to add comment