Create – green icon. Safe option. If this mapping or connection does not exist it will create it, otherwise it will do nothing. Replace – red icon. It will create new objects but also destroy existing ones. Update – yellow icon. Does not remove or destroy any objects. Creates the object if it does not […]
Latest Posts
Deploy/Enrol iPad With Workspace One
Is device already managed? Navigate to Devices -> List View, then search by device name or serial number. Select the device -> MORE ACTIONS -> Delete Device to remove it. Add the device to a user account. Navigate to Accounts -> List View, then search and select the account to attach the device to. You […]
Startup Apps Setting Not Saving
If the Startup Apps settings in Windows 10 system settings is not saving try using the start-up tab in Task manager instead. Confirmed issue with some apps in Windows 10
Vagrant NFS to Improve Homestead on Windows
Install NFS plugin vagrant plugin install vagrant-winnfsd Update Homestead.yaml folders: – map: ~\projects to: /home/vagrant/Code type: nfs Reload vagrant Vagrant reload May also need vagrant plugin install vagrant-vbguest
Export MYSQL Database into SQL File Using Command Line
To export a database to a sql file use the code below mysqldump -u[username] -p[password] [database_name] > [file.sql]
Enabling cross-origin resource sharing
Here is a good resource for enabling cross-origin resource sharing when experiencing errors through javascript. Enable CORS