IT Technical Support for Developers

Windows


Windows 11 Upgrade from Windows 10 - A Free Upgrade

Upgrade to the New Windows 11 OS, Microsoft

Is Windows 11 a free upgrade?

As Microsoft has released Windows 11 on 24th June 2021, Windows 10 and Windows 7 users want to upgrade their system with Windows 11. As of now, 

Windows 11 is a free upgrade and everyone can upgrade from Windows 10 to Windows 11 for free.

How to upgrade from Windows 10 to Windows 11 for free

Microsoft's free Windows 11 upgrade from Windows 10 is now rolling out. Microsoft is starting to offer the free upgrade Windows 10 to Windows 11
You can simply go to the system updates section of your existing windows and search for a new update. Windows 11 upgrade
Step 1: Go to the Start menu and type Settings and open settings page.
Step 2: Now click on the "Updates and Security" option from the settings page.
Windows 10 Settings
Step 3: Windows update page will Open. Click on the Check for Updates button.
Step 4: windows will show multiple updates and you can select which update you want to install.
Step 5: Go through the detected updates.
Windows11 update
If Windows 11 is available, then it will show in your upgrade section. You can simply click the Download and Install button to install the domain directly to your system.

What's in Windows 11

Windows 11 features a streamlined new design, with pastel colors, rounded corners, a new startup sound and overall a more Mac-like look. The Windows Start menu has moved from the bottom left of the screen to the middle, with app icons arranged in the center next to it. You'll find lots of new desktop tools, like widgets that can give you at-a-glance information, and easier virtual desktop creation. And Android apps will be integrated into Windows and installable from the Microsoft Store.

What are the system requirements for Windows 11?

Here are the requirements for Windows 11 that your PC/Laptop should have.
Processor 1 gigahertz (GHz) or faster with 2 or more cores on a compatible 64-bit processor or System on a Chip (SoC)
RAM 4 GB
Storage 64 GB or More
System firmware UEFI, Secure Boot capable
TPM TPM version 2.0
Graphics card DirectX 12 or later with WDDM 2.0 driver
Display HD display that is greater than 9” diagonally, 8 bits per color channel
Internet Microsoft account and internet connectivity

Create Windows 11 Installation Media

If you want to perform a reinstall or clean install of Windows 11 on a new or used PC, use this option to download the media creation tool to make a bootable USB or DVD.
Download Nows

Windows 11 supported Intel processors

Only 8th generation processors are supported for Windows 11. This is been specified by the PC manufacturers for improved security and performance.
Windows 11 supported Intel processors
If you have a computer with unsupported hardware, you may still be able to upgrade to Windows 11.


Windows 10 printer sharing error 0x0000011b

Windows 10 printer sharing problem

Do you encounter shared printer problems after installing an update on Windows 10? Recently, several users have reported getting error code 0x0000011b after they received the 14 September cumulative update.
Windows cannot connect to the printer

Fix Printer Error 0x0000011b KB5005565 in Windows 10

Win 10 Security update KB5005565
September 14, 2021—KB5005565 (OS Builds 19041.1237, 19042.1237, and 19043.1237)
Release Date: 9/14/2021
Version: OS Builds 19041.1237, 19042.1237, and 19043.1237

Windows 10 2004. 20H2 and 21H1

Here is how to fix Printer Error 0x0000011b in Windows 10
Step 1:- Click control panel
Step 2:- Click program and Features
Step 3:- Click View installed updates from the left pane.
Step 4:- Installed Updates Window will prompt up from Control panel.

Win 10 Security update KB5005565 Step 5:- Right click on KB5005565 and select “Uninstall”. or any updates after Sep 14 comes under "Security Update" you can uninstall.
Step 6:- Restart Windows

You have to do the above steps for all your network computers which are shared the same printer. the latest Security updates are having fix on the error 0x0000011b.

