Tech Support

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 […]
January 23, 2023

Powershell script for users list with the folder size and last use

Here is an example PowerShell script that will retrieve a list of users on a remote Windows computer, including the size and last modified date of […]
April 4, 2020

Nitro PDF – disable scanned document OCR pop-up

Issue Every time Nitro PDF opens a scanned document following pop-up is displayed. Resolution To disable this pop-up go to File > Preferences > Notifications and […]
March 6, 2020

Some Programs Cannot Access Network Locations issue fixed

Symptom After you turn on User Account Control (UAC) in Windows PC, programs may not be able to access some network locations. This problem may also […]
March 3, 2020

How to clear windows update cache

If you are having issues related to Windows Updates in Windows 10 operating system then clearing Windows update cache will perfectly help you in solving Windows […]
February 27, 2020

How To Delete User Profile (Local User Profile and Domain User Profile)

I’m showing, how to safely remove a domain user profile from a computer that is a part of a domain. I don’t want to delete the […]