Ptkatz
Ptkatz
Can you change the shortName of lands in "word-map-index.json" to CountryISOCode? For example: China -> cn, Japan -> jp, United States -> us
作者你好,我觉得可以将流程导出为Lua、Python这种脚本语言。考虑到一些自动化流程需要在Linux服务器上操作,可以先在Windows上进行图形化绘制,导出为脚本语言后再使用解释器执行,方便操作。
I don't want the connected nodes to disconnect,I used this method, but it still disconnects when dragging the port. ``` node2Input.Port.ConnectionDragStarted.Subscribe(s => { node2Input.Port.OnPortEnter(); }); ```
I want to modify RunPE to be a C# DLL library to implement reflection calling RunPE, but it fails 
 My C# project prompts that libssl is needed after Native AOT compilation, so how can I link libssl into the program?
师傅您好,我使用BypassUac_sharp时,新启用一个Task线程调用进程伪装会失去效果(MasqueradePEB返回结果是True,但是UAC还是会弹,显示的还是原来的进程),请问有没有遇到过类似的情况 ``` public static void Main() { Task.Run(() => { if (!PEBMasq.MasqueradePEB(@"C:\Windows\explorer.exe")) { MessageBox.Show("MasqPEB failed!"); System.Environment.Exit(0); } MessageBox.Show("Pass ok continue!"); BypassUAC(); }); Console.ReadLine(); } ```