Logo

Network License NotAvailable15.570.0 Autodesk

If when trying to start Autodesk applications you receive a Network license not available error then please keep on reading, this guide is for you:

Causes of the error:

  • The license on the License Server is invalid.
  • The port for Autodesk Network License Manager is blocked.
  • The client computer is configured with incorrect license server information.
  • The license request is timing out on the client's computer before the license is obtained.

Solutions for the error:


Verify that the Autodesk License Server is setup with the correct license file.

To set up a license server for Windows, perform the following:

  1. Download and install the Network License Manager for Windows:
  2. Open LMTools and access the System Settings tab. Make a note of the "hostname" and "ethernet address" of the license server.
  3. Generate a Network License File in Autodesk Account.
  4. On the Service/License tab, select Configuration Using Services and LMTOOLS ignores license file path environment variables.
  5. On the Config Services tab, enter a name for the new service in the Service Name field.
  6. Fill the following fields, using the Browse buttons:
    • Path to the lmgrd.exe - Navigate to this file: C:\Autodesk\Network License Manager.
    • Path to the License file - Navigate to the new Autodesk.lic file, typically placed in: C:\Autodesk\Network License Manager\Licenses.
    • Path to the Debug Log file: C:\Autodesk\Network License Manager.
    • If no file is present, create a TXT file in Notepad and rename it “Debug.log.”
  7. Make sure the "Start Server at Power Up" and the "Use Services" boxes are checked. Then click Save Services.
  8. On the Start/Stop/Reread tab, click Start Server.
  9. On the Server Status tab, click Perform Status Enquiry.
  10. Licenses should display as active.

How to set up the Autodesk Network License Manager on a Mac.

Note: The Autodesk License Server Manager (version 11.16.2.0) is supported only on the following Mac operating systems:
  • Apple macOS High Sierra 10.13
  • Apple macOS Sierra 10.12
  • Apple Mac OS X El Capitan 10.11
  1. Download Autodesk Network License Manager version 11.16.2.0 for Mac
    • ​​Download the nlm11.16.2.0_ipv4_ipv6_mac_universal.tar.gz file to the Desktop.
  2. To install the Autodesk Network License Manager:
    • Double click on nlm11.16.2.0_ipv4_ipv6_mac_universal.tar.gz to unpack the installer package.
    • After unpacking nlm11.16.2.0_ipv4_ipv6_mac_universal.pkg, will be /Downloads/adlm/FLEXnet folder.
    • Double click on nlm11.16.2.0_ipv4_ipv6_mac_universal.pkg to start installation and follow the installation wizard.
    • The license server will be installed in /usr/local/flexnetserver/ directory.
  3. Change permissions for /usr/local/flexnetserver/ directory to 777
  • Open Terminal (located in /Applications/Utilities/Terminal) and enter the following command:
sudo chmod -R 777 /usr/local/flexnetserver
  • Note: Administrator password may be asked. While typing no characters are shown, just type out the password and hit return key.
  • Note: To start the license server only with elevated permissions (using sudo command), change permissions to 755 instead of 777.
  1. Create /usr/local/flexnetserver/licenses directory for network license file location
sudo mkdir /usr/local/flexnetserver/licenses
  1. Find the license server Host Name and Host ID.
  2. Generate the Network License File in the Autodesk Account
    • Once the license file is generated, make sure it has a .lic extension (e.g. adsk_license.lic) and is in a plain text format and place it in /usr/local/flexnetserver/licenses directory
Note: In this article we will refer to  adsk_license.lic as network license file name. Feel free to change the actual name of the license file, but make sure to reflect the new name when using the commands below.
  1. Create a debug.log file in the /usr/local/flexnetserver/ directory using the following command:
touch debug.log
  1. To start the Network License Server use the following command:
/usr/local/flexnetserver/lmgrd -c /usr/local/flexnetserver/licenses/adsk_license.lic -l /usr/local/flexnetserver/debug.log
Note: If folder permissions for  /usr/local/flexnetserver/ are set to  775, then use sudo command to start the server. For example:
sudo /usr/local/flexnetserver/lmgrd -c /usr/local/flexnetserver/licenses/adsk_license.lic -l /usr/local/flexnetserver/debug.log
  1. To obtain license server status enquiry:
/usr/local/flexnetserver/lmutil lmstat -a -c /usr/local/flexnetserver/licenses/adsk_license.lic
  1. To stop the license server:
/usr/local/flexnetserver/lmutil lmdown -q -force
  • A​​lternatively, run ps command to obtain process ids for lmgrd and adskflex and then kill those processes:
ps -ax | grep lmgrd
ps -ax | grep adskflex
kill -9
  • (provide process ids obtained by previous commands individually)

How to set up the Autodesk Network License Manager on Linux.

Note: The Autodesk License Manager (11.16.2.0) is supported only on the following Linux distros:
  • Red Hat® Enterprise Linux® 7
  • Red Hat Enterprise Linux 6
  • SUSE Linux Enterprise 12
  • SUSE Linux Enterprise 11
To configure the license manager use the following steps:
  1. Download Autodesk Network License Manager v. 11.16.2 for Linux from this link
    • ​​Download the nlm11.16.2.0_ipv4_ipv6_linux64.tar.gz file to your desktop.
  2. To install the Autodesk Network License Manager run following command as root.
    • tar –zxvf nlm11.16.2.0_ipv4_ipv6_linux64.tar.gz
    • rpm -vhi nlm11.16.2.0_ipv4_ipv6_linux64.rpm
    • The license server will be installed in /opt/flexnetserver/ directory.
  3. Find the license server Host Name and Host ID
  • To obtain the license server system hostid run the following command

/opt/flexnetserver/lmutil lmhostid

