gentilkiwi / mimikatz

A little tool to play with Windows security

Home Page:http://blog.gentilkiwi.com/mimikatz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compile Error: LNK2001: _SystemFunction041

Coleiras opened this issue · comments

Any solution for the following error?

4>kuhl_m_misc_citrix.obj : error LNK2001: símbolos externos indefinidos _SystemFunction041
4>C:\Users\User\Downloads\mimikatz\Win32\mimikatz.exe : fatal error LNK1120: 1 externo não resolvidos
4>Projeto de compilação pronto "mimikatz.vcxproj" -- FALHA.

image
image

commented

Its unable to find a definition for an_systemfunction41 that has been referenced in your code. Which is not defined in your project.where the symbol is being referenced in your code, and either provide a definition for it or remove the reference to it. It's also possible that the symbol is being referenced in a library that you are linking to, in which case you will need to make sure that the library is properly linked to your project.

commented

Have you solved this problem yet? What should I do?

I have the same problem. Could you give any advise how to solve that issue?

commented

I have the same problem. Could you give any advise how to solve that issue?

This is because ntsecapi. h incorrectly declared the Function prototype. You can refer to https://blog.gentilkiwi.com/tag/systemfunction041 Make modifications