February 15, 2016

reporting on the owners of largest files windows server 2012

1. Open Powershell ISE on your file server → Navigate to your file share using "cd" command → after that run the following powershell code:
gci -re -in * |
  ?{ -not $_.PSIsContainer } |
  sort Length -descending |
  select -first 25
2. After that you will see the top 25 largest files on your shared drive. Copy and paste this information into "txt" or "doc" file.


Related Posts:

  • Tìm hiểu Group Policy Object và các ví dụ Group policy có thể được coi là một thứ system policy (phiên bản cũ). Các chính sách này được MS phát minh ra từ Windows 2000, áp dụng được với các hệ điều hành kể từ bản windows 2000. Một số đặc điểm của Group Policy: … Read More
  • How to disable USB devices using Group Policy In this post we will learn the steps to disable USB Ports Using Group Policy. USB( Universal Serial Bus) is most common use for each and every one. USB is Most common way to establish connection between Pc and USB. Use of US… Read More
  • PHÂN QUYỀN DATACHUNG PHÂN QUYỀN DATACHUNG Với yêu cầu hiện nay của công ty --> tất cả các nhân viên có nhu cầu muốn Upload tài nguyên của mình lên máy File Server vào một thư mục chung do họ tạo ra nhằm share tài nguyên lẫn nh… Read More
  • How to Enable / Disable Multiple RDP Sessions in Windows 2012How to Enable/Disable Multiple RDP Sessions in Windows 2012 By default, Windows 2012 servers allow a single Remote Desktop session. If only one session is available and you take over another person's live session, you ma… Read More
  • Hướng dẫn nâng cấp Active Directory 2003/2008 lên 2012 Tình huống:Cty VMBlogs VN có 2 domain controller lần lượt là dc01 (server 2003) và dc02 (server 2008 R2). dc01.vmblogs.vn (dc01 giữ tất cả 5 role Active Directory)dc02.vmblogs.vn Theo nhu cầu phát triển, công ty cần nâng c… Read More

0 comments:

Post a Comment