Computer Tips

Internet Webed: Computer Tips

Internet Webed: Computer Tips

Showing posts with label Computer Tips. Show all posts
Showing posts with label Computer Tips. Show all posts

How to Fix the "msvcr71.dll Not Found" Issue on Windows 11

If you’ve encountered the dreaded "msvcr71.dll not found" error while launching an application on your Windows 11 machine, you’re not alone. This error often occurs because a critical runtime file, msvcr71.dll, is missing or not in the expected location. In this blog post, we’ll walk you through a straightforward solution that resolved this issue for me on Windows 11.

msvcr71.dll not found

What Is msvcr71.dl?

msvcr71.dll is part of the Microsoft Visual C++ Runtime Library and is used by many older applications to perform standard C library functions. As software evolves, older runtime files like msvcr71.dll may no longer be included in modern systems, leading to errors when trying to run legacy applications.

Symptoms of the Issue

When the issue occurs, you might see an error message like:

  • "The program can't start because msvcr71.dll is missing from your computer."

  • "msvcr71.dll was not found. Reinstalling the application may fix this problem."


The Solution

After much troubleshooting, the solution turned out to be surprisingly simple: copying the required DLL files into specific directories. Here’s how I fixed the issue on my Windows 11 machine:

Step 1: Obtain msvcr71.dll and msvcp71.dll(this file if needed)

First, you’ll need a legitimate copy of the missing files:

  • If you have access to a working installation of the application on another system, copy the msvcr71.dll and msvcp71.dll files from there.

  • Alternatively, these files may be included in the application installer package or on the developer’s support website.

Important: Avoid downloading DLL files from untrusted third-party websites, as they may contain malware.

Step 2: Locate the Application’s Installer Folder

Identify the folder where the application is installed. Typically, this is under one of the following paths:

  • C:\Program Files\<Application Name>

  • C:\Program Files (x86)\<Application Name> (for 32-bit applications)

Step 3: Locate the Application’s Common Files Folder

Some applications also store additional files in a Common Files directory. For example:

  • C:\Program Files\Common Files\<Application Vendor>

  • C:\Program Files (x86)\Common Files\<Application Vendor>

In my case, extra application files were residing in a Common Files folder.

Step 4: Copy the DLL Files

  • Copy msvcr71.dll into the application’s installation folder.

  • Additionally, copy msvcp71.dll into the Common Files directory where additional application files are stored.

Step 5: Relaunch the Application

After copying the files, restart your application. It should now work without throwing the missing DLL error.


Why This Fix Works

Windows applications typically search for required DLLs in specific locations:

  1. The application’s installation folder.

  2. System directories like C:\Windows\System32 or C:\Windows\SysWOW64.

  3. Common Files directories if specified by the application.

By placing the DLLs in the application’s folder and its related directories, you ensure the application can locate and load these dependencies.


Troubleshooting Tips

If the issue persists:

  1. Check Permissions: Ensure you have administrative privileges to copy files into the required directories.

  2. Run as Administrator: Launch the application as an administrator to rule out permission issues.

  3. Verify the DLL Version: Ensure the msvcr71.dll and msvcp71.dll files match the version required by the application.

  4. Use Compatibility Mode: For very old applications, right-click the application executable, go to Properties > Compatibility, and enable compatibility mode for an older version of Windows (e.g., Windows 7).


Conclusion

The "msvcr71.dll not found" issue can be frustrating, especially when it prevents critical applications from running. By placing the required DLLs in the correct directories—the application folder and the Common Files folder—I was able to resolve this issue on my Windows 11 machine.

If you’re facing this problem, give this method a try, and feel free to share your experience or any additional tips in the comments below!

Fix MSI Error 1612: Resolving "Network resource that is unavailable"

If you’ve ever dealt with MSI (Microsoft Installer) errors, you know how frustrating they can be, especially when you encounter Error 1612. This error typically indicates that the installation source for the product is unavailable. It often appears with the message: "The feature you are trying to use is on a network resource that is unavailable." This blog post will walk you through a PowerShell script I’ve developed to fix this issue.

The network resource is unavailable

MSI Error 1612

Understanding MSI Error 1612

MSI Error 1612 usually occurs when the Windows Installer cannot find the installation source of a program. This can happen for several reasons:

  • The installation files have been moved or deleted.
  • The network location where the installation files reside is unavailable.
  • Incorrect registry entries that point to the wrong location.


The PowerShell Solution

To address MSI Error 1612, I developed a PowerShell script that automates the process of fixing the underlying issues. This script is hosted on GitHub and can be accessed here.

