You can use CPQLOCFG.exe to do this. Add user with this the sample XML Scripts below.. For CPQLOCFG, you need to know the credentials for an existing Ilo user. You can do this from a remote machine.
You can download the utility from www.hp.com/servers/lights-out. select ILO and softwares and drivers. Download Hp lights-out configuration utility.
The syntax will be as below. You can read the ILO user credentials from a file to generate the command line while sending the script.
cpqlocfg.exe -s [servername|ipaddress]|[port] -l [logfilename] -f [input filename] -v -c -u [username] -p [password]
XML Script sample details:
http://h30499.www3.hp.com/hpeb/attachments/hpeb/itrc-298/2324/1/282281.xml
Source link
DSMOD foundation course 101
DSMOD foundation course 101
This is intended to show the principles for changing many AD objects' properties in one go. There are lots more clever things you could do with this - like a lot of command line stuff, the principles are very simple but can be strung together to very powerful end results with a bit of thought and a step-by-step logical approach.
Basically, DSMOD allows you to change many (not all) of the AD properties of an object, usually a user, computer or group. This tutorial discusses users specifically, but the principles extend to other objects.
It uses the full canononical name for the object ie "CN=Eliza Doolittle, OU=etc." but you don't need to worry about that. The way to use it in practice is by using dsquery to do a "search" (even if this is for only one object) and pipe the returned results to dsmod, where you change one or more properties of that object.
First try something with dsquery:
This should give you several results for everyone whose common name matches Chris* (* as wildcard as usual, note that this also matches zero characters so *Chris* would also return these same results even though there is nothing in front of the "Chris", but would also find "John Christopher" if he existed)
We can now find users who match certain criteria. Then we can pass the results straight into dsmod to modify the properties.
a simple example:
translation:
dsquery
This is intended to show the principles for changing many AD objects' properties in one go. There are lots more clever things you could do with this - like a lot of command line stuff, the principles are very simple but can be strung together to very powerful end results with a bit of thought and a step-by-step logical approach.
Basically, DSMOD allows you to change many (not all) of the AD properties of an object, usually a user, computer or group. This tutorial discusses users specifically, but the principles extend to other objects.
It uses the full canononical name for the object ie "CN=Eliza Doolittle, OU=etc." but you don't need to worry about that. The way to use it in practice is by using dsquery to do a "search" (even if this is for only one object) and pipe the returned results to dsmod, where you change one or more properties of that object.
First try something with dsquery:
Code: |
dsquery user -name Chris* "OU=Building 1, dc=internal,dc=mycompany,dc=co,dc=uk" |
This should give you several results for everyone whose common name matches Chris* (* as wildcard as usual, note that this also matches zero characters so *Chris* would also return these same results even though there is nothing in front of the "Chris", but would also find "John Christopher" if he existed)
We can now find users who match certain criteria. Then we can pass the results straight into dsmod to modify the properties.
a simple example:
Code: |
dsquery user -samid JHC "OU=Building 2, dc=internal,dc=mycompany,dc=co,dc=uk" | dsmod user -tel "555 - 112 233" -u AdminUser -p AdminPassword |
translation:
dsquery
Corrupt XML file messages in HP NIC
Corrupt XML file messages when you click on the VLAN tab of the network configuration utility plus missing VLAN parameter errors in the Windows event log. This might only occur if you have teamed two or more network interface cards. (HP calls each card a Miniport.):
- An error occurred due to invalid data in the XML file used by this application. The XML file has been corrupted and should be reinstalled from the installation media.
http://www.eventid.net/display.asp?eventid=49&eventno=8553&source=CPQTeamMP&phase=1
- An error occurred due to invalid data in the XML file used by this application. The XML file has been corrupted and should be reinstalled from the installation media.
http://www.eventid.net/display.asp?eventid=49&eventno=8553&source=CPQTeamMP&phase=1
Used up all five Apple iTunes authorization Slot
This is a good information on how to reset all the Apple iTunes authorization Slot.
If you've reached your limit of 5 you have the option once a year to deauthorise them all in one go and start over again: About iTunes Music Store Authorisation and Deauthorisation
If you've reached your limit of 5 you have the option once a year to deauthorise them all in one go and start over again: About iTunes Music Store Authorisation and Deauthorisation
Microsoft keyboard shortcuts
Many of there keyboard that we didn't know..
Some new and old key combinations.
Full keyboard shortcut listing: Keyboard shortcuts
- Windows logo key +Up Arrow: Maximize the window.
- Windows logo key +Left Arrow: Maximize the window to the left side of the screen.
- Windows logo key +Right Arrow: Maximize the window to the right side of the screen.
- Windows logo key +Down Arrow: Minimize the window.
- Windows logo key +Home: Minimize all but the active window.
- Windows logo key +Shift+Up Arrow: Stretch the window to the top and bottom of the screen.
- Windows logo key +Shift+Left Arrow or Right Arrow: Move a window from one monitor to another.
Full keyboard shortcut listing: Keyboard shortcuts
Subscribe to:
Posts (Atom)