国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > PowerShell > 正文

PowerShell時間記錄腳本

2020-10-29 20:56:34
字體:
供稿:網(wǎng)友

#initialization   $timeInterval = 30 #監(jiān)測間隔   $record = @{"Coding" = 0; "Outlook Email" = 0; "Gmail" = 0; "Google Reader" = 0; "BBS" = 0; "Other Internet" = 0; "Documents" = 0;}  $count = 0  $date = date -format "yyyyMMdd"  #try to resume  if (test-path "d:/temp/timeRecord$date.txt") {    gc "d:/temp/timeRecord$date.txt" | % {if ($_ -match "/w+/s+/d+") {      $groups = [Regex]::Match($_, "^(/w+/s?/w+)/s+(/d+)").Groups;      $record[$groups[1].Value] = [int]::Parse($groups[2].Value);    }}  }  #start to monitor  while ($true)  {    $titles = ps | ? {$_.MainWindowTitle} | select MainWindowTitle    $titles | % {      if ($_ -match "Google 閱讀器 - Windows Internet Explorer") {$record["Google Reader"]++;}      else {if ($_ -match "Gmail - Windows Internet Explorer") {$record["Gmail"]++;}      else {if ($_ -match "Internet Explorer") {$record["Other Internet"]++;}      else {if ($_ -match "Visual Studio") {$record["Coding"]++;}      else {if ($_ -match "Microsoft Word") {$record["Documents"]++;}      else {if ($_ -match "Microsoft Office OneNote") {$record["Documents"]++;}      else {if ($_ -match "Microsoft PowerPoint") {$record["Documents"]++;}      else {if ($_ -match "Message (HTML)") {$record["Outlook Email"]++;}      else {if ($_ -match "bbs") {$record["BBS"]++;}      }}}}}}}}    }    sleep($timeInterval)    $count = ($count + 1) % 10 #為了防止數(shù)據(jù)丟失,每10次記錄寫入文件一次    if ($count -eq 0) {$record > "d:/temp/timeRecord$date.txt"}  }

為了解技術(shù)思路,研究了一下powershell.
整個開發(fā)與部署過程如下:

1.下載WindowsXP-KB926139-v2-x86-ENU

安裝powershell環(huán)境;

2.按照代碼要求,寫一個簡單的腳本;

3. 運行powershell時,同 bat是有區(qū)別的.注意以下方法:

1) 解除限制:

set-executionpolicy Unrestricted

2) 將文件名保存為ps1
3) 通過以下方法運行(假如文件名是c:a.ps1)
PS C:> .a
[@more@]

示例代碼:

function foo ( [int] $x){$x = $x + 1echo $x}foo (1 )

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 长海县| 上栗县| 肥东县| 龙胜| 霞浦县| 沁水县| 延津县| 安国市| 福贡县| 扬中市| 明水县| 延边| 扶沟县| 双桥区| 宜都市| 江北区| 扶余县| 沂水县| 沂水县| 定陶县| 伊金霍洛旗| 龙游县| 兰西县| 宁陵县| 陇南市| 舟山市| 满城县| 神农架林区| 霍邱县| 海淀区| 嵩明县| 五家渠市| 益阳市| 鄯善县| 昌乐县| 廊坊市| 崇左市| 巴楚县| 广河县| 大化| 大庆市|