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 :) :)


How To Insert/Modify Album Art Photo On Songs

Hi buddies, So here after a long time(sry for t'at) I'm back with another cool tip of windows. Now here we'll learn how to put an image when a song is running i.e. making cover photos or changing album art. So many friends of me has asked same so many times. So here are the methods to put/replace default cover photo on song. This method works good on jet audio media player so first install one from the link below.
Download link :Jet audio player

HOW TO CHANGE ALBUM ART OF SONGS

Steps are:
1. Open Jet audio Media Player
2. Go to playlist and add songs on which you want to insert/modify cover photo.
    You can select as many songs you want
3. Select song(s) and right click on any one and select Edit-> Edit Tag.
    Or just use shortcut key "f4"
4.Go to "Picture" tab and now "browse" which picture you want to set on cover photo.
5. After selecting photo you can adjust the size of photo by click "Resize Image To Fit".
6. Now select "Basic" tab.
    Here you can modify Artist, Album etc also
7. After everything done click "OK".


Now open your song in any media player and you can see your defined pic as Album Art.

Another Unique Method To Change Album Art

Steps are:
1. Go to folder where all songs are stored.
2. Put an image there and rename it as "folder.jpg".
3. Open any song and there in album art you see that folder.jpg image.
Good luck and have fun !!! ☺☺☺

How To Make A Undetectable Virus In Windows OS


image1

In this post I will tell you how you can make a simple virus that can't be detected by any antivirus software. This is just a small windows prank. We actually are not making here a harmful virus, we just creating a programme which will shutdown the computer after the specified time.

{FREE} How To Hide Files and Folders(Win XP/7/8)

In my previous post we discuss about How To Make A Password Protected File/Folder. Now in this post I'll be showing you How to hide files and folders by giving it maximum security so no one can easily see it or impossible to access.
Most of the users have some private, personal and secret stuffs, that they wanna hide. But purchasing any software to do so is like killing ourselves. So now here, I'm about to guide you "How To How To Hide Your Secret Files Without The Use Of Any Software". 

There are many ways to do so each way have a different level of secrecy. So I'm going to tell you some of the ways. By just following these simple steps you are now going to hide your personal stuffs (GOOD ☻).

How To Make A Password Protected File/Folder


We all have some important data that we want to hide it from our friends, colleagues and even parents ☻☻. So Here I'm telling you the most easiest way to make a file/folder password protected in your computer, So no one can even saw what the file contains.

First of all to protect a file/folder you will need an archiving software called WinRAR. Download it from Here
Install it and continue to the procedures :)

Procedure To Make a File/Folder Password Protected:--

1. Select any file/folder which you want to make password protected.
2. Right click on it and select "Add to archive".

Create A Nameless Folder Anywhere in Windows OS

Here is a small trick of windows which shows you how to create a Nameless file/folder in your pc.


So steps are:
1. Select any file/folder or make a new one.
2. Right click(R/c) on it and select rename or press F2(shortcut key to rename).
3. Press and hold ALT+255 or ALT+0160.
4. Press enter.

You can see that there is no name in the folder/file you created above.
The simple logic behind that it would mark a space on that folder(ALT+255) is the code of space and it will not done by simple renaming with spacebar :p.

You can prank anyone by making an invisible folder look. Just change the icon of nameless folder to a blank icon(you will find in properties).


Even you can make any character to your favourite folder like heart, music, or any special symbol with ALT+number(1-255).
☺☺☺☻☻☻ You can try it in comment ☻☻☻☺☺☺

Hope you will like my post and leave a cool comment.
ThankYou :)

Create A Wifi Hotspot In Windows 8

Here is the guide to share your internet connection as a wifi hotspot:--


You need--
1. A laptop with good internet connection
2. A comaptible wifi adapter (Most laptops are come with this utility)
3. And a little brain :D

First open your windows with administrator account
To check whether your wifi adapter is working properly type the following command in CMD

How To Transfer Data Between Two Computers

In this post I will tell you how to transfer data b/w two computers through LAN cable.
Procedure:-
Firstly Check you have made straight cross cable properly.
Note: Both PC's have password on admin account

Tutorial:-
1. Connect LAN cable in both computers
2. Go to My computer properties and select remote settings
3. Check on allow remote connection and click on Ok
remote settings

4. Go to control panel->windows firewall.
5. In left side click on "Turn firewall on or off" in left side and select Turn Off firewall in both options.
firewall settings

6. Now go to Network connection in Control panel.
7. Select your Ethernet -> right click on it and go to properties.
8. Select TCP/IPv4 and click on properties.
Select "Use the following ip"
9. Give ip adress:
192.168.1.1
And subnet mask to:
255.255.255.0
And click ok and close...

IP address settings
PLEASE NOTE : DO THE ABOVE STEPS IN BOTH THE PC'S
Give second pc IP address to :
192.168.1.2
And same subnet mask..

10. Now to check connection open "cmd" in Run.
11. Type Command:
Ping 192.168.1.2(Second PC IP address)
If you get reply code it means your connection is working
And if you are getting "Request time out" error means connection is not made properly.

TO SHARE FILES AND FOLDERS:
1. Select drive/file/folder and right click on it->properties->sharing->advance sharing->share this folder
Now go to permission below this and click on allow for full control.
2. Click apply->ok->ok->close..
TO ACCESS IN ANOTHER PC:
1. Oper run and type:
\\192.168.1.2\drive name            (192.168.1.2 is second pc IP address whose file are shared)
And enter username and password of that computer...
                                                                  -------*---------

If you don't know how to make straight cross cable then please comment here and I'll tell you.
Hope you'll get knowledge on this topic. If you have any query/question feel free to ask... :)
THANKYOU...

