J'ai installé Chocolatey conformément aux instructions du site Web ( https://chocolatey.org/install ).
La commande 'choco' fonctionne correctement lorsque je l'exécute normalement sur cmd mais renvoie l'erreur suivante lorsqu'elle est exécutée en tant qu'administrateur:
C:\WINDOWS\system32>choco install -y wget 7Zip.commandline
'choco' is not recognized as an internal or external command,
operable program or batch file.
L'installation choco install -y wget 7Zip.commandline
échoue si elle n'est pas exécutée en tant qu'administrateur.
Comment puis-je corriger l'erreur 'non reconnue' dans admin cmd?
@ "% SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat Aucun - ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient) .DownloadString (' https://chocolatey.org/install.ps1 ')) "&& SET" CHEMIN =% CHEMIN%;% ALLUSERSPROFILE%\chocolatey\bin ".
Appuyez ensuite sur la touche Entrée du clavier. Après quelques secondes, vous obtenez des informations complètes sur l'installation en cours.
Si vous ne voyez aucune erreur. Tapez choco ou choco -? à présent.
Commencez par ouvrir l'invite de commande en tant qu'administrateur, puis exécutez -
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
Et puis redémarrez l'invite de commande, maintenant choco est installé avec succès
J'ai pu faire fonctionner l'installation avec C:\ProgramData\chocolatey\bin\choco.exe install -y wget 7Zip.commandline
. Je me demande toujours pourquoi la commande choco
ne fonctionne pas lorsque cmd est exécuté en tant qu'administrateur. J'apprécierais toute aide. À votre santé!