Method: Chef::Util::Windows::NetGroup#local_delete

Defined in:
lib/chef/util/windows/net_group.rb

#local_deleteObject



95
96
97
98
99
100
# File 'lib/chef/util/windows/net_group.rb', line 95

def local_delete
  rc = NetLocalGroupDel.call(nil, @name)
  if rc != NERR_Success
    raise ArgumentError, get_last_error(rc)
  end
end