test.ps1
- $os = Get-WmiObject win32_operatingsystem
- $uptime = (Get-Date) - ($os.ConvertToDateTime($os.lastbootuptime))
- $Display = "Uptime: " + $Uptime.Days + " days, " + $Uptime.Hours + " hours, " + $Uptime.Minutes + " minutes"
- Write-Output $Display
复制代码
执行效果:
C:\>powershell -f test.ps1
Uptime: 0 days, 4 hours, 16 minutes
|
Get-Uptime.ps1
- #############################################################################
- # Get-Uptime.ps1
- # This script will report uptime of given computer since last reboot.
- #
- # Pre-Requisites: Requires PowerShell 2.0 and WMI access to target computers (admin access).
- #
- # Usage syntax:
- # For local computer where script is being run: .\Get-Uptime.ps1.
- # For list of remote computers: .\Get-Uptime.ps1 -ComputerList "c:\temp\computerlist.txt"
- #
- # Usage Examples:
- #
- # .\Get-Uptime.ps1 -Computer ComputerName
- # .\Get-Uptime.ps1 -ComputerList "c:\temp\computerlist.txt" | Export-Csv uptime-report.csv -NoTypeInformation
- #
- # Last Modified: 3/20/2012
- #
- # Created by
- # Bhargav Shukla
- # http://blogs.technet.com/bshukla
- # http://www.bhargavs.com
- #
- # DISCLAIMER
- # ==========
- # THIS CODE IS MADE AVAILABLE AS IS, WITHOUT WARRANTY OF ANY KIND. THE ENTIRE
- # RISK OF THE USE OR THE RESULTS FROM THE USE OF THIS CODE REMAINS WITH THE USER.
- #############################################################################
- #Requires -Version 2.0
-
- param
- (
- [Parameter(Position=0,ValuefromPipeline=$true)][string][alias("cn")]$computer,
- [Parameter(Position=1,ValuefromPipeline=$false)][string]$computerlist
- )
-
- If (-not ($computer -or $computerlist))
- {
- $computers = $Env:COMPUTERNAME
- }
-
- If ($computer)
- {
- $computers = $computer
- }
-
- If ($computerlist)
- {
- $computers = Get-Content $computerlist
- }
-
- foreach ($computer in $computers)
- {
- $Computerobj = "" | select ComputerName, Uptime, LastReboot
- $wmi = Get-WmiObject -ComputerName $computer -Query "SELECT LastBootUpTime FROM Win32_OperatingSystem"
- $now = Get-Date
- $boottime = $wmi.ConvertToDateTime($wmi.LastBootUpTime)
- $uptime = $now - $boottime
- $d =$uptime.days
- $h =$uptime.hours
- $m =$uptime.Minutes
- $s = $uptime.Seconds
- $Computerobj.ComputerName = $computer
- $Computerobj.Uptime = "$d Days $h Hours $m Min $s Sec"
- $Computerobj.LastReboot = $boottime
- $Computerobj
- }
复制代码
执行效果:
C:\>powershell -f Get-Uptime.ps1
ComputerName Uptime LastReboot
------------ ------ ----------
HAT 0 Days 4 Hours 23 Min 43 Sec 2015/4/24 8:22:51
|
转自 http://blogs.technet.com/b/bshukla/archive/2010/12/09/powershell-script-to-report-uptime.aspx |