Settings and activity
38 results found
-
128 votes
itsupport itsupport
supported this idea
·
-
152 votes
itsupport itsupport
supported this idea
·
-
175 votes
itsupport itsupport
supported this idea
·
-
177 votes
itsupport itsupport
supported this idea
·
-
203 votes
itsupport itsupport
supported this idea
·
-
210 votes
itsupport itsupport
supported this idea
·
-
239 votes
itsupport itsupport
supported this idea
·
-
326 votes
itsupport itsupport
supported this idea
·
-
566 votes
Veeam integration is planned.
Thank you for helping us improve Atera!
itsupport itsupport
supported this idea
·
-
93 votes
An error occurred while saving the comment An error occurred while saving the comment
itsupport itsupport
commented
"Number of monitors: $((Get-CimInstance -Namespace root\wmi -ClassName WmiMonitorBasicDisplayParams |
Where-Object { $_.Active -eq $true }).Count)"
itsupport itsupport
supported this idea
·
-
140 votes
itsupport itsupport
supported this idea
·
-
143 votes
itsupport itsupport
supported this idea
·
-
444 votes
Hi,
We wanted to let you know that your idea is currently under review by our product team. We are evaluating its alignment with our product roadmap and its potential benefits to our users.
We appreciate your patience during this process and will update you and the public status of this suggestion once a decision has been made.
Best regards,
The Atera Team
itsupport itsupport
supported this idea
·
-
1,501 votes
itsupport itsupport
supported this idea
·
-
1,649 votes
itsupport itsupport
supported this idea
·
-
4 votes
itsupport itsupport
supported this idea
·
-
77 votes
Hi,
Great news! Your idea has been approved and is planned for implementation.
We appreciate your contribution and will keep you informed about the progress and expected release date, as well as here in the portal.
Best regards,
The Atera Team
itsupport itsupport
supported this idea
·
-
54 votes
itsupport itsupport
supported this idea
·
-
61 votes
itsupport itsupport
supported this idea
·
-
56 votes
itsupport itsupport
supported this idea
·
function Convert-MonitorString {
param (
[UInt16[]]$Value
)
if ($null -eq $Value) {
return ""
}
return (($Value |
Where-Object { $_ -ne 0 } |
ForEach-Object { [char]$_ }) -join "").Trim()
}
$BasicInfo = Get-CimInstance -Namespace root\wmi `
-ClassName WmiMonitorBasicDisplayParams |
Where-Object { $_.Active -eq $true }
$MonitorIDs = Get-CimInstance -Namespace root\wmi `
-ClassName WmiMonitorID
Write-Output "Number of monitors: $(@($BasicInfo).Count)"
Write-Output ""
$Number = 1
foreach ($Monitor in $BasicInfo) {
$ID = $MonitorIDs |
Where-Object { $_.InstanceName -eq $Monitor.InstanceName } |
Select-Object -First 1
$Manufacturer = Convert-MonitorString $ID.ManufacturerName
$Model = Convert-MonitorString $ID.UserFriendlyName
$SerialNumber = Convert-MonitorString $ID.SerialNumberID
$Width = $Monitor.MaxHorizontalImageSize
$Height = $Monitor.MaxVerticalImageSize
if (($Width -gt 0) -and ($Height -gt 0)) {
$Diagonal = [math]::Round(
[math]::Sqrt(($Width * $Width) + ($Height * $Height)) / 2.54,
1
)
$PhysicalSize = "$Width x $Height cm"
$DiagonalText = "$Diagonal inches"
}
else {
$PhysicalSize = "Unknown"
$DiagonalText = "Unknown"
}
if ($Monitor.VideoInputType -eq 1) {
$InputType = "Digital"
}
else {
$InputType = "Analog"
}
Write-Output "Monitor number: $Number"
Write-Output "Manufacturer: $Manufacturer"
Write-Output "Model: $Model"
Write-Output "Serial number: $SerialNumber"
Write-Output "Physical size: $PhysicalSize"
Write-Output "Diagonal: $DiagonalText"
Write-Output "Input type: $InputType"
Write-Output "Active: $($Monitor.Active)"
Write-Output "Instance name: $($Monitor.InstanceName)"
Write-Output "----------------------------------------"
$Number++
}