Within a WebSphere Application Server Network Deployment cell, a system administrator needs
to write a script to determine if a particular server is stopped. It is important that the wsadmin script
explicitly return a status of stopped as opposed to just failing.
What wsadmin object should the administrator use to write this script?

A.
AdminApp
B.
AdminTask
C.
AdminConfig
D.
AdminControl
D, see : http://www-01.ibm.com/support/knowledgecenter/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/rxml_admincontrol.html?lang=en
0
0
D
server = AdminControl.completeObjectName(‘cell=ABN-EYE-WAS-D01Cell01,node=ABN-EYE-WAS-D01Node01,name=NetworXServer1,type=Server,*’)
print server
0
0
D
https://www.ibm.com/support/knowledgecenter/en/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/txml_queryserver.html
0
0