mrclean Posted February 4, 2019 Report Share Posted February 4, 2019 Bonsoir, Je voudrai faire un script batch pour installer des applications de chocolatey. Comme j'ai un parc qui ne nécessite pas toujours les mêmes applications, je voudrais créer un batch qui s'applique à toute mes machines (un seul batch) qui me demande si je veux executer la commande d'installation de l'application genre un mode pas à pas pour le batch que me demande oui ou non pour lancer la ligne. Si je dis non il passe à la suivante, si je dis oui alors il lance la commande. je veux pas faire de profil y en a trop .. quelqu'un pourrait-il m'aider pour faire ce batch merci Link to comment Share on other sites More sharing options...
mrclean Posted February 8, 2019 Author Report Share Posted February 8, 2019 snif ... !! bcp de view mais trop de réponse Link to comment Share on other sites More sharing options...
alfred711 Posted October 25, 2019 Report Share Posted October 25, 2019 salut l'ami voici le mien : :: Chocolatey install script Alfred711 @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" :: Install all the packages :: -y confirm yes for any prompt during the install process ? rem choco install googlechrome -fy choco install firefox -fy choco install notepadplusplus -fy choco install 7zip -fy choco install launchy -fy choco install lightshot -fy choco install vlc -fy choco install libreoffice-fresh -fy choco install choco-upgrade-all-at :: choco install ? mrclean 1 Link to comment Share on other sites More sharing options...
Recommended Posts