Unsolved
This post is more than 5 years old
2 Intern
•
184 Posts
0
3791
February 28th, 2014 07:00
System Memory Voltage (SysMemVolt) via WinRM
I already posted this is a Dell forum but this looks like a better place for this type of question. It looks to me like dell.com and techcenter are two separate forums.
This is the Q in the other forum:
http://en.community.dell.com/support-forums/servers/f/177/t/19564017.aspx
+++++++++++++++++++++++++++++++++++++
Does anyone know where or if sysmemvolt is available via winrm? It is not in DCIM_MemoryView and I can find it anywhere else. Any help would be appreciated.
Syscfg.exe and omreport.exe get it fine:
C:\>syscfg --sysmemvolt
sysmemvolt=1.35v
C:\>omreport chassis biossetup
System Memory Voltage : 1.35V
No Events found!


nadogmoney
2 Intern
•
184 Posts
0
March 3rd, 2014 11:00
I settled on using syscfg.exe in the full OS.
Does anyone know where to get WSMAN support from Dell? I imagine calling support would not be productive.
steven_zessin_D
50 Posts
0
March 4th, 2014 15:00
Hello,
You can find a list of attributes at the followling link.
http://www.delltechcenter.com/lc
I found your attribute in the "BIOS attribute registry" at the /LC link above.
Turns out it is in the BIOSString class:
AttributeDisplayName = System Memory Voltage
AttributeName = SysMemVolt
CurrentValue = 1.20 V
Dependency
DisplayOrder = 307
FQDD = BIOS.Setup.1-1
GroupDisplayName = Memory Settings
GroupID = MemSettings
InstanceID = BIOS.Setup.1-1:SysMemVolt
IsReadOnly = true
MaxLength = 16
MinLength = 0
PendingValue
ValueExpressio
Regarding WSMAN support, this forum is the best place. I co-authored the Recite python tool that contains most of the iDRAC methods and classes, such as from above. It can be referenced from the /LC link above in the Best Practices Scripts section.It is convenient in that to obtain the above class (with creds of course), you could just type GetBIOStrings and the results are displayed.
Pls let me know if you have any other questions.
thx,steve
Additional info:
http://www.delltechcenter.com/idrac
nadogmoney
2 Intern
•
184 Posts
0
March 6th, 2014 12:00
DCIM_BIOSString worked great! Thanks.
I have never looked at the registries you reference.