Мне нужна помощь по сценарию PowerShell, который экспортирует в файл CSV следующее: имя хоста компьютера, имя операционной системы (windows 10 enterprise, windows 10 pro, et c).
Пока мне удалось выполнить все вышеперечисленное, используя:
Get-ADComputer -Filter * -Properties * |
Select -Property Name,DNSHostName,Operatingsystem,BitLockerRecoveryInfo,Enabled,LastLogonDate |
Export-CSV "C:\\AllComputers.csv" -NoTypeInformation -Encoding UTF8
Но при попытке добавить аргумент "Get-BitLockerRecovery", powershell возвращает:
Get-ADComputer -Filter { name -like "*" } `
Select -Property Name,DNSHostName,Operatingsystem,BitLockerRecoveryInfo,Enabled,LastLogonDate |
Get-BitLockerRecovery |
Export-CSV "C:\\Bit.csv" -NoTypeInformation -Encoding UTF8
Get-BitLockerRecovery: The term 'Get-BitLockerRecovery' 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:4 char:1
+ Get-BitLockerRecovery |
+ ~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Get-BitLockerRecovery:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Может кто-нибудь, пожалуйста, объясните мне, почему? Или помочь мне с добавлением необходимых команд в мой скрипт?