想请教, 如果我想知1个AD USER PROFILE(例如CHANYU.V6)的容量, 可以如何取得。 因为按平时的做法是0BYTE的。
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"