To change the mode to NOARCHIVELOG you should do this..
startup mount;
alter database noarchivelog;
alter database open;

Setting log_archive_start = false will only disable automatic archiveing but your db remains in archivelog mode.


HTH

Sanjay