Skip to main content

Uninstalling Microsoft Remote Desktop from OSX

To completely remove Microsoft Remote Desktop from OSX you need to perform the following

 

Bin the MRD app

Drag the Microsoft Remote Desktop app to the bin.

 

In Finder, select Go > 'Go to Folder', and enter the following path:

/private/var/db/

Locate the RemoteManagement folder and bin it.

Back to Finder, again select Go > 'Go to Folder', and enter the following:

Drupal how to use user PATCH API

To PATCH a user is to update an existing user... actually the current user logged in.

Drush - rebuild node access permissions

How do you rebuild node access permissions using CLI?

To rebuild permissions from the command-line using Drush:

drush php-eval 'node_access_rebuild();'

Or using Drupal Console:

drupal node:access:rebuild

 

Importing and Exporting a MySQL database with Drush

These steps are for Drupal 8 and 9.

 

Export your database

Order here is important.  First you want to clear all the Drupal caches.  Then export / dump the db the sql database to a file in your home directory.

drush cr
drush sql-dump > path/to/your/file/ourpout/sql-dump-file-name.sql

or

Install / uninstall modules and themes using composer


Using Composer to Manage Projects and if required their dependencies

In this section, we're going to dive into how to use Composer to manage project dependencies. Specifically, we'll cover the following:

Subscribe to 10.x