module KPM::SystemProxy::MemoryInformation

def fetch_windows

def fetch_windows
  mem_data = `systeminfo | findstr /C:"Total Physical Memory" /C:"Available Physical Memory"`
  mem = get_hash(mem_data)
  mem
end