This simply means that we’re not providing any arguments to the hashtable creation itself. PipeHow:\Blog> $Hashtable = New-Object hashtable PipeHow:\Blog> $Hashtable['Name'] = 'Emanuel' PipeHow:\Blog> $Hashtable['name'] # value is null PipeHow:\Blog> $Hashtable['Name'] Emanuel ...