Master Arif
+44(0)7790029002
[email protected]
Me in a Blink
About Me
Writing
My Bio
My Skills
Testimonials
Projects
Portfolio
Tech Support
Contact Me
Master Blog
Home
Master Blog
January 23, 2023
PowerShell script to find the users folder size and last modified then csv export
This script will loop through all the folders in the “C:\Users” directory and check if they are a container (i.e. a folder). If they are, it […]
January 23, 2023
PowerShell script to find the users folder size and last modified more than 90 days and csv export
$days = 90 $usersPath = "C:\Users" $outputFile = "C:\Users_Inactive_Over_90_Days.csv" $currentDate = (Get-Date).Date $users = Get-ChildItem -Path $usersPath $results = @() foreach ($user in $users) { if […]
January 23, 2023
Powershell script to find the users folder size and last modified
This script will loop through all the folders in the “C:\Users” directory and check if they are a container (i.e. a folder). If they are, it […]
January 23, 2023
PowerShell script to find user profile that not used for long time
This script will loop through all the folders in the “C:\Users” directory and check if they are a container (i.e. a folder). If they are, it […]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Next page
Your Name (required)
Your Email (required)
Subject
Your Message