Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

powershell - The term 'appcmd' is not recognized as the name of a cmdlet

I'm getting the following error message:

The term 'appcmd' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:7

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Appcmd.exe exists at the location %systemroot%system32inetsrv. You either need to update your PATH variable to add the path %systemroot%system32inetsrv like

SET PATH=%PATH%;%systemroot%system32inetsrv

or you can use Set-Location to first go to the location of Appcmd.exe like

Set-Location %systemroot%system32inetsrv

and then run you command.

OR you can use the following:

c:windowssystem32inetsrvappcmd.exe


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...