iT邦幫忙

1

User Profile 大小問題

  • 分享至 

  • xImage

想請教, 如果我想知1個AD USER PROFILE(例如CHANYU.V6)的容量, 可以如何取得。 因為按平時的做法是0BYTE的。

perry168 iT邦新手 1 級 ‧ 2024-11-06 21:33:07 檢舉
用第三方軟件解決了。
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

2
mattrife
iT邦見習生 ‧ 2024-11-07 14:36:45

You can use PowerShell to calculate the size of the user profile. Incredibox Colorbox Mustard

$profilePath = "\\ServerName\Users\CHANYU.V6"
$size = (Get-ChildItem -Recurse -Force $profilePath | Measure-Object -Property Length -Sum).Sum
"{0:N2}" -f ($size / 1GB) + " GB"

我要發表回答

立即登入回答