How to Set Proxy Settings via Group Policy?
The article shows how to use Active Directory Group Policies (GPOs) to configure proxy server settings on domain-joined computers running Windows 10/11 and Windows Server 2022/2019/2016/2012R2. These proxy server settings are used by all modern browsers, including Internet Explorer 11 (reached end of support on June 2022), Google Chrome, Microsoft Edge, Opera, and Mozilla Firefox
How to Add Domain Users to the Local Administrators Group in Windows
In order to grant local administrator permissions on domain computers to technical support personnel, the HelpDesk team, certain users, and other privileged accounts, you must add the necessary Active Directory users or groups to the local Administrators group on servers or workstations. In this article, we’ll show you how to manage members of the local
How to Disable or Enable USB Drives using Group Policy
When you connect a new USB device to your computer, Windows automatically detects the device and installs the appropriate driver. As a result, the user can use the connected USB drive or device almost immediately. If your organization’s security policy prohibits the use of portable USB storage devices (flash drives, USB hard drives, SD cards
PowerShell Startup Scripts Using GPO
Windows Group Policy allows you to run various script files at a computer startup/shutdown or during user logon/logoff. You can use GPOs not only to run classic batch logon scripts on domain computers (.bat, .cmd, .vbs), but also to execute PowerShell scripts (.ps1) during Startup/Shutdown/Logon/Logoff.In modern versions of Windows, you can directly run logon/logoff PowerShell
How To Fix Start Menu or Taskbar Search Not Working in Windows 10/11
The Start Menu search feature is used more often in Windows 10 and 11 than in previous OS versions. You can use Windows Start Menu search to quickly find an app, file, setting item, system feature, or even to search the Web. However, in some cases, Windows search may stop working. When you try to
How to Find Duplicate Files Using PowerShell
For one of the projects, I needed a PowerShell script to find duplicate files in the shared network folder of a file server. There are a number of third-party tools for finding and removing duplicate files in Windows, but most of them are commercial or are not suitable for automatic scenarios.Because files may have different
How To Fix Error: There are Currently No Logon Servers Available
When a user logs on to a Windows computer that is joined to an Active Directory domain, they may see the following error message:There are currently no logon servers available to service the logon request.This message says that none of the AD domain controllers (LogonServer) is available from this computer to authenticate the user. The
Deploy Scheduled Task Using GPO
You can use the Group Policy to create and deploy scheduled tasks to domain computers. For example, you can create a task that automatically logs out users or shuts down computers at a specified time, runs a script, etc.In this example, we will create a new Scheduler task that displays a pop-up notification and distribute
Delete Old User Profiles in Windows
Administrators should occasionally delete old user profiles (retired or inactive users, etc.) from C:Users on Windows workstations and servers. The Windows user profile cleanup task is most commonly performed on Remote Desktop Services (RDS) terminal servers.The main problem with RDS servers is the constant growth in the size of the user profile directories on the
Automating Local Administrator Password Changes on Windows Machines with PowerShell
Table of Contents Introduction PowerShell is a powerful scripting language that can be used to automate various tasks,…