The script performs the following actions:

  1. Create the log file: It generated the MSI log during uninstallation.
  2. Get exact uninstallation path from log file: Captures the network path or local path where the msiexec is looking for the uninstall file.
  3. Tweak the uninstall with local MSI file: Using the file placed locally along with script, the script will tweak it to perform the uninstallation.


How to Use the Script

  1. Open README.md file: First, visit the GitHub repository and open readme.md file. 

  2. Follow the procedure as per mentioned in readme.md file

Share your feedback/queries on the github or comment here.



Resolving the Microsoft.VC90.MFC Installation Error on Windows

Resolving the Microsoft.VC90.MFC Installation Error on Windows


Are you encountering the frustrating error message "An error occurred during the installation of assembly Microsoft.VC90.MFC..." while trying to install a Windows application? Fear not, as there's a simple fix that might just save the day!
Recently, many users have reported facing this issue, which often halts the installation process of various applications. The error message typically reads: "An error occurred during the installation of assembly Microsoft.VC90.MFC, version='9.0.30729.4148', publicKeyToken='1fc8b3b9a1e18e3b', processorArchitecture='amd64', type='win32'. Please refer to Help and Support for more information."

The root cause of this problem lies in the Windows Module Installer service, which is responsible for installing, modifying, and removing system components and Windows updates. For some reason, this service might be disabled or not running on your system, causing the installation error.

But fret not, as the solution is straightforward:

1. **Accessing the Services Management Console**: To enable and start the Windows Module Installer service, you'll need to access the Services Management Console. You can do this by pressing the Windows key + R to open the Run dialog, then typing "services.msc" and hitting Enter.

2. **Enabling the Service**: In the Services Management Console, scroll down to find the "Windows Module Installer" service. Right-click on it and select "Properties" from the context menu. In the Properties window, under the "General" tab, set the "Startup type" to "Automatic" from the drop-down menu. This ensures that the service starts automatically with Windows.

3. **Starting the Service**: After setting the startup type to Automatic, click on the "Start" button in the Properties window to immediately start the service. You should see a confirmation message indicating that the service has started successfully.

4. **Restart and Install**: Once the Windows Module Installer service is enabled and running, you may need to restart your computer to apply the changes. After the restart, try installing the application again. You should now be able to proceed with the installation without encountering the dreaded Microsoft.VC90.MFC error.

By following these simple steps, you can quickly overcome the obstacle posed by the installation error and get back to installing your favorite Windows applications hassle-free.

Remember, while technical glitches like these can be frustrating, there's usually a simple solution waiting to be discovered. With a bit of troubleshooting and perseverance, you can tackle even the most stubborn of errors. Happy installing!

How to Install ClickOnce Application Silently

How to Install ClickOnce Application Silently
command windows

ClickOnce is a powerful deployment technology that allows users to install and run applications with minimal user interaction. However, there are scenarios where you may need to install a ClickOnce application silently mainly when deploying in an organization with thousand's of machines using SCCM or other tools, without user prompts or confirmations. Fortunately, this can be achieved using a tool called ClickOnceSilentInstall.exe. In this blog post, we'll walk you through the steps to silently install a ClickOnce application using this tool.

What is ClickOnce?

ClickOnce is a Microsoft technology that simplifies the deployment of Windows-based applications. It allows applications to be installed and run with a single click from a web page, network share, or other deployment methods. One of its key features is the automatic update mechanism, which ensures that the application is always up to date.

Why Silent Installation?

Silent installation is beneficial in various scenarios, such as:

  • Enterprise Deployments: IT administrators can deploy applications across multiple machines without interrupting users.
  • Automated Setup Scripts: Silent installations can be part of automated setup scripts for setting up environments quickly.
  • User Experience: Avoiding multiple prompts and dialogs can lead to a smoother user experience.

Prerequisites

Before proceeding, ensure you have the following:

  1. The ClickOnce application deployment URL or the .application file path.
  2. ClickOnceSilentInstall.exe – This is the utility that enables silent installation. Link: Download ClickOnceSilentInstaller

Steps to Install ClickOnce Application Silently

Follow these steps to install a ClickOnce application silently using ClickOnceSilentInstall.exe:

Step 1: Download ClickOnceSilentInstall.exe

First, download ClickOnceSilentInstall.exe from a trusted source. Ensure the version you download is compatible with your environment and the ClickOnce application you intend to install.

Step 2: Prepare the ClickOnce Application URL

You need the deployment URL of the ClickOnce application or the path to the .application file. This URL is typically provided by the application vendor or can be found on the application’s download page.

Step 3: Execute the Silent Installation

Open a Command Prompt window with administrative privileges and navigate to the directory where ClickOnceSilentInstall.exe is located. Run the following command:

ClickOnceSilentInstall.exe "<ClickOnce_Application_URL>"

