dir Archives - Tranches de Veek http://www.yanael.com/wp/tag/dir/ 404 - C'est comme la vie, mais en plus Geek ! Sun, 27 Dec 2015 09:36:24 +0000 fr-FR hourly 1 Modifier Prompt Powershell – Fonction pour ajouter dossier / sous dossier http://www.yanael.com/wp/modifier-prompt-powershell-fonction-pour-ajouter-dossier-sous-dossier-1940/ Thu, 24 Dec 2015 22:32:44 +0000 http://www.yanael.com/?p=1940 ari0k

Un bout de code intéressant, voir indispensable 😉 [codesyntax lang=”powershell”] function prompt { $cwd = (get-location).Path [array]$cwdt=$() $cwdi=-1 do { $cwdi=$cwd.indexofany(”\\”,$cwdi+1) [array]$cwdt+=$cwdi} until($cwdi -eq -1) if ($cwdt.count -gt 3) { $cwd = $cwd.substring(0,$cwdt[0]) + “\..” + $cwd.substring($cwdt[$cwdt.count-3]) } ” $cwd>_ ” } # The above sets prompt to the current drive letter, immediate sub directory […]

Cet article Modifier Prompt Powershell – Fonction pour ajouter dossier / sous dossier est apparu en premier sur Tranches de Veek.

]]>