From the command output note the hostid in quotes, if the system has two active NIC cards, select the first MAC address.
lmutil - Copyright (c) 1989-2018 Flexera. All Rights Reserved.
The FlexNet host ID of this machine is "000c297949e0"

  • To obtain the license server system hostname run the following command

/opt/flexnetserver/lmutil lmhostid hostname

From the command output note the hostname of the license server.
mutil - Copyright (c) 1989-2018 Flexera. All Rights Reserved.
The FlexNet host ID of this machine is "HOSTNAME=Centos7.localdomain"

  1. Generate your Network License File in Autodesk Account
    • Once the license file is generated, make sure it has .lic extension (e.g. adsk_license.lic) and place it in /opt/flexnetserver/licenses directory.  If the directory doesn't exits, create it with this command: sudo mkdir /opt/flexnetserver/licenses
Note: in this article we will refer by adsk_license.lic your network license file name.
  1. To start the Network License Server
    • /opt/flexnetserver/lmgrd -c /opt/flexnetserver/licenses/adsk_license.lic -l /opt/flexnetserver/server_log.log
  2. To obtain license server status enquiry
    • /opt/flexnetserver/lmutil lmstat -a -c /opt/flexnetserver/licenses/adsk_license.lic
  3. To stop your license server service
    • /opt/flexnetserver/lmutil lmdown -q -force
    • alternatively you can also run ps command to obtain process ids for lmgrd and adskflex and then kill those processes
      • ps -aw | grep lmgrd
      • ps -aw | grep adskflex
      • kill -9 (provide process ids obtained by previous commands individually)
  4. To start the license server automatically after the system reboot
    • Open /etc/rc.d/rc.local script as root and enter license server start up command in it.
touch /var/lock/subsys/local
/opt/flexnetserver/lmgrd -c /opt/flexnetserver/licenses/adsk_license.lic -l /opt/flexnetserver/server_log.logNote: To ensure that the script will be executed during boot, run following command as root.
chmod +x /etc/rc.d/rc.local
  1. Make sure that all necessary ports are open:
  • lmgrd.exe needs ports 27000 to 27009.
  • adskflex.exe needs port 2080.
Note: Errors may occur if the network license file is corrupt or in the case of a combined network license it has incorrectly combined licenses. To learn more about combining licenses, see Combining License Files for Multiple Autodesk Products. Use the License File Parser to verify that the license contains the appropriate products and FLEXnet feature codes and does not display an error

Verify that TCP ports (2080, 27000-27009) used by Autodesk Network License Manager are not blocked by Firewall.

The FLEXlm® based version uses the following incoming ports:

  • TCP ports 2080 (for the adskflex vendor daemon)
  • TCP ports 27000 to 27009 (for the lmgrd master daemon, which uses the first open port in the range)

Note: If these port addresses are restricted by a router or firewall software, users on the remote side of the router will not have access to licenses controlled by the Network License Manager.


Verify that the client computer is configured with the correct license server name or IP.

Windows:

Clear license server information from the system registry.

  1. Type regedit in the Windows Search box and hit Enter key.
  2. Select the following registry key
  • [HKEY_CURRENT_USER\SOFTWARE\FLEXlm License Manager]
  1. As the key is selected, in right panel ADSKFLEX_LICENSE_FILE will be visible.
  2. Right click on the key and delete it.

Specify the license server in ADSKFLEX_LICENSE_FILE system variable 

  1. Go to Start > Control Panel > System and Security > System.
  2. Select Advanced system settings.
  3. On the System Properties dialog, click Environment Variables.
  4. Under System Variables, click New.
  5. Enter ADSKFLEX_LICENSE_FILE for the variable name and 2080@SERVER_NAME _OR _IP for the variable value.
Note: the license server information most often is recorded in LICPATH.lic file and can be verified there too.  ADSKFLEX_LICENSE_FILE system variable supersedes LICPATH.lic.  Thus, setting the system variable is preferable when this error is seen.

If the license server is on a VPN or a remote network set the FLEXLM_TIMEOUT environment variable:

  1. Go to Start > Control Panel > System and Security > System.
  2. Select Advanced system settings.
  3. On the System Properties dialog, click Environment Variables.
  4. Under System Variables, click New.
  5. Enter FLEXLM_TIMEOUT for the variable name and 5000000 for the variable value.
  6. Click OK to save the setting.
Note: if needed the variable value can be increased to 10000000.

Mac/Linux:

Specify the Autodesk Network License server information in $HOME/.flexlmrc file.

Use a text editor to create a flexlmrc.txt file and save it in Plain text format (In TextEdit on Mac: Format - Make Plain Text) on desktop.
The file content should look like this, except with the name or IP address of the license server.
  • ADSKFLEX_LICENSE_FILE=@SERVER_NAME _OR _IP
If the license server is on the same machine as the Autodesk software, use localhost as the license server name.  Thus, the content of flexlmrc file could look like this:
  • ADSKFLEX_LICENSE_FILE=@localhost

Note: On firewall restricted network or when accessing the license server via VPN, need to include TCP port/s (usually 27000 or 2080) into Autodesk License Server service as follows: ADSKFLEX_LICENSE_FILE=2080@SERVER_NAME _OR _IP

Once flexlmrc file is created move it to user's $HOME folder as follows:

  1. Open a Terminal window
  2. Type open ~ (Mac) or nautilus ~ (Linux) to open $HOME folder
  3. Drag and drop flexlmrc.txt file from Desktop to the home folder.
  4. To make the file a configuration file, rename it to .flexlmrc (please note . [DOT] in front of the file name) by running the following command:
  • mv flexlmrc.txt .flexlmrc (Mac)
  • mv flexlmrc .flexlmrc (Linux)

Verify that the license server information registered with the product is correct (versions 2020 and later only)

In versions 2020 and later, the license server information is registered with the AdskLicensing service running locally on the workstation. When changing to a new license server, the old server information may still be registered with AdskLicensing and result in the error above, if this is not appropriately updated.

