How to able wireless network disabled by hardware

Open terminal and look if wireless is disabled by hardware
rfkill list

.. if yes, make a /etc/rc.local file
sudo nano /etc/rc.local

.. the contents
#!/bin/sh -e
#
rfkill unblock all
exit 0

… save, quit and re-start the computer.
Ctrl o
Ctrl x