Posts tagged with "Windows"
Troubleshoot Crashing Apps with ProcDump & WinDbg
Step‑by‑step guide for capturing crash dumps with ProcDump and performing post‑mortem analysis in WinDbg.
Published: May 1, 2025 | Last Modified: June 10, 2025Managing Microsoft Office Versions with OfficeC2RClient
A comprehensive guide to managing Microsoft 365 versions using OfficeC2RClient, including checking current builds, consulting version history, and rolling back or updating Office installations.
Published: September 10, 2024 | Last Modified: May 13, 2025Visualizing and Analyzing Windows Folder Permissions
A comprehensive guide to exporting and visualizing Windows folder permissions using PowerShell and Python, including treemap visualizations of user access rights.
Published: June 1, 2024 | Last Modified: May 13, 2025Troubleshooting Group Policy Objects (GPOs)
A collection of useful commands and steps for troubleshooting Group Policy Objects (GPOs) in a Windows Active Directory environment.
Published: May 31, 2024 | Last Modified: May 13, 2025Remote and Local DNS Configuration Guide
Comprehensive guide on changing DNS settings remotely and locally, with a focus on network troubleshooting and management using WMIC and PowerShell.
Published: March 21, 2024 | Last Modified: May 13, 2025Visualizing Directory Structures with PyVis
A guide to visualizing Windows directory structures using Python and pyvis for interactive network graphs.
Published: December 28, 2023 | Last Modified: May 13, 2025Join a Workstation to Active Directory with Shell and PowerShell
A comparison of efficient one-liner commands in both Shell and PowerShell for joining workstations to Active Directory domains with proper credential handling and automatic restart functionality.
Published: July 13, 2023 | Last Modified: May 13, 2025Windows ACL Management with PowerShell
A comprehensive collection of PowerShell scripts for managing Windows Access Control Lists (ACLs), including permission enumeration, modification, and analysis tools with detailed permission descriptions.
Published: May 2, 2023 | Last Modified: May 13, 2025Windows Defender Firewall Management Guide
A comprehensive guide to managing Windows Defender Firewall via command line, covering firewall state management, program exceptions, Remote Desktop configuration, and port forwarding.
Published: March 3, 2023 | Last Modified: May 13, 2025Microsoft LAPS (Local Administrator Password Solution) Guide
Microsoft LAPS (Local Administrator Password Solution) is a tool designed to securely manage local administrator account passwords on Windows domain-joined computers. It automates password generation and rotation, and stores passwords in a secure manner, providing greater control and security over local accounts.
Published: February 23, 2023 | Last Modified: May 13, 2025Managing Windows User Accounts with net user Command
The “net user” command is a Command Prompt (Shell) command used to manage user accounts on a Windows operating system. It can be used to create, modify, or delete user accounts, as well as to change passwords and manage group memberships.
Syntax
net user [username [password | *] [options]] [/DOMAIN]
net user username {password | *} /ADD [options] [/DOMAIN]
net user username [/DELETE] [/DOMAIN]
net user username [/TIMES:{times | ALL}]
net user username [/ACTIVE: {YES | NO}]
Add a user
To add a new user account:
Published: February 22, 2023 | Last Modified: May 13, 2025Windows Driver Management with pnputil
You can uninstall third-party drivers (such as the WAVES MaxxAudio Pro driver) from the Command Prompt (CMD) by using the “pnputil.exe” utility. Here’s the basic process:
Open Command Prompt as administrator: Press the Windows key + X, and then select “Command Prompt (Admin)”.
Type the following command and press Enter:
pnputil.exe -e
# or export the list to a file
pnputil.exe -e > !drivers.csv
This command lists all the third-party drivers installed on your system.
Published: February 17, 2023 | Last Modified: May 13, 2025Mastering Time with Shell and PowerShell
A comprehensive guide to Windows time management using shell and PowerShell commands, covering system uptime, boot times, time synchronization, and timezone configuration.
Published: February 2, 2023 | Last Modified: May 13, 2025PowerShell Script to Export WiFi Network Credentials
A PowerShell script that automates the extraction of stored WiFi network credentials using netsh commands, exporting SSIDs and passwords to a CSV file for easy management and reporting.
Published: April 11, 2022 | Last Modified: May 13, 2025Windows Settings URI Reference
A comprehensive reference guide to Windows ms-settings URI schemes, enabling direct access to specific Windows Settings pages through command-line or scripting interfaces.
Published: January 1, 2021 | Last Modified: May 13, 2025Remove-AppxPackages
A PowerShell script that removes unwanted Windows Store apps (AppX packages) while preserving essential system apps, using a list of package names to exclude from removal.
Published: August 28, 2019 | Last Modified: May 13, 2025Enable AutoAdminLogon with PowerShell
A PowerShell script that enables AutoAdminLogon by configuring registry settings to automatically log in a specified user without prompting for credentials.
Published: August 19, 2019 | Last Modified: May 13, 2025