Replace <ClickOnce_Application_URL> with the actual URL of the ClickOnce application. For example:

ClickOnceSilentInstall.exe "http://example.com/MyApp.application"

Step 4: Verify Installation

After running the command, the ClickOnce application should install silently in the background. To verify the installation, you can check the Start menu or the installation directory specified by the ClickOnce deployment or search in the add or remove programs under control panel.

Advanced Options

ClickOnceSilentInstall.exe may support additional parameters for more advanced installation scenarios. Refer to the documentation provided with the tool for details on options such as logging, custom installation paths, and more. You can also use below command to get other install options:

clickoncesilentinstaller.exe /?

Conclusion

Silent installation of ClickOnce applications using ClickOnceSilentInstall.exe is a straightforward process that can greatly enhance deployment efficiency in various environments. Whether you're an IT administrator deploying applications across an organization or a developer setting up automated installation scripts, this method can save time and reduce user interruptions.

For any issues or further customization, consult the documentation of ClickOnceSilentInstall.exe or seek assistance from the application's support team. Happy silent installing!

By following these steps, you can streamline the deployment process and ensure a smooth, user-friendly experience. If you have any questions or run into issues, feel free to leave a comment below.

Ranz Mini Wireless Adapter USB Drivers


Hi All,

Here I'm including google drive download link for Ranz 802.11n mini wireless USB adapter. Ranz adapter provide the speed upto 450Mbps and with AP creation facility. With AP you can connect to any wireless network and then you can make a personal hotspot from the network. Although many wifi adapters like Qualcomm 300M does not provide this functionality.

This driver pack is zip file and you need to have winrar or 7zip to uncompress it. The driver pack inculdes drivers for Windows(x86/x64), MAC and Linux OS.

GDrive link: Ranz_Drivers

Ranz Mini Wireless USB Adapter
Ranz Mini Wireless USB adapter













Please do share any queries in the comment section box.

Fix: No internet, Secured Error while connecting to Wi-fi


Hi All, If you are facing the error where you want to connect to the personal hotspot or Broadband Wi-Fi but once connected, it shows, "internet connected, Secured" error under Wi-Fi access point list, then you can follow below simple steps to overcome the issue.

No internet Secured Error

1. Make sure that broadband/Mobile has an active internet connection. Do reboot broadband/Mobile once and try.

2. Make sure the IP setting are set to DHCP.

3. Make sure that you have checked both ipv4 and ipv4 in your interface properties. Unselecting ipv6 can cause this problem as most devices now works on ipv6.

4. Type "ipconfig /renew" without quotes in cmd or at run prompt.

5. Turn your firewall to default settings. Sometimes firewall may conflict in your internet connection.

6. Uninstall any VPN client if present in your machine.

Please do follow above steps one by one until the issue resolves.
Let me hear from you which option resolves your problem in below comment section.

Create a Windows 10 Virtual Machine with VMware Player and VirtualBox

Create a Windows 10 Virtual Machine with VMware Player and VirtualBox
Having a virtual machine on-hand can be useful for a variety of purposes, such as testing software or tweaks in a sandboxed environment that is separate from your primary operating system. A virtual machine can also help you to run older software that doesn't work with your new operating system, or simply exploring a new operating system altogether.
Windows 10 Virtual Machine with VMware Player and VirtualBox


Read Entire ArticleRead Comments



from TechSpot Reviews and Features https://ift.tt/2O4S4vi

HOW TO REMOVE SHORTCUT VIRUS WITHOUT ANY SOFTWARE

HOW TO REMOVE SHORTCUT VIRUS WITHOUT ANY SOFTWARE


Hello everyone, After a long time I'm posting this amazing trick and tip to remove shortcut virus from any safely removable media completely without the use of any software any effort needed.
Basically this virus does your files and folders to make them permanently hidden and sometimes we lose data also, now simply we are doing this trick to make them unhide permanently.
So going to the procedure for removing virus are here:

Here is the ScreenShot before removing virus it normally looks like : 






1.  Open CMD(Command Prompt) that black window :p
 open it by Win+R shortcut key


2. Type the commands shown as in screenshot.
    X: ('X' is your drive letter of any drive or media)
   
 attrib -r -h -s *.* /s /d


3. VOILA!!! you see that all your files and folders are now visible...
Enjoy this easy trick and share with your friends ☺☺







NOTE: ITS GOOD TO INSTALL A RELIABLE ANTIVIRUS IF SHORTCUT VIRUS AGAIN HAPPENS.

If you have any query then please comment below :)   
IF YOU LIKE THIS TRICK THEN MUST SHARE IT AND LIKE OUR FACEBOOK PAGE :) :)