Откуда там взялось TimeGenerated, если в представлении Out-GridView, поле со временем просто называется: Time
поле Xml - EventData
# Если юзер нужен
$cred = Get-Credential main\you001
Invoke-Command -ComputerName 'server' { Write-Host 'Hello' } -Credential $cred
# Если не нужен
Invoke-Command -ComputerName 'server' { Write-Host 'Hello' }
$servers = Get-Content \\servs\as\delit.txt
Invoke-Command -ComputerName $servers {
get-appxpackage -allusers *xboxonesmartglass* | remove-appxPackage
# Тут все остальные аналогичные команды. Для начала можно оставить только одну
}
# Если надо, после "}" подставляем <i>-Credential $cred</i> как и выше
C:\Windows\system32>powershell -Command "get-appxpackage -allusers *xboxonesmartglass*"
get-appxpackage : The term 'get-appxpackage' 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:1
+ get-appxpackage -allusers *xboxonesmartglass*
+ ~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (get-appxpackage:String) [], Com
mandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
test.cmd exited on server with error code 1.
Если, вдруг, таки случайный - добавьте | Get-Random