See the below steps to solve this:

  1. Click the Start menu and type cmd.
  2. Right-click on the Command prompt and choose "Run As Administrator."
  3. In the Command prompt, run the following command, followed by ENTER:

"C:\Program Files (x86)\Common Files\Autodesk Shared\AdskLicensing\Current\helper\AdskLicensingInstHelper.exe" change -pk PRODKEY -pv VER.0.0.F -lm "" -ls "" -lt""

Note:

  • Replace PRODKEY with the product key correspondent to your product(s). See Look Up Product Keys for the full list.
  • Replace VER with the version you are using. E.g. 2020 for AutoCAD 2020.
  • Repeat this step for each software you need to reset.
  1. Open Registry Editor (Start > type regedit > ENTER).
  2. Navigate to HKEY_CURRENT_USER\Software\FLEXlm License Manager.
  3. On the right-side, verify of the ADSKFLEX_LICENSE_FILE key exists. If yes, remove it (right-click > Delete).
  4. Run the software again.
  5. Select Multi-user in the Let's Get Started screen.
  6. Follow the steps to connect to your license server.

Do You Need Help with Your Device?

Our Team of Experts May Help
Troubleshoot.Tech Experts are There for You!
Replace damaged files
Restore performance
Free disk space
Remove Malware
Protects WEB browser
Remove Viruses
Stop PC freezing
GET HELP
Troubleshoot.Tech experts work with all versions of Microsoft Windows including Windows 11, with Android, Mac, and more.

Share this article:

You might also like

nslookup works but ping fails in Windows
nslookup is a command-line tool that helps in finding the DNS records of a website. It sends a name server query to the DNS and obtains the corresponding IP address. Aside from that, it can also perform some complex functionality such as finding details about FTP server, Mail server and many more but most of them are used by administrators. The best thing about nslookup is that it queries the DNS server directly and it does not rely on the cache. On the other hand, there is another tool called PING that is used to verify connectivity. PING sends a packet of information to the IP address or Domain and gets back a response in the form of packets. So if everything goes well, all packets are received but if not, it will help you find out where the delay in the network exactly is. However, the ping command does not always attempt a DNS lookup which means that it might be using the DNS cache and use the IP address available in that table. Although both nslookup and PING help you in identifying the host or IP address, however, they don’t always work and sometimes fail. So if your nslookup works but ping fails on your Windows 10 PC when querying the IP address of a website then it could be caused by many reasons. It could be that the nslookup queries work for you but when you try to use PING, it fails. For instance, if you open the abc.com website, here’s how it will look like:
nslookup xyz.com Server: dns.company.com Address: 192.168.1.38 C:> ping xyz.com Ping request could not find host xyz.com. Please check the name and try again.
The domain is converted into an IP address and then data is sent to that IP address when you use PING. So when a reply comes back it means that the data is going back and forth to that domain without any problem. However, if the DNS fails to resolve the IP address of the website or if your PC does not attempt a DNS lookup, you will receive a similar error message that says, “Could not find host” and so on. To resolve this issue, here are some options that might help.

Option 1 – Reset Winsock, TCP/IP & Flush DNS

Resetting Winsock, TCP/IP, and flushing DNS might help you resolve the issue with nslookup and PING. To do so, follow these steps:
  • Right-click on the Start button and click on Command Prompt (administrator) so you can pull up an elevated Command Prompt.
  • After that, execute each one of the commands listed below. And after you typed in one after the other, you have to hit Enter.
  1. netsh winsock reset – type in this command to reset Winsock
  2. netsh int ip reset resettcpip.txt – type in this command to reset TCP/IP
  3. ipconfig /flushdns – type in this command to flush the DNS cache
  • Next, restart your PC and check if the problem’s fixed.

Option 2 – Force Windows to do a DNS lookup using FQDN

  • Go to Settings > Network & Internet > Status > Change adapter options.
  • From there, right-click on the network and select Properties.
  • Next, in case you’re using IPv6, from the list of connections available in the list, select Internet Protocol Version 4.
  • Then click on Properties and click Advanced.
  • After that, switch to the DNS tab and select “Append these DNS suffixes (in order)” and click on the Add button and then add “.” as a suffix so that each time you query using PING and another tool, it will add a “.” at the end and will force the lookup.

Option 3 – Make sure that there is only one default gateway

If your computer has more than one NIC connected and there are multiple default gateways, then it will most likely create confusion which is why you need to remove the default gateway from the configuration of all NICs and make sure that there is only one default gateway.

Option 4 – Use the Google Public DNS

You might want to change your DNS to Google Public DNS as it could also help you in fixing the nslookup and PING issues. To do so, follow the steps below.
  • The first thing you have to do is right-click on the network icon in the Taskbar and select Network and Sharing Center.
  • Next, click on the “Change Adapter Settings” option.
  • After that, search for the network connection that you are using to connect to the internet. Note that the option might be “Wireless Connection” or “Local Area Connection”.
  • Right-click on your network connection and click on Properties.
  • Then select the new window to choose the “Internet Protocol 4 (TCP/IPv4)” option.
  • After that, click on the Properties button and click the checkbox in the new window for the option “Use the following DNS server addresses”.
  • Type in “8.8.8.8” and “8.8.4.4” and click OK and exit.

Option 5 – Check the Windows Host file

You can also try to cross-check the Windows Hosts file to find out if the website you are trying to open has been blocked, because if it is, then it’s no wonder why PING fails even when nslookup works. There are instances when some third-party application modifies the file and adds some websites to the blocklists. So if the website is indeed blocked, you need to remove it from the list.

Option 6 – Delete the WLAN Profiles