Step 7 for client PC.
Uninstall old/existing sharing printer drivers from your PC and connect your Network Computer (Printer Server) create a Printer sharring. It will connect and install printer drivers from Network computer (where the printer is attached physically).


Optional settings

How To Skip Windows Updates

open up the Run (Windows Key + R) and type in ‘services.msc’.
In the Services Menu, find Windows Update and right-click it. Open the Properties window and under the General Tab, there’s a Startup Type section. Here, we change this to disabled.
Be sure to change this back once the issue has been resolved, or you won’t get any future updates and could remain vulnerable!

Disable the CVE-2021-1678 mitigation

FIX IT NOW!
In the Windows search box, type regedit, and select Registry Editor
Navigate to the HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Print key
Create a new DWORD-32 bit value named RpcAuthnLevelPrivacyEnabled, and set it to 0
Once you disable this mitigation, you will no longer be protected from the vulnerability, but it will hopefully allow you to print again.

Free Windows 11 upgrade
Free Upgrade WINDOWS 10 TO WINDOWS11

Printer Error 0x0000011b fix

Printer Error 0x00000709 when you try to share a printer

Fix for Printer Error 0x00000709

Gmail Auto Forward



PHPMailer Enable 2FA Send Mail with 2 Step Authentication

How to send mail using PHP mailer if two factor authentication?

2 Step Verification

Gmail 2 steps verification

To send emails using PHPMailer with 2-factor authentication (2FA), you'll need to generate an "App Password" or set up OAuth2. Instead of your regular password, use the App Password in PHPMailer's settings.

Steps to Create App Password

Enable 2FA: Make sure 2FA is enabled in your Google Account.

Create a custom app in your Gmail security settings.
Step 1 Click Google Apps icon (right side top near user logo)
Step 2 Click Account
Step 3 Click Security Menu from left side
Step 4 Type "App password" in the search field
Step 5 Click "App Password" Link
Step 6 Enter the App Name as PHPMailer and submit
Step 7 You will get App Password.(It will generate a token to use in the App )

This is what you'll use in PHPMailer.

Sample Code

$email = new PHPMailer(true);

$email->IsSMTP(); // Use SMTP
$email->Host= 'smtp.gmail.com'; // Sets SMTP server

$email->SMTPDebug = 0; // 2 to enable SMTP debug information
$email->Debugoutput = 'html';
$email->SMTPAuth = TRUE; // enable SMTP authentication
$email->SMTPSecure = "SSL"; //Secure conection
$email->Port = 587; // set the SMTP port
$email->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);

$email->Username = 'your_email@gmail.com'; // Your Gmail address
$email->Password = 'your_app_password'; // The App Password
$email->setFrom('your_email@gmail.com', 'Your Name');
$email->addAddress('recipient@example.com', 'Recipient Name');
$email->Subject = '2FA Test Email';
$email->Body = 'This is 2 Step Verification Mail Sent by PHPMailer.';

if ($email->send()) {
echo 'Message sent!';
} else {
echo 'Mailer Error: ' . $mail->ErrorInfo;
}

Use the token as password in combination with your full Gmail account and two factor authentication will not be required.

How to enable two factor authentication in Gmail



0x00000040, How to Fix Win 11 Printer Sharing to win 10 /win 7

Operation Could Not Be Completed Error 0x00000040 The Specified Network Name Is No Longer Available

How can I fix Printer Error 0x00000040?
Windows 11 Network Printer Sharing to Windows 10 / Windows 8 / Windows 7
It’s a common error that users face if a third-party printer driver is installed on the print server. Fortunately, you can fix this by following some simple steps.

Printer Error 0x00000040 can be fixed by following some simple steps.
What causes Operation could not be completed (error 0x00000040)?

Windows 10/11 doesn’t allow users to install a third-party printer driver on the print server. You need to change the Group Policy settings or tweak the Registry to resolve the issue. The other reasons for this error could be:

