It seems that MS PowerShell interprets the input incorrectly - perhaps it utilizes a different character set... Note:it does work via PowerShell IF you put in a value (ex: 123456), it just doesn't like the NULL option.
Might be worth further investigation or at least a tech note.
jcarder
6 Posts
1
February 12th, 2015 05:00
Update:
Attempted Daniel's suggestion by re-arranging the parameters, but unfortunately I did not get the same successful results.
PS> racadm config -g cfguseradmin -i 3 -o cfguseradminusername ""
ERROR: Invalid syntax. An object value must be specified.
However, it did occur to me that I was issuing the command under PowerShell via Windows Server 2012 OS and that might be the problem.
I re-attempted the original syntax using an SSH connection instead and that seemed to do the trick.
/admin1-> racadm config -g cfgUserAdmin -o cfgUserAdminUserName -i 3 ""
Object value modified successfully
It seems that MS PowerShell interprets the input incorrectly - perhaps it utilizes a different character set... Note: it does work via PowerShell IF you put in a value (ex: 123456), it just doesn't like the NULL option.
Might be worth further investigation or at least a tech note.
Daniel My
10 Elder
•
6.2K Posts
0
February 11th, 2015 16:00
Hello
I changed the order to place the index value before the object value and it is working properly for me:
http://downloads.dell.com/Manuals/all-products/esuprt_software/esuprt_remote_ent_sys_mgmt/esuprt_rmte_ent_sys_rmte_access_cntrllr/integrated-dell-remote-access-cntrllr-7-v1.50.50_User%27s%20Guide2_en-us.pdf
Thanks
mbrinkho
1 Rookie
•
4 Posts
3
May 14th, 2015 08:00
I know I'm a little late to the party here but if you double quote the last parameter powershell will be happy.
PS> racadm config -g cfguseradmin -i 3 -o cfguseradminusername """"
edneylima
1 Message
1
July 17th, 2015 08:00
bradje1
2 Intern
•
743 Posts
0
March 29th, 2017 18:00
Thx Daniel.
Worked for me on m620.
John Bradshaw