资源简介
win10报“管理员已阻止程序运行”的解决办法:执行bin文件夹下的主程序—》选择目标exe文件,比如选择Wlrun.exe—》点击“清除数字签名”,会生成一个Wlrun.exe.nosign文件—》备份Wlrun.exe,将Wlrun.exe.nosign后缀去掉,变为Wlrun.exe—》这时候再运行Wlrun.exe
代码片段和文件信息
// RemovePeSign.cpp : main source file for RemovePeSign.exe
//
#include “stdafx.h“
#include ame.h>
#include
#include
#include “resource.h“
#include “MainDlg.h“
CAppModule _Module;
int WINAPI _tWinMain(HINSTANCE hInstance HINSTANCE /*hPrevInstance*/ LPTSTR /*lpstrCmdLine*/ int /*nCmdShow*/)
{
HRESULT hRes = ::CoInitialize(NULL);
// If you are running on NT 4.0 or higher you can use the following call instead to
// make the EXE free threaded. This means that calls come in on a random RPC thread.
// HRESULT hRes = ::CoInitializeEx(NULL COINIT_MULTITHREADED);
ATLASSERT(SUCCEEDED(hRes));
// this resolves ATL window thunking problem when Microsoft layer for Unicode (MSLU) is used
::DefWindowProc(NULL 0 0 0L);
AtlInitCommonControls(ICC_BAR_CLASSES); // add flags to support other controls
hRes = _Module.Init(NULL hInstance);
ATLASSERT(SUCCEEDED(hRes));
int nRet = 0;
// BLOCK: Run application
{
CMainDlg dlgMain;
nRet = dlgMain.DoModal();
}
_Module.Term();
::CoUninitialize();
return nRet;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 32768 2011-09-03 23:28 清除数字签名工具-RemovePeSign-windows10\bin\RemovePeSign.exe
文件 5709 2011-09-03 20:40 清除数字签名工具-RemovePeSign-windows10\MainDlg.h
文件 3577 2011-09-03 23:30 清除数字签名工具-RemovePeSign-windows10\PeHandler.h
文件 1109 2011-09-03 17:04 清除数字签名工具-RemovePeSign-windows10\RemovePeSign.cpp
文件 4604 2011-09-03 20:04 清除数字签名工具-RemovePeSign-windows10\RemovePeSign.dsp
文件 549 2011-09-03 17:04 清除数字签名工具-RemovePeSign-windows10\RemovePeSign.dsw
文件 19 2011-09-03 17:04 清除数字签名工具-RemovePeSign-windows10\RemovePeSign.h
文件 8362 2011-09-03 20:07 清除数字签名工具-RemovePeSign-windows10\RemovePeSign.rc
文件 598 2011-09-03 17:04 清除数字签名工具-RemovePeSign-windows10\res\RemovePeSign.exe.manifest
文件 1078 2010-06-02 13:00 清除数字签名工具-RemovePeSign-windows10\res\RemovePeSign.ico
文件 827 2011-09-03 20:02 清除数字签名工具-RemovePeSign-windows10\resource.h
文件 289 2011-09-03 17:04 清除数字签名工具-RemovePeSign-windows10\stdafx.cpp
文件 1047 2011-09-03 19:26 清除数字签名工具-RemovePeSign-windows10\stdafx.h
目录 0 2011-09-03 23:31 清除数字签名工具-RemovePeSign-windows10\bin
目录 0 2011-09-03 21:45 清除数字签名工具-RemovePeSign-windows10\res
目录 0 2017-12-04 16:01 清除数字签名工具-RemovePeSign-windows10
----------- --------- ---------- ----- ----
60536 16
- 上一篇:身份认证系统
- 下一篇:半监督典型相关分析算法
评论
共有 条评论