1er commit

De la docs au format Mkdocs
This commit is contained in:
2018-09-16 14:48:15 +02:00
commit e82296ba06
140 changed files with 17082 additions and 0 deletions

32
docs/macos/securite.md Normal file
View File

@@ -0,0 +1,32 @@
# Sécurité (Gatekeeper...)
#### Pour ajouter une application aux exceptions Gatekeepers et à la liste de lancement des applications approuvées:
```bash
$ spctl --add /Path/To/Application.app
```
#### Suppression d'une demande de la liste d'approbation du Gatekeeper:
```bash
$ spctl --remove /Path/To/Application.app
```
#### Pour désactiver complètement Gatekeeper:
```bash
$ sudo spctl --master-disable
```
#### Pour désactiver Gatekeeper pour certaines applications:
```bash
$ sudo xattr -rd com.apple.quarantine /Applications/LockedApp.app
```