Deleting the WLAN Profiles might be a good idea if you are not able to connect to the internet on your computer and if you’re using Wi-Fi. It could be that the networks that were connected previously have gone rogue which is why it is not connecting properly. And so deleting the WLAN profiles might help you in fixing the issue with nslookup and PING.

Option 7 – Reinstall the Network Adapter Drivers

  • Tap the Win + R keys to launch the Run window and then type in the “msc” command and hit Enter to open the Device Manager window.
  • Under the Device Manager, you will see a list of drivers. From there, look for the Network Adapters and expand it.
  • Then right-click on each one of the Network drivers and select “Uninstall device”.
  • Restart your PC.
Read More
Fix Orange Screen of Death Error in Windows
The Windows 10 Orange Screen of Death, unlike Blue Screen of Errors, is quite an uncommon error where the hardware is the culprit which is mostly caused by some issues with the GPU. If you are currently facing this problem, then you’ve come to the right place as this post will guide you on what you can do to fix it. There have been reports from users that the Orange Screen of Death is caused by various reasons. Some users reported that they encountered Orange Screen of Death when they were watching a YouTube video, while some were not able to boot into their Windows 10 PCs and encountered an error instead of that either says, FAULTY_HARDWARE_CORRUPTED_PAGE or WHEA_UNCORRECTABLE_ERROR error. In addition, this error can also occur when your computer wakes up from Sleep or while using BitLocker, or while you use a second monitor. Whatever the case is, you can try updating your drivers or lower the clock speed of the GPU. You could also try to fix the DRIVER_IRQL issue in case it’s the one that triggers the error or performs Automatic Repair or uninstalls any recently installed software.

Option 1 – Update your Graphics card drivers

One of the possible reasons why you’re getting the Orange Screen of Death error is most likely related to the Graphics card drivers in your computer. Thus, the first thing you can do to resolve it is to update these drivers by following these steps:
  • First, boot your computer into Safe Mode.
  • After that, tap the Win + R keys to launch Run.
  • Type in msc into the box and tap Enter or click OK to open the Device Manager.
  • After that, a list of device drivers will be displayed. From there, look for the Display Adapters and click on them.
  • After that, right-click on each entry under the Display Adapters and select the “Uninstall Device” option from the menu.
  • Now restart your computer.
  • After restarting your computer, go to the Settings app and Check for Updates in the Windows Update section.
Note: You also have the option to go directly to the website of your graphics card manufacturers like NVIDIA, Intel, or AMD and go to the section called Drivers then check if there’s a new available update – if there is, download and install it.

Option 2 – Try to uninstall software you’ve installed recently

If you have installed a software or two recently and then suddenly encounter this Orange Screen of Death, then they are most likely the culprits. The best thing you can do is to first check the System Log in the Event Viewer for any additional information in case it’s not the GPU but some other driver or device that’s causing the error. Once you have identified the culprits, uninstall them and see if the error is fixed.

Option 3 – Try disabling Overclocking

If overclocking is enabled, you might have to disable it as some users reported that the WHEA_UNCORRECTABLE_ERROR 0x00000124 error started to appear right after overclocking. To disable it, follow the steps below.
  • Go to the Start Menu and open Settings.
  • Next, select Update and Security and go to the Recover tab.
  • From there, click on Restart now in Advanced startup. This will restart your computer.
  • Once you’re in the Advanced startup, go to Troubleshoot and then select Advanced Options.
  • From there, select the UEFU Firmware Settings.
  • Now click on Restart. Once your computer has restarted, it will automatically open BIOS.
  • From the BIOS, go to the Advanced tab and navigate to Performance and then look for Overclocking.
  • Once you’ve found Overclocking, make sure that it is disabled. If it’s not, then disable it and then save the changes made by tapping the F10 key.
  • Start your computer normally and check if the WHEA_UNCORRECTABLE_ERROR 0x00000124 error is now fixed.

Option 4 – Use the Driver Verifier Manager

The Driver Verifier Manager is another tool in Windows that could help you fix driver-related issues. And so if you want to fix the Wdf01000.sys Blue Screen error, you need to use the Driver Verifier Manager:
  • Type in the keyword “Verifier” in the Cortana search box to search for Verifier in Windows 10.
  • After that, select the option “Create custom settings”.
  • Make sure that you have checked everything except the options “DDI compliance checking” and “Randomized low resources simulation”.
  • Next, select the option “Select driver names from a list” option.
  • Afterward, you have to select all the drivers from any unofficial or third-party provider. To simply put it, you have to select all the drivers that are not supplied by Microsoft.
  • Then click on the Finish button.
  • Open Command Prompt as administrator and execute this command – verifier /querysettings
  • The command you just executed will display the Driver Verifier settings so if you see any of the flags enabled boot your Windows 10 PC into Safe Mode.
  • Open the Command Prompt as admin again and run this command – verifier /reset
  • The command will reset the Driver Verifier. Once the process is done, restart your PC and check.

Option 5 – Try to run the Automatic Repair Utility

You might also want to use Automatic Repair in fixing the error. To do so, follow the steps below.
  • You can start by creating and booting from a bootable Windows 10 USB Stick.
  • After that, click on Repair your computer located on the bottom left corner when you are on the initial Windows Startup screen.
  • Next, click on Troubleshoot, and then on the other screen, click the Startup Repair option.
  • Now select the operating system you want to repair. Once you do that, it will start to repair your operating system. Wait until the process is completed and then check if the problem’s now fixed.
Read More
How to Fix 0x0000001A Error Code in Just a Few Clicks!

What is 0x0000001A Error Code?

The 0x0000001A is a severe memory management blue screen of death error code. This is Windows error is also called a Stop code The system is automatically forced to reboot state which means any unsaved work is likely to be lost. This error code pop-up locks you out of the program running on the screen and prevents you from working on it.

Solution

Restoro box imageError Causes

