can't debug windows service in win7 64bit】的更多相关文章

if encount below error: Solution: run the command “vsdiag_regwcf.exe -i” as admin in C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE.…
Step 1. Add the following code in what you want to debug. System.Diagnostics.Debugger.Launch(); Step 2. Install and start the service. That's it. However, other way as below url: http://stackoverflow.com/questions/4678819/how-to-debug-windows-service…
多年前玩过一次windows service,觉得挺简单的. 这次工作要维护产品中的windows service,发现不是那么简单,vs附加调试器的窗体中无法找到windows service进程.刚开始怀疑服务的代码是不是有问题,结果做了一个demo,发现还是调试不了. 所以猜想跟win7有关系.与是在google中有can not debug windows service win7的关键字搜索,发现一个解决方案. http://stackoverflow.com/questions/10…
转载-https://www.cnblogs.com/yubao/p/8443455.html Create Windows Service project using Visual Studio Create files on starting and stopping service: using System.IO; protected override void OnStart(string[] args) { File.Create(AppDomain.CurrentDomain.Ba…
昨天,组里一个小朋友告诉我,他写的报表生成服务中无法打开一个已经存在的Excel 2007文件,他的开发环境是Win7.Visual Studio .Net 2008(Windows Server 2008下同样存在此问题).比较奇怪的是,Excel Automation对象是可以实例化的,但是在执行Workbooks.Open时抛出异常如下: Microsoft Office Excel 不能访问文件“a.xls”. 可能的原因有: • 文件名称或路径不存在. • 文件正被其他程序使用. •…
http://lourenco.co.za/blog/2013/08/wcf-windows-service-using-topshelf-and-servicemodelex/ There are two excellent .NET libraries that help us to build enterprise solutions using the Windows Communication Foundation (WCF) – TopShelf and ServiceModelEx…
本人参考 链接 已在Win7 64Bit 笔记本上成功安装ArcView3.3,于是记录以下心得。 Win7 64Bit安装不了ArcView3.X的原因在于: 1,ArcView3.X属于16Bit,32bit的机器能直接向下兼容16Bit,但64Bit不能直接向下兼容。 2,Win7的操作系统不兼容ArcView,但XP 32bit能完全兼容ArcView3.X。 那么,Win7 64Bit若要成功安装ArcView3.X,需要从XP 32bit的机器入手: 1,首先在 XP 32bit 的…
环境:QT5.4.1(msvc2013_64_opengl),Win7 64bit 编译方式 Qt开发的程序发布的时候经常采用两种方式:1)静态编译,可生成单一的可执行文件:2)动态编译,需同时附上需要的dll文件. 静态编译 静态编译,是指把相关的库也一并引入exe文件,这样程序的尺寸就会很大,不过程序发布就会变得简单很多. 动态编译(Qt默认) 动态编译,是指相关的库,以dll动态链接库的形式引用.动态编译的exe程序比较小,因为相关的库都没有包含进来.所以程序发布的时候要把相关的库也一并发…
前言:Microsoft Windows 服务能够创建在它们自己的 Windows 会话中可长时间运行的可执行应用程序.这些服务可以在计算机启动时自动启动,可以暂停和重新启动而且不显示任何用户界面.这使服务非常适合在服务器上使用,或任何时候,为了不影响在同一台计算机上工作的其他用户,需要长时间运行功能时使用.还可以在不同于登录用户的特定用户帐户或默认计算机帐户的安全上下文中运行服务.本文就向大家介绍如何运用C#来创建.安装.卸载.调试Windows Service程序. 一.创建Windows服…
How to migrate a .NET Windows Service application to Linux using mono? 写在最前:之所以用要把windows程序迁移到Linux上,主要是由于一些成本问题,这个就不多解释了. 如何把之前用.net写的windows服务程序迁移到linux上运行.答案是有很多种的,今天我只提一下mono(我只实验了mono,呵呵). 如何在Linux部署mono,并成功的运行.net程序,还请大家多多查询吧,我在这方面也只是搭建成功了,遇到的问…