我正在寻找一种从命令提示符运行几个 PowerShell 命令的方法。我不想为此创建脚本,因为它只是我需要运行的几个命令,而且我真的不知道如何使用 PowerShell 编写脚本。
这是我试图用来开始的命令:
Get-AppLockerFileInformation -Directory <folderpath> -Recurse -FileType <type>
我真的不想为此创建一个脚本,因为如果我可以从批处理文件中运行一个或两个命令以及其余的东西,那会容易得多。
编辑:这是我到目前为止所尝试的。
1)
powershell -Command "Get-AppLockerFileInformation....."
Error: The term 'Get-AppLockerFileInformation is not recognized as the name of a cmdlet, function, script file, or operable program....
2)
powershell -Command {Get-AppLockerFileInformation.....}
这种方式没有错误,但我没有得到任何回报。如果我使用Set-AppLockerPolicy...
什么都不会发生。
3)
powershell -Command "{Get-AppLockerFileInformation.....}"
Error: The term 'Get-AppLockerFileInformation is not recognized as the name of a cmdlet, function, script file, or operable program....
4)
powershell -Command "& {Get-AppLockerFileInformation.....}"
Error: The term 'Get-AppLockerFileInformation is not recognized as the name of a cmdlet, function, script file, or operable program....
5)
powershell "& {Get-AppLockerFileInformation.....}"
Error: The term 'Get-AppLockerFileInformation is not recognized as the name of a cmdlet, function, script file, or operable program....
6)
powershell -ExecutionPolicy Bypass -NoLogo -NoProfile -Command {Get-AppLockerFileInformation....}
没有错误,但没有任何反应。
7)
powershell -ExecutionPolicy Bypass -NoLogo -NoProfile -Command "Get-AppLockerFileInformation...."
没有错误,但没有任何反应。