Experiencing error codes on your PC is an unusual activity that triggers that there is definitely something wrong with your system which should be repaired before it becomes a serious threat. The underlying causes of each error code are different. When you come across a 0x0000001A error message this triggers several issues on your PC but largely it’s related to defective or mismatched RAM (Random Access Memory). This could be due to disk De-fragmentation, cluttered registry, and overheating of PC hardware, or perhaps the power supply units that have been used to overcapacity which prompts your PC to show a 0x0000001A error message on your screen. In addition to this, another reason could be a fault in the BIOS motherboard that could be outdated. No matter what the underlying cause of the 0x000001A may be, it is imperative to get it resolved as it seriously damages your computer and leads to system failure.

Further Information and Manual Repair

Restoro is the best way to resolve almost all types of error codes including 0x0000001A in just a few clicks. It is a multi-functional PC registry cleaner that serves as a one-stop solution for all PC issues. This tool can be used to resolve the blue screen of death errors like 0x0000001A in seconds and help you resume and get access to the program that you were working on before you experienced the error code. With this helper, you don’t need to have the technical expertise or sound knowledge about the underlying cause of 0x0000001A. This is an intuitive and advanced tool with built-in cutting edge technology that scans and identifies the cause of 0x00000001A and fixes it right away. It has a neat design layout and a user-friendly interface that is easy to use for even novice users. Restoro registry cleaner cleans up registry disk space, occupied by unnecessary files including junk files, invalid registry entries, temporary internet files, and entries of uninstalled programs that are still present in the registry. It cleans and clears up disk space and wipes out clutter stored in the registry of your system which is likely to trigger RAM and memory mismanagement issues triggering an error code 0x0000001A pop-up message. Restoro is feature-filled which makes it multi-functional.  It is safe, secure and efficient. For optimum data security during repair, it creates backup files. This helps recover data in the event of data loss during repair, which is quite rare. So what are you waiting for? Download Restoro Registry Cleaner today and resolve the error pop-up 0x0000001A now!
Read More
Fix 169 IP address error in Windows 10
169 IP address error can stop your computer from connecting to the internet which could be a very frustrating experience. In this guide, we will cover simple but effective tips on how to fix this error so you can continue with internet use.
  1. Reconnect your Modem or Router

    Simple and sometimes effective solution, unplug and plug back in modem or router so IP is fetched again, it is very likely that computer will pick right IP address with this stunt.
  2. Use built-in Windows Network troubleshooter

    Press ⊞ WINDOWS + X top open secret menu Go to settings Go to Network & Internet Inside click on Network troubleshooter Follow onscreen instructions After the troubleshooter ends reboot your PC
  3. Reconfigure IP address

    Press ⊞ WINDOWS + R to open the run dialog Inside run dialog type ncpa.clp and press ENTER Right-click on your network adapter and select properties Uncheck Internet Protocol Version 6 (TCP/IPv6) and click on OK Now press ⊞ WINDOWS + X and click on Command prompt (admin) In command prompt type and after each line press ENTER netsh winsock reset catalog netsh int ip reset reset.log ipconfig /release ipconfig /renew Reboot your computer
  4. Restart DHCP client

    Press ⊞ WINDOWS + R to open the run dialog In run dialog type services.msc and click on OK Find DHCP client Right-click on it and choose Restart Reboot PC
  5. Reinstall Network Adapter

    Press ⊞ WINDOWS + X to open the windows menu Click on Device Manager Expand Network Adapter and right-click on wireless or ethernet adapter, click on Uninstall device Reboot the computer to automatically reinstall the device driver
  6. Reset IP and subnet mask

    Press ⊞ WINDOWS + R to open the run dialog In run dialog type in ncpa.cpl and press OK Right-click on your network adapter and select properties Uncheck Internet Protocol Version 6 (TCP/IPv6) Double click on Internet Protocol Version 4 (TCP/IPv4) Select Use the following IP address and change it to 192.168.0.1 Change Subnet mask to 255.255.255.0 Leave default gateway blank Click OK to save changes
Read More
How to Fix KMODE_EXCEPTION_NOT_HANDLED Error On Windows 10

KMODE_EXCEPTION_NOT_HANDLED – What is it?

Some users installing or upgrading to Windows 10 experienced the theKMODE_EXCEPTION_NOT_HANDLED Blue Screen of Death (or commonly known as BSOD) error. This error can be due to different types of things, ranging from software to driver issues. When you experience this BSOD error while trying to install Windows 10, it will prompt you to restart your computer every single time you experience it. In most cases, you will also not be able to proceed with the Windows 10 set-up.

Solution

Restoro box imageError Causes

The “KMODE_EXCEPTION_NOT_HANDLED” error is normally caused by:

  • Hardware incompatibility
  • A faulty device driver or system service

Further Information and Manual Repair

You won’t be able to successfully upgrade or set up Windows 10 if you continue to encounter this BSOD error. Note that this error will always prompt your computer to restart every time it happens, preventing you from completing the Windows 10 set-up.

If you’re not tech-savvy or not capable of debugging this issue, it’s highly advisable to proceed with the basic troubleshooting techniques available in this link.

After troubleshooting, below you’ll find a few solutions to rectify the issue.

Method 1 – Check The Cause of The BSOD Error

Two common causes of the KMODE_EXCEPTION_NOT_HANDLED issue are hardware incompatibility and faulty device driver or system service.

If you experience this error, check first if any of your newly installed hardware is compatible with Windows 10. You can find the required hardware for Windows 10 from this link

If all your hardware is compatible with Windows 10, you might need to check the device driver or system service. Review the bug check message. If any of the drivers you have is listed in the message, either disable or uninstall them before upgrading or setting up Windows 10.

You might also find it useful to check the System Log available in the Event Viewer for other error messages that can help you figure out the driver or device that’s causing the error. Running hardware diagnostics can also be useful.