1.Point and Print Restrictions policy
2.Pending print jobs in Print Spooler
3.Printer Driver issues.
Run Printer Troubleshooter

1. Press Windows Key + I to open Settings.
2. Scroll down and select Troubleshoot > Other Troubleshooters.
3. Click on Run beside Printer.
4. Once the process is complete, restart your device to see if the printer error has been resolved.
Modify Group Policy Settings

GP Settings for 0x00000040 Kernel-mode drivers operate in kernel mode and have unlimited access to hardware and memory. But sometimes, the kernel-mode driver’s policy can malfunction due to corrupted drivers. Disable the policy and check if the error is fixed.
Disable the Point and Print using Registry Editor

1. Press the Windows key + R to open the Run dialog box.
2. Type regedit and hit Enter.
3. Navigate to the following path :HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint

4. right-click on InForest and select Modify.
5. Now enter the Value data as 0 and click Ok to save the changes.
6. In the same way, change the value data of Restricted and TrustedServers to 0.
7. Close the Registry Editor and restart your computer.
Update Printer driver

Update your Printer driver and see. Keeping your drivers up-to-date is very important. Although Optional Updates do update some of the drivers, some require you to download the driver manually from the manufacturer’s website.



How do I fix error 0xC1900101?

How can I fix 0xC1900101 errors on Windows 10 to Windows 11 Upgrade?

The other reason that people fail the upgrade is that they do not realize that a lot of free space is needed in order for the update to install. If users have completed all the required steps before starting the installation process, the cause for the 0xC1900101 – 0x60016 error can be quite complicated.

How to fix error code 0xC1900101 upgrading to Windows 11

The error codes starting with 0xC1900101 or 0x80090011 can indicate various problems during the Windows 11 upgrade process.
These are the common "0xC1900101" errors that you may come across upgrading to Windows 11:

0xC1900101 - 0x2000c
0xC1900101 - 0x20017
0xC1900101 - 0x30017
0xC1900101 - 0x30018
0xC1900101 - 0x3000D
0xC1900101 - 0x4000D
0xC1900101 - 0x40017

Cleanup storage space

The setup of Windows 11 requires several gigabytes of space to process the upgrade. If the device does not have enough available space, you may see one of the 0xC1900101 error codes. You can get around this problem by using the "Storage" and "Apps & features" settings to free up space.

You can use this guide to find many tips to delete unnecessary files to free up storage space.

Disconnect devices

If the computer has peripherals like external drives, printers, Bluetooth devices, USB devices, cameras, disconnect them before proceeding to reduce the chances of errors and other issues upgrading to Windows 11. You can always reconnect them after the upgrade.

Uninstall security apps

If there is a problem with third-party security software, you will likely see the error codes 0xC1900101 0x20017 and 0xC1900101 0x30017.

Repair corrupted files

1. Press Windows + X keys altogether to launch the Power menu

2. Select Run option on the list and type cmd in the text box

3. Now press Ctrl + Shift + Enter to open Command Prompt as Admin

4. If the UAC dialog appears up, click Yes to authorize the access

5. On the elevated console, type the following command, and press Enter:

sfc /scannow

6. Reboot

Windows 11 How to install on unsupported hardware




Related Links...

Windows 11 error code 0x800f0950


Upgrade from Windows 7 to Windows 10 for free


Windows 10 printer error 0x00000709


Win 11 an existing connection was forcibly closed (OS error 10054)


Windows 11 How to install on unsupported hardware


How to get Windows 11 without TPM 2.0


How to add 2-Step Verification in Gmail


Windows 11 How to Launch Task Manager


Windows 10 printer sharing error 0x0000011b FIX


How do I fix Windows Update 11 error?


How to Fix Boot Error code: 0xc000014c, Win10/8




Latest Post


/Tally Integration Capabilities


/Artificial Intelligence AI


/Artificial Intelligence AI


/Artificial Intelligence AI


/Artificial Intelligence AI