Posts

Disable Firewall VIA Command Prompt (CMD)

 To turn off the firewall in Windows 11 using Command Prompt (CMD) , follow these steps: Method 1: Disable Firewall for All Profiles Open Command Prompt as Administrator: Press Win + R , type cmd , and press Ctrl + Shift + Enter to open CMD with admin rights. Run the following command to disable Windows Defender Firewall for all profiles: vbnet netsh advfirewall set allprofiles state off Press Enter and wait for the confirmation message: "OK." (This means the firewall is now turned off.) Method 2: Disable Firewall for Specific Profiles If you want to disable the firewall for only a specific profile, use one of the following commands: Disable Firewall for Domain Profile (Used in enterprise networks): vbnet netsh advfirewall set domainprofile state off Disable Firewall for Private Profile (Used for trusted networks, like home Wi-Fi): vbnet netsh advfirewall set privateprofile state off Disable Firewall for Public Profile (Used for public networks, like coffee shop ...

Command to Delete a Printer

  Replace "Printer_Name" with the exact name of the printer you want to delete (as shown in the "Printers & Scanners" settings). For example: printui.exe /dl /n "Printer_Name" Alternative (Using PowerShell in CMD): powershell "Remove-Printer -Name 'Printer_Name'"

step-by-step command to back up drivers in win

  Step 1: Open Command Prompt as Administrator Press Windows Key + X and select Command Prompt (Admin) or Windows PowerShell (Admin) . Alternatively, you can search for "cmd", right-click on Command Prompt , and choose Run as administrator . Step 2: Export Drivers to a Folder Use the DISM command to export drivers. For example, to export drivers to C:\Backup\Drivers : cmd DISM /Online /Export-Driver /Destination:C:\Backup\Drivers /Online : Specifies that you are working with the currently running system. /Export-Driver : Tells DISM to export the drivers. /Destination:C:\Backup\Drivers : Specifies the destination folder where drivers will be saved (you can change C:\Backup\Drivers to any path you prefer). Make sure the folder C:\Backup\Drivers exists before running the command or create it with mkdir : cmd mkdir C:\Backup\Drivers Step 3: Verify the Backup The drivers will be exported to the folder you specified (e.g., C:\Backup\Drivers ). You can navigate to that folder t...