Method 2 – Disable (or preferably uninstall) Software Before Upgrading

If you’re upgrading Windows 10 from Windows 7 or Windows 8.1, you might need to disable or uninstall the software first. First, try uninstalling your Antivirus utility before starting the upgrade. Restart a few times before starting the Windows 10 installation. If you’re upgrading using the Windows 10 update, make sure that you disconnect from your Wi-Fi or Internet LAN (Ethernet) connection as soon as the download reaches 100% before attempting to start the set-up. Other users also reported that the cause of the KMODE_EXCEPTION_NOT_HANDLED issue is BitDefender. If this is what happened in your case, it will show in the error message such as KMODE_EXCEPTION_NOT_HANDLED (bdselfpr.sys). Users reported that a common solution for this is renaming the file. In the case of BitDefender, try renaming it to bdselfpr.s__. However, make sure to do this cautiously. Sometimes, renaming a file will even do more damage than good.

Method 3 – Disable/Disconnect From Hardware

If you’re connected to any general USB devices (such a smart card reader), disable it. If your computer is connected to other external devices, disconnect all of them. Examples of this include gaming controllers, printers, external hard disk, USB keys, and other non-essential devices).

Method 4 – Other Troubleshooting Steps

Other troubleshooting steps include:

  • Upgrade using an .ISO file, instead of directly upgrading from Windows Update. When you do this, make sure you’re disconnected from the Internet during installation. If the process started and you forgot to disconnected, it’s best to restart the installation.
  • If you’re connected to a domain while trying to set up Windows 10, disconnect and use a local account.
  • If you’re using a SCSI hard disk, connect a thumb drive with the drivers for your storage device. While Windows 10 is setting up, click on the Custom Advanced Option. Using the thumb drive, use the Load Driver command to load the SCSI drive.
  • Another possible cause of this error is due to BIOS incompatibility. BIOS issues can be solved by upgrading your version of your system BIOS. If you don’t know how to do this, refer to your BIOS manufacturer’s website.

Method 5 – Use A Trusted Automated Tool

If you still experience the error after doing the methods above, you might want to try a powerful and trusted automated tool to fix the job.

Read More
Fix mfewfpk.sys, Epfwwfp.sys Errors in Windows
If you suddenly encounter a Blue Screen error that points out to either the mfewfpk.sys and epfwwfp.sys files, then this post might help. Both of these files are created by third-party software. The mfewfpk.sys file is created by the McAfee security software while the epfwwfp.sys is created by the ESET Antivirus. These files are residual files and sometimes it blocks upgrading Windows 10. Aside from blocking Windows 10 upgrade/update, these files can also cause a Blue Screen error after an upgrade which leaves your Windows 10 computer useless. When you get a Blue Screen error caused by any of these files, you will see an accompanying error message that states, “DRIVER IRQL NOT LESS OR EQUAL”. To fix this Blue Screen error, you can check out the suggestions laid out below but before you do that, you need to create a System Restore point first as it can help you undo any unwanted changes. In addition, make sure to also boot your computer into Safe Mode with Networking before you troubleshoot.

Option 1 – Try to remove the epfwwfp.sys file

You can try to remove the epfwwfp.sys file using Command Prompt. To do so, refer to the following steps:
  • Right-click on the Start button and click on Command Prompt (Admin) from the menu to open Command Prompt with admin privileges.
  • Next, type the following command and hit Enter to delete the epfwwfp.sys file:
DEL /F /S /Q /A “%systemroot%System32driversepfwwfp.sys”
  • After the scan is completed, restart your computer and see if it fixed the Blue Screen error.
Note: You can also use the ESET AV Remover tool to uninstall Eset security software to remove the epfwwfp.sys file.

Option 2 – Try to remove the mfewfpk.sys file

The same with the first option, you can remove the mfewfpk.sys file using CMD.
  • First, right-click on the Start button and click on Command Prompt (Admin) from the menu to open Command Prompt with admin privileges.
  • After, type the following command and hit Enter to delete the epfwwfp.sys file:
DEL /F /S /Q /A “%systemroot%System32driversmfewfpk.sys”
  • Once the scan is completed, restart your computer and see if it fixed the Stop error.

Note: You also have the option to remove the mfewfpk.sys file using McAfee Product Removal tool to uninstall the McAfee security software. All you have to do is download the McAfee Product Removal tool and run it and then follow the onscreen instructions to install it. Once it is installed, click on Next. After you select the radio button to agree to the terms of use, click on Next once again. Finally, restart your computer and check if it is able to resolve the problem or not.

Option 3 – Run the Blue Screen Troubleshooter

Troubleshooting Blue Screen of Death errors wouldn’t be complete without the Blue Screen troubleshooter. As you know, it is a built-in tool in Windows 10 that helps users in fixing BSOD errors. It can be found on the Settings Troubleshooters page. To use it, refer to these steps:
  • Tap the Win + I keys to open the Settings panel.
  • Then go to Update & Security > Troubleshoot.
  • From there, look for the option called “Blue Screen” on your right-hand side and then click the “Run the troubleshooter” button to run the Blue Screen Troubleshooter and then follow the next on-screen options. Note that you might have to boot your PC into Safe Mode.

Option 4 – Try running the DISM tool

You can try running the Deployment Imaging and Servicing Management or DISM tool to fix the Blue Screen error. Using this built-in tool, you have various options such as the “/ScanHealth”, “/CheckHealth”, and “/RestoreHealth”.
  • Open the Command Prompt with admin privileges.
  • Then type in the following commands and make sure to hit Enter right after you type each one of them:
    • Dism /Online /Cleanup-Image /CheckHealth
    • Dism /Online /Cleanup-Image /ScanHealth
    • exe /Online /Cleanup-image /Restorehealth
  • Do not close the window if the process takes a while as it will probably take a few minutes to finish.
