Yes, you have to provide the 2nd parameter, if you don't want to rename the device, give a $null value.
You can list all the available devices, and then get the Device property from that output.
Something like this
$esxcli.storage.core.device.list() |%{ $esxcli.storage.core.device.set($_.Device,$null,$false,'on') }