Jump to content
UBot Underground

[Code] How To Check If Your User Has The Ms Visual C++ Redistributable 2015 Is Installed


Recommended Posts

Hi,

 

 

Many Windows 7-10 users may not have the MS Visual C++ Redistributable Package installed on their machines. UBot 5 Stealth requires this to run your .exe. So just in case here is how to check for it programmatically.

if($not($file exists("{$special folder("System")}\\ucrtbase.dll"))) {
    then {
        comment("opens download page in default browser")
        python("","import webbrowser

webbrowser.open_new_tab(r\'https://www.microsoft.com/en-us/download/details.aspx?id=48145\')")
        alert("Please download and install this.")
    }
}

Basic but you get the idea you can be more specific of course.

 

######### Added 2017-02-15 use at your own risk

 

dAnother way to get all the run-times installed is to use the command line:

 

win key + cmd

then type

wmic product get name, version, installlocation

 

This will print out what is installed on the machine including the VS C++ distributions.

 

This site here shows how to install them with a .bat file.

http://asawicki.info/news_1597_installing_visual_c_redistributable_package_from_command_line.html

Read the comments may help you too.l

 

## added 2017-12-16

 

Also, you can have your user just  do this


Download
http://www.majorgeeks.com/files/details/visual_c_runtime_installer.html

Virus total
https://virustotal.com/en/file/f88a230abc7b99e966e6156339e3fe9796ccf4e3de0ddd3e5d846359d72bee65/analysis/

 

                 
site who is info

re	Registrant name	Registrant email	Registrant phone
majorgeeks.com	2000-04-07T19:14:03Z	2023-04-07T19:14:03Z	James Mcmahon	jim@mcmahon.cc	3154883721

Hope this helps!

CD

check if ms vs 2015 is installed.ubot

  • Like 3
Link to post
Share on other sites
  • 3 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...