How to Rotate Your Monitor Screen Without Any Software

How to Rotate Your Monitor Screen Without Any Software

Ever wanted to give your computer screen a twist without installing any extra software? Whether you're looking to prank a friend or just experiment with your display settings, rotating your monitor screen is easier than you might think. With just a few keyboard shortcuts, you can change your screen's orientation quickly. Here's how you can do it:

Rotate Your Screen with Keyboard Shortcuts

Most modern Windows systems come with built-in shortcuts that let you rotate your screen without the need for any additional software. Here's a simple guide to help you rotate your monitor screen:

  1. Press Ctrl + Alt + Left Arrow

    • Rotation: 90 degrees to the left
    • Effect: This will rotate your screen to the left, making it landscape mode with the top of the screen on the left side.
  2. Press Ctrl + Alt + Right Arrow

    • Rotation: 270 degrees to the right
    • Effect: This will rotate your screen to the right, effectively turning it upside down.
  3. Press Ctrl + Alt + Down Arrow

    • Rotation: 180 degrees
    • Effect: This will flip your screen upside down, making the bottom of the screen appear at the top.
  4. Press Ctrl + Alt + Up Arrow

    • Rotation: Returns to the normal view
    • Effect: This will restore your screen to its default orientation.

Why Use Screen Rotation?

  • Fun Pranks: Rotate your friend's screen and watch their reaction as they try to figure out what happened!
  • Work Tasks: Sometimes, rotating your screen can be useful for specific tasks like working with long documents or coding.

Important Notes

  • Compatibility: These shortcuts work on most Windows systems, but the exact functionality might vary depending on your graphics card and driver settings.
  • Resetting: If the shortcuts don’t seem to work, you can always go back to the default settings through your display settings in the Control Panel.

So go ahead and try rotating your screen! It’s a fun way to change things up and might just give you a new perspective on your work. If you're planning to prank a friend, just make sure they know how to switch it back!


 So try to rotate your screen and scare your friends... :-)

How to Fool Your Friends by Changing Your Processor's Name!

How to Fool Your Friends by Changing Your Processor's Name!

Hello Friends...

I’ve got a super funny trick to share today! Ever wanted to trick your friends into thinking you've got a super high-end processor like a Core-i10 or something even more insane? Well, you can easily do this by tweaking your processor’s name via the Registry Editor. It’s a harmless prank that’ll definitely get a few laughs. 😄

Steps to Change Your Processor’s Name:

  1. Open the Registry Editor:

    • First, you’ll need to access the Registry Editor. Just press Windows + R to open the Run dialog, type "regedit", and hit Enter.
  2. Navigate to the Processor Name String:

    • In the Registry Editor, navigate to the following path:
      • HKEY_LOCAL_MACHINE > HARDWARE > Description > System > CentralProcessor > 0.
  3. Modify the Processor Name:

    • Once you’re in the "0" key, you’ll see an entry named "ProcessorNameString" on the right side.
    • Right-click on "ProcessorNameString" and select "Modify".
    • Change the value to whatever processor name you want! Be creative—how about "Core-i10 Ultra Super Edition"? 😜
  4. Exit and Refresh:

    • After making the change, simply exit the Registry Editor and refresh your desktop. Your new processor name will show up in your system properties!

Important Note:

The next time you reboot your system or power it on, it will automatically detect the actual CPU configuration and reset the processor name to its default. So, this trick is perfect for a quick laugh but won't cause any permanent changes. Let your friend be fooled for a moment, and then watch their reaction when they realize the truth!

How to Download YouTube Videos: Simple Methods for PC and Mobile

How to Download YouTube Videos: Simple Methods for PC and Mobile
I often get asked by friends how to download YouTube videos, so I decided to put together a handy guide for all of you who want to save videos for offline viewing. Whether you’re using a PC or mobile device, there are several methods to choose from. Here are some easy ways to download your favorite YouTube content:

Methods to Download YouTube Videos

1. Using Internet Download Manager (IDM)

One of the most popular tools for downloading videos is Internet Download Manager (IDM). Once you install IDM, it integrates with your browser and will automatically detect and fetch videos you’re watching online. You can download the videos in various formats and resolutions.

  • How to Use:
    • Install Internet Download Manager.
    • Open YouTube and play the video you want to download.
    • IDM will offer download options in different formats and resolutions.

2. Using Speedbit Video Downloader

Speedbit Video Downloader is another great tool for downloading videos from YouTube. Once installed, it will add a toolbar to your browser that allows you to easily download videos.

  • How to Use:
    • Install Speedbit Video Downloader.
    • Navigate to the YouTube video you want to download.
    • Use the Speedbit toolbar to start the download.

3. Using "ss" Trick

A quick and simple method involves modifying the YouTube URL. Replace "www." with "ss" in the video link, and it will redirect you to savefrom.net, where you can choose from various download formats.

  • Example:
    • Original Link: http://www.youtube.com/watch?v=bvjHdhfnflkdsn
    • Modified Link: http://ssyoutube.com/watch?v=bvjHdhfnflkdsn
    • This will redirect you to SaveFrom.net with download options.

4. Using Offliberty

Offliberty is a straightforward online tool for downloading both YouTube videos and audio. Just copy and paste the video link into Offliberty’s website and click "OFF" to download.

  • How to Use:
    • Visit Offliberty.
    • Paste the YouTube video link into the provided field.
    • Click "OFF" to start the download.

Final Thoughts

These methods should cover most of your needs for downloading YouTube videos on both PC and mobile devices. Choose the one that best fits your preferences and enjoy your offline videos!

If you found this post useful, feel free to share it with your friends. If you have any other methods or questions, drop a comment below. Thanks for reading!