1. Install Raspberry Pi OS onto the Raspberry Pi via an SD card
  2. Add a blank file named ssh (without an extension) to the boot partition of the Raspberry Pi
  3. Add a file called "wpa_supplicant.conf" to the boot partition, with the following contents:
    country=US
    ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
    update_config=1
    
    network={
        ssid="YOUR_WIFI_NAME"
        psk="YOUR_WIFI_PASSWORD"
    }
  4. Connect to the Raspberry Pi via SSH, for example: ssh pi@raspberrypi.local. The default username is pi, and the default password is raspberry.
  5. Update the repositories via sudo apt-get update
  6. Install RDP on the Raspberry Pi via sudo apt-get install xrdp
  7. Create a new user that you'll use to connect, via sudo adduser NEW_USER_NAME
  8. From your computer, connect to the Raspberry Pi via Remote Desktop Protocol (raspberrypi should work as the computer name to connect to). Use the username and password that you created in the previous step, since the pi user by default can't use Remote Desktop Protocol.