Read More
Setup has failed to determine install choices
Running the Windows Setup does not always go smoothly as you could encounter some errors along the way. One of these errors is the “Something happened, Setup has failed to determine supported install choices” error. The only given option in such cases is to click the Close button and exit the setup. This kind of error in Windows setup can occur when you try to downgrade to the previous version of Windows using the built-in mechanism. This error could be caused by a corrupted image or it is also possible that the set of files are incomplete. Aside from that, it could also be due to compatibility issues or that the module used to downgrade the Windows operating system is not configured properly. To fix this error, you have to run the Windows Setup program in compatibility mode so that you can downgrade Windows. You could also use the image for the lower version of Windows that’s available on the official site of Microsoft. But before you do any of these, make sure that you’re logged in as an administrator. To fix the “Something happened, Setup has failed to determine supported install choices” error, follow the given options below sequentially.

Option 1 – Try to run the Installer of the downgraded version in Compatibility Mode

This is the first thing you can try to resolve the issue instead of going right ahead on making a bootable device. So if you are downgrading Windows, you can try to run the installer in the compatibility mode for that specific Windows version.
  • Look for the setup file.
  • Once you find it, right-click on it and select Properties from the context menu.
  • After that, go to the Compatibility tab and mark the checkbox for “Run this program in compatibility mode for:” and from the drop-down list, select either Windows 7 or Windows 8.
  • You also have to check the “Run as administrator” option.
  • Now click the Apply button and then click OK to save the changes made and check if it has resolved the issue or not.

Option 2 – Try to troubleshoot compatibility

This option is almost the same as the first one except it is an alternative way of fixing the “Setup has failed to determine supported install choices” error in case the first one didn’t work. In this option, you will troubleshoot the compatibility issue.
  • Look for the setup file.
  • Then right-click on it and select the “Troubleshoot compatibility” from the context menu.
  • After that, click on the “Try recommended setting” option. Once the process is done, the error message should be gone.

Option 3 – Run the DISM tool

You can run the DISM tool as well to help fix the error code 0x80244022 during Windows Update. Using this built-in tool, you have various options such as the “/ScanHealth”, “/CheckHealth”, and “/RestoreHealth”.
  • Open the Command Prompt with admin privileges.
  • Then type in the following commands and make sure to hit Enter right after you type each one of them:
    • Dism /Online /Cleanup-Image /CheckHealth
    • Dism /Online /Cleanup-Image /ScanHealth
    • exe /Online /Cleanup-image /Restorehealth
  • Do not close the window if the process takes a while as it will probably take a few minutes to finish.

Option 4 – Try using the image from the official site of Microsoft

If none of the options given above worked, you can try to use the image from Microsoft’s official site. This would help, especially if the error is caused by a corrupted image or image folder with incomplete files.
Read More
Guide to Resolving the Msvcr71.dll Error Code

Msvcr71.dll Error - What is it?

Msvcr71.dll is a dynamic library link that belongs to the Microsoft Visual C Runtime library. This file is a core Windows component used by numerous Windows applications like Microsoft Office version 2002 and 2003, Windows XP Media Center, and Windows XP Tablet PC Edition. The Msvcr71.dll error commonly occurs when two applications share the same DLL file. When an application is deleted sometimes the Msvcr71.dll file is also deleted which is associated with two applications on your PC. So, when you try to run the other application you come across the Msvcr71.dll error on your system. The error also occurs when you try to install new programs or update the old program versions. This also misconfigures the DLL files and results in the Msvcr71.dll error. Msvcr71.dll error messages are often displayed as the following:
  • “This application has failed to start because Msvcr71.dll was not found.”
  • “Mscvr71.dll is a bad windows image. Please check against your installation diskette.”
  • “Cannot find [PATH]msvcr71.dll"
  • "The file msvcr71.dll is missing."

Solution

Restoro box imageError Causes

Deletion of the Msvcr71.dll file is one cause for the Msvcr71.dll file error. However, this error can also be generated due to other causes such as:
  • Corrupt, missing, or misconfigured msvcr71.dll file
  • Damaged and missing .dll files
  • Corrupt runtime code library
  • Registry issues
  • Malware attack and viral infection
  • Msvcr71.dll error codes usually occur on Windows versions XP and Vista.

Further Information and Manual Repair

Here are different ways to resolve the Msvcr71.dll error code on your system:

1. Reinstall the program/application that is causing the Error to Pop up on the Screen

When this error code occurs due to misconfigured or missing the Msvcr71.dll file, try reinstalling the program/application that is causing the error to pop up on your screen. When doing this, make sure there is no problem with the setup files from the disk you are performing the installation on your PC.

2. Check the Recycle Bin and Restore the Deleted File

If the Msvcr.dll file was deleted accidentally when you uninstalled a program on your PC, then the deleted file is most likely to be in the recycle bin. Check it and if you find it, restore it. Once the file is restored try running the application again.

3. Scan for Malware and Viruses

Install an antivirus and scan for malware and viruses. This software can also corrupt DLL files and runtime code libraries. However, this is not the best solution especially if you already have too many programs installed on your PC. New program installations cause more complications and besides antivirus are infamous for slowing down PC speed.

4. Repair the Corrupt Registry

