Compare commits
5 Commits
master
...
simon404-b
Author | SHA1 | Date | |
---|---|---|---|
3324dcaa88 | |||
e9f6012a6b | |||
a217dfce05 | |||
c8fc9625a8 | |||
7736ef3e18 |
10
LINUX-windows_managers/Window_Maker/notes.md
Normal file
10
LINUX-windows_managers/Window_Maker/notes.md
Normal file
@ -0,0 +1,10 @@
|
||||
# Raccourcis et réglages
|
||||
|
||||
- CTRL + E : option de la fenêtre active
|
||||
- Touche Méta (Alt) + clic pour déplacer fenêtres trop larges
|
||||
- F12 : Menu racine
|
||||
- Commandes : arranger les icônes / cacher etc.
|
||||
- Méta + H : masquer fenêtre ouverte
|
||||
|
||||
<http://www.windowmaker.org/docs/chap2.html>
|
||||
<http://www.windowmaker.org/docs/chap3.html>
|
5
LiNUX-bash_snippets/manage_homefolders/notes.md
Normal file
5
LiNUX-bash_snippets/manage_homefolders/notes.md
Normal file
@ -0,0 +1,5 @@
|
||||
# Récupérer les répertoires Home des utilisateurs de Linux :
|
||||
|
||||
`cat /etc/passwd | awk -F: '{printf "User %s Home %s\n", $1, $6}'`
|
||||
|
||||
Source : <https://stackoverflow.com/a/491924>
|
39
WINDOWS-PowerShell_references/kb_commands.md
Normal file
39
WINDOWS-PowerShell_references/kb_commands.md
Normal file
@ -0,0 +1,39 @@
|
||||
# Utilisation des commandes dans PowerShell
|
||||
|
||||
Articles documentation Microsoft, aide communaitaire (ex. SpiceWork) et experts.
|
||||
|
||||
Avec cas d'utilisations.
|
||||
|
||||
## Configuration Windows Server
|
||||
|
||||
- réglages interface réseau
|
||||
- le DHCP
|
||||
|
||||
|
||||
## l'AD
|
||||
|
||||
<https://docs.microsoft.com/en-us/powershell/module/activedirectory/new-aduser?view=windowsserver2019-ps>
|
||||
|
||||
<https://docs.microsoft.com/en-us/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2019-ps>
|
||||
|
||||
## Partage de fichiers SMB
|
||||
|
||||
<https://docs.microsoft.com/en-us/powershell/module/smbshare/set-smbshare?view=windowsserver2019-ps>
|
||||
|
||||
## Contrôle à distance
|
||||
|
||||
Contrôle d'un ordinateur via WinRM ou SSH.
|
||||
|
||||
### SSH
|
||||
|
||||
<https://docs.microsoft.com/en-us/powershell/scripting/learn/remoting/ssh-remoting-in-powershell-core?view=powershell-7.1>
|
||||
|
||||
## Ecriture de scripts
|
||||
|
||||
<https://docs.microsoft.com/en-us/powershell/scripting/learn/ps101/09-functions?view=powershell-7.1>
|
||||
|
||||
## Sortie script
|
||||
|
||||
<https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/tee-object?view=powershell-7.1>
|
||||
|
||||
##
|
Loading…
Reference in New Issue
Block a user