Gabriel de Lima 0 Posted May 6, 2020 Share Posted May 6, 2020 Eu estou tentando abrir o IDA Pro no Windows 8.1 que instalei ontem, e to desde que atualizei o Windows update tentando abrir essa obra prima.... O Erro que da é o 0xc000007b... tentei varias DLL vc_Runtime x86/x64 e não vai... vi um tutorial no youtube sobre um programa: Depends que mostra um erro e fala as DLL Que não foram carregadas... dai copiei o nome de todas, botei elas no bloco de notas, e fiz um script em python pra baixar elas de um site... Tentei varias coisas e não consegui... se poderem ajudar.... Uso Windows 8.1 Pro Script em .py pra baixar as DLL: from bs4 import BeautifulSoup import requests, wget, time urlBase = "https://pt.dll-files.com" DLLList = open("DLL_List.txt","r") DLL_List = DLLList.read().splitlines() for DLL_Name in DLL_List: header = { RemoviOHeader } r = requests.get(urlBase + '/' + DLL_Name.lower() + '.html') if r.status_code == 404: print("Não foi possivel encontrar a DLL: {0} em: dll-files.com".format(DLL_Name)) continue if r.status_code == 200: DLL_Page = BeautifulSoup(r.content, 'html.parser') for DLL_Info in DLL_Page.find_all(class_="file-info-grid"): if DLL_Info.select("div.inner-grid > div.right-pane > p:nth-child(2)")[0].get_text() == '64': DL_Page = DLL_Info.select('div.download-pane > div.download-link > a') Download_Page = requests.get(urlBase + DL_Page[0].get('href'), headers=header) dl_page = BeautifulSoup(Download_Page.content, 'html.parser') Download_Link = dl_page.select("body > section.download-timer > div > article > div.text.right-float > p.backup-link > a")[0].get('href') Ti = time.time() print("Download Iniciado: {0}".format(DLL_Name)); wget.download(Download_Link) Tf = time.time() print("\nTempo de download: %.3f Segundos\n---------------------------" % (Tf - Ti)); break Quote Link to post Share on other sites
Fernando Mercês 0 Posted May 6, 2020 Share Posted May 6, 2020 Oi Gabriel! Que eu lembre o instalador do IDA já instala tudo que precisa. Se for original você pode postar no fórum deles, mas se for piratex aí fica difícil, pois o instalador pode estar zuado, pode até conter vírus, enfim, não sabemos. ? Abraço. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.