真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何用powershell腳本查看用戶的操作記錄-創(chuàng)新互聯(lián)

本文以azure為例,為大家分析用powershell腳本查看用戶的操作記錄的方法。閱讀完整文相信大家對powershell腳本的使用方法有了一定的認(rèn)識(shí)。

為佳木斯等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及佳木斯網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、佳木斯網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

下邊來看下代碼的內(nèi)容,其實(shí)是很簡單的

param (     [parameter(Mandatory = $false)]     [Int]$MaxRecords = 100000,     [parameter(Mandatory = $true)]     [string]$User      ) function Write-DateTimeMessage {     param (         [parameter(Mandatory = $false)]         [switch]$Warning,         [parameter(Mandatory = $true)]         [string]$Message,         [parameter(Mandatory = $false)]         [string]$ForegroundColor              )               if ($Warning) {         Write-Warning ($(Get-Date -UFormat '%Y/%m/%d %H:%M:%S') + " * " + $Message)     }     else {         if ($ForegroundColor) {             Write-Host ($(Get-Date -UFormat '%Y/%m/%d %H:%M:%S') + " * " + $Message) -ForegroundColor $ForegroundColor         }         else {             Write-Host ($(Get-Date -UFormat '%Y/%m/%d %H:%M:%S') + " * " + $Message)         }     }      }                    [pscustomobject[]]$UserObjects = $null $Subscriptions = Get-AzureRmSubscription foreach ($subscription in $Subscriptions) {          " "     "Querying Subscription:"     $SubscriptionID = $Subscription.Id     $SubscriptionName = $Subscription.Name     Select-AzureRmSubscription -SubscriptionId $SubscriptionID -InformationAction SilentlyContinue          Write-DateTimeMessage -Message "Retrieving logs, please wait..."     $logs = Get-AzureRmLog -ResourceProvider Microsoft.Compute -StartTime (Get-Date).AddDays(-90) -Maxrecord $MaxRecords     foreach ($log in $logs) {         if ($log.caller -eq $User) {             $UserObject = New-Object -TypeName psobject             $UserObject | Add-Member -MemberType NoteProperty -Name SubscriptionName -Value $SubscriptionName             $UserObject | Add-Member -MemberType NoteProperty -Name SubscriptionID -Value $SubscriptionID             $UserObject | Add-Member -MemberType NoteProperty -Name ResourceGroup -Value $log.ResourceGroupName             $UserObject | Add-Member -MemberType NoteProperty -Name Caller -Value $log.caller             $UserObject | Add-Member -MemberType NoteProperty -Name Operation -Value $log.OperationName.Value             $UserObject | Add-Member -MemberType NoteProperty -Name ResourceId -Value $log.ResourceId             $UserObject | Add-Member -MemberType NoteProperty -Name Time -Value $log.EventTimestamp             $UserObjects += $UserObject         }     } } $OutputPath = Join-Path -Path ([Environment]::GetFolderPath("Desktop")) -ChildPath ("AzureUserAction-" + $(Get-Date -Format "yyyyMMdd-HHmmss") + ".csv") if ($null -ne $UserObjects) {          $UserObjects | Export-Csv -NoTypeInformation -LiteralPath $OutputPath     Write-DateTimeMessage -Message "Please check $OutputPath" -Warning } else {     Write-DateTimeMessage  "Didn't get information, please check" -warning      }

    我們來嘗試著運(yùn)行一下腳本Get-AzureUserActionLog.ps1 -User "xxx@xxx.partner.onmschina.cn", -User的作用是我們可以根據(jù)這個(gè)參數(shù)篩選出來特定的用戶

    如何用powershell腳本查看用戶的操作記錄

腳本執(zhí)行完成后,可以在桌面上看到一個(gè)csv文件,里邊會(huì)記錄查詢出來log

如何用powershell腳本查看用戶的操作記錄

提醒一點(diǎn),因?yàn)锳zure后臺(tái)的限制,這只能查詢到最近90天之內(nèi)的log。

看完這篇文章,你們學(xué)會(huì)用powershell腳本查看用戶的操作記錄了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀。 

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


名稱欄目:如何用powershell腳本查看用戶的操作記錄-創(chuàng)新互聯(lián)
分享路徑:http://weahome.cn/article/ppeih.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部