To find large files on a computer, you can use Windows File Explorer, one of the third-party tools (such as WinDirStat or TreeSize), or your favorite file manager. In some…
Using PowerShell for System Administration and Automation Tasks
- PowerShellWindows 10Windows 11Windows Server 2022
Managing Printers and Drivers on Windows with PowerShell
October 11, 2024With PowerShell, you can automate common printer and printer driver management tasks in Windows. This guide explains how to create, delete, or share a printer from the PowerShell console; set…
- PowerShellWindows 10Windows 11Windows Server 2019
Downloading (Transferring) Large Files Using PowerShell and BITS
April 10, 2024If you need to download (transfer) a large file to a remote computer without overloading the network channel, we recommend using the BITS protocol. BITS (Background Intelligent Transfer service) is…
- PowerShellWindows 10Windows Server 2019
Enable Access-based Enumeration (ABE) on Shared Folders (SMB)
July 24, 2024Access-based Enumeration (ABE) is a shared folder option in Windows that allows to hide files and folders that users don’t have permission to access. ABE is used to hide the…
- Active DirectoryPowerShellWindows Server 2019Windows Server 2022
How To Monitor Group Membership Changes in Active Directory
October 1, 2024It can be difficult to track exactly who made certain changes when the Active Directory domain infrastructure is managed by multiple administrators (added or removed a user from a security…
- PowerShellWindows 10Windows Server 2019
How to Get My Public IP Address with PowerShell
October 24, 2023You can use a simple PowerShell command to find out the current public IP address that your Windows computer uses to access the Internet. There are a large number of…
- PowerShellWindows Server 2019Windows Server 2022
How to See Number of Active User Sessions on IIS WebSite
March 16, 2024How to quickly estimate the current number of user connections (sessions) to the IIS sites on webserver running on Windows Server? Such information will allow to determine and predict the…
- PowerShellWindows 10Windows 11Windows Server 2019
How to Clear Event Viewer Logs on Windows
November 9, 2023On Windows, you can clear Event Viewer logs by using the eventvwr.msc GUI snap-in, from the command prompt, and by using PowerShell.
By default, to connect to a remote computer using PowerShell (PowerShell Remoting) you need administrator privileges. In this article, we’ll show how to allow remote connection using PowerShell Remoting (WinRM)…
- PowerShellWindows 11Windows Server 2019
How to Connect and Query MySQL or MariaDB with PowerShell
March 17, 2024You can connect to a MySQL/MariaDB database, select data from a table, and add, update, and delete table entries directly from a PowerShell script. In this post, we’ll look at…