If the three methods discussed above don’t help you resolve the Msvcr71.dll error code on your system, then this means the cause of the error is more critical than you think. The error is triggered by a corrupt and damaged registry. If this issue is not addressed timely, it can result in system failure and a fatal crash. To resolve the error code Msvcr71.dll, you need to repair the corrupt registry. And the best way to go about it is to download Restoro Restoro is a user-friendly, highly functional, and multi-functional repair tool integrated with high speed and powerful utilities such as a registry cleaner, system stability scanner, Active X and class error module, and an antivirus. It also functions as a system optimizer. It is the answer to your entire PC-related errors and issues. The automated and intuitive algorithm deployed inside this tool enables it to detect all registry errors and issues generating Msvcr71.dll error. DLL files often get damaged due to data overload, disk fragmentation, and malicious files saved in the registry. The registry cleaner removes all the unnecessary and obsolete files from the registry, clears up disk space, and repairs defragmented, damaged, and misconfigured disks. DLL files including Msvcr71.dll and also fixes the registry. It’s an in-built antivirus scan and removes viruses and the system optimizer feature ensures that your PC runs at its optimum speed. It is safe, bug-free, efficient, and easy to use.  It runs smoothly on all Windows versions. Click here to download Restoro and resolve the Msvcr71.dll error on your PC.
Read More
Enable or Disable Optional Windows Features
As you know, Windows operating system comes with tons of features. Some of which are not intended to be used by normal customers or users directly which means that only a small percentage of the huge user base of the operating system leverages the use of such features. However, they’ve added some major value to the feature list of the operating system. You can find these features under the “Turn Windows Features on and off” option. This indicates that if you want to, you can just type in “Turn Windows Features on and off” in the search box and then enable any feature that you want to enable. Aside from that, there are other ways you can disable or enable the optional Windows Features in your Windows 10 computer.

Option 1 – via Control Panel

  • Open Control Panel and select Uninstall a Program.
  • After that, select the “Turn Windows features On or Off” option on the left side.

Option 2 – via Command Prompt

  • Tap the Win + X combination on your keyboard or right-click on the Start button and then click on Command Prompt (Admin). Alternatively, you can also type “cmd” in the Cortana search box and right-click on the Command Prompt icon, and select the “Run as administrator” option.
  • If a User Account Control or UAC prompt appears, click on Yes.
  • Next, type in the following command to see the list of the available features.
DISM /online /get-features /format:table | more
  • Now all you have to do is copy the name of the feature that you want to enable and for you to do that, you need to execute the following command:
DISM /online /enable-feature /featurename:[Enter the name of the feature here] –All
Note: Now if you want to disable a feature that’s already enabled in your computer, refer to these sub-steps:
  • First, you need to check what features are enabled, and for you to find out, enter this command: DISM /online /get-features /format:table | find “Enabled" | more
  • And if you want to check the detailed information about a particular feature, you can enter this command: DISM /online /get-featureinfo/featurename:[Enter the name of the feature here]

Option 3 – via Windows Powershell

As you know, the Windows Powershell is a very important tool in Windows 10, and a powerful one at that since you can do a lot of things using this command line. So while you use this tool you need to populate the list of available features first and then you have to download the feature your desired feature.
  • Search for PowerShell in the Cortana search box and then run it with administrator privileges.
  • Next, type in the following command to populate the list of available features:
Get-WindowsOptionalFeature –Online
  • After that, enter the following command to install any feature you want to enable from the list of available features:
Get-WindowsOptionalFeature -Online -FeatureName *Type feature name*
  • Now enter the following command to enable your desired feature:
Enable-WindowsOptionalFeature -Online -FeatureName “Type feature name” –all
  • And if you want to disable any enabled feature, just enter the following command:
Disable-WindowsOptionalFeature -Online -FeatureName “Type feature name”

Option 4 – via an external installation source

You also have the option to fetch the latest features from an updated offline source. The source could be an ISO any other type of image or just a folder. So you need to decide if you want to use Windows Powershell or Command Prompt.
  • If you want to use Command Prompt, just enter this command: exe /online /enable-feature /featurename:< /All /Source:<Enter the path of the feature here>
  • If you want to use Windows Powershell, use this command: Install-WindowsFeature –Source “<Enter the path of the feature here>”
Note: If you want to get the latest features, you need to get the latest version of the image of the operating system that you are trying to install the feature from.
Read More
What driver to use inside Windows
When clean Windows is installed or when you place new hardware in your computer usually Windows itself detects the device and installs its driver. The question that comes now is, do you keep that driver or do you install the manufacturer's one. In order to answer this question let's analyze what is difference between the two drivers and other factors which could influence your decision.

Difference between drivers

First of all, know that drivers Windows installs are also drivers from the device manufacturer which have gone through Microsoft quality control in order to be included in Windows itself. Now naturally question which occurs, what is the difference, well answer to that would be this: in Windows, you have stripped down driver, just a driver in order for Windows to know what device is plugged and how to use it, meaning that for example if you install printer device, you will be able to print documents and Windows will know it is a printer but ... You will not get the control panel for that printer where you can adjust the printer itself and all of its features like let's say paperweight, etc. So if you need these kinds of features in that case it would be better to install a complete driver suite from the manufacturer and get the whole package. Windows will recognize the RAZER mouse for example but you will not be able to change its colors of program custom buttons on it until you install RAZER drivers. One more important thing to note is that drivers which are in Windows are less updated than drivers from the manufacturer's site. That being said, if you prefer and want to have the latest drivers you will prefer to get them again from the manufacturer.

Conclusion

So it seems that manufacturer's drivers are always in some form of advantage and that you will always want them and most of the time this is true, as a matter of fact, the only time I could think that you could use bare down Windows drivers is when new drivers update breaks something in Windows and device start behaving improperly. in this particular case, it is better to roll back to the previous Windows driver which has passed Microsoft quality control and is working for sure. In any other case, you are better off with the latest manufacturers drivers If you would like to read more helpful articles and tips about various software and hardware visit errortools.com daily.
Read More
1 2 3 171
Logo
Copyright © 2023, ErrorTools. All Rights Reserved
Trademark: Microsoft Windows logos are registered trademarks of Microsoft. Disclaimer: ErrorTools.com is not affiliated with Microsoft, nor claims direct affiliation.
The information on this page is provided for information purposes only.
DMCA.com Protection Status