上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页
摘要: 先讲下破解原理 首先,去VisualSVN官网下载最新版本。 传送门:http://www.visualsvn.com/server/download/ 定位到VisualSVN安装目录,C:\Program Files (x86)\VisualSVN\bin (我的是64位)。 进入Visual Studio 命令提示, 将 “VisualSVN.Core.dll” 文件反编译成 “Vi... 阅读全文
posted @ 2013-09-06 09:30 poisson_notes 阅读(21095) 评论(5) 推荐(3) 编辑
摘要: Program.cs using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net;using System.Runtime.Serialization.Json;using System.Text;namespace WopiServerTutorial{ ... 阅读全文
posted @ 2013-08-26 15:47 poisson_notes 阅读(1126) 评论(0) 推荐(0) 编辑
摘要: WOPI项目的创建 首先用vs2012创建一个mvc4的程序。如图: 从上一篇我们可以知道,WOPI通讯主要通过两个服务: 一个是CheckFileInfo服务, 一个是GetFile服务。 所以下面我们主要介绍这两个服务的创建。 1. 首先创建CheckFileInfo服务: 我们先确定这个服务的 阅读全文
posted @ 2013-08-23 12:40 poisson_notes 阅读(27720) 评论(79) 推荐(31) 编辑
摘要: 一、IP过滤:包括来源IP或者目标IP等于某个IP 比如:ip.src addr==192.168.0.208 or ip.src addr eq 192.168.0.208 显示来源IP ip.dst addr==192.168.0.208 or ip.dst addr eq 192.168.0.208 显示目标IP 二、端口过滤: 比如:tcp.port eq 80 // 不管端口是来源的还是目标的都显示 tcp.port == 80 tcp.port eq 2722 tcp.port eq 80 or udp.port eq 80 tcp... 阅读全文
posted @ 2013-08-20 18:03 poisson_notes 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 在前面我的一篇博客中 Office Web Apps安装部署(一),有一张介绍Office Web Apps与其他系统的关系图, 从上述图中,可知实际上Office Web Apps也是可以接入自己开发的系统的。下面介绍一下整合Office Web Apps的一些理论知识。 要想让自己的系统与Office Web Apps整合就一定要清楚一些概念,首先要理解什么是”WOPI”。... 阅读全文
posted @ 2013-08-19 09:29 poisson_notes 阅读(43372) 评论(33) 推荐(26) 编辑
摘要: 直接写一个普通批处理文件,如果是需要让它在系统启动时运行, 就将它放在C:\Windows\System32\GroupPolicy\Machine\Scripts\Startup目录下, 如果是需要它在系统注销或关机时运行,就将它放在C:\Windows\System32\Grouppolicy\Machine\Scripts\Shutdown目录下。 放好之后就要进行指派。 单击“开... 阅读全文
posted @ 2013-08-15 23:06 poisson_notes 阅读(12387) 评论(1) 推荐(2) 编辑
摘要: SharePoint 2013调用Office Web Apps注意:调用OfficeWebApps的sharepoint应用的身份认证必须是基于声明的身份认证(claims-based authentication)首先安装好SharePoint2013,我在此部署文档中使用的是免费的sharep... 阅读全文
posted @ 2013-08-07 10:17 poisson_notes 阅读(20705) 评论(10) 推荐(5) 编辑
摘要: 系统要求为Windows Server 2012, 注意:安装Office Web Apps的服务器除了Office Web Apps之外,不能安装其他应用。包括不能安装Office,lync,,sharepoint等应用,即要单独部署。 安装IIS 7.0 打开服务器管理器 添加角色和功能 打开“添加角色和功能向导”界面,点击下一步 因为是基于本机安装,所以要选择“基于角... 阅读全文
posted @ 2013-08-05 15:02 poisson_notes 阅读(79261) 评论(55) 推荐(15) 编辑
摘要: function detectOS() { var sUserAgent = navigator.userAgent; var isWin = (navigator.platform == "Win32") || (navigator.platform == "Windows"); var isMac = (navigator.platform == "Mac68K") |... 阅读全文
posted @ 2013-06-28 12:23 poisson_notes 阅读(17042) 评论(0) 推荐(1) 编辑
摘要: ActiveX 控件导入程序将 ActiveX 控件的 COM 类型库中的类型定义转换为 Windows 窗体控件。http://msdn.microsoft.com/zh-cn/library/8ccdh774.aspx 阅读全文
posted @ 2013-06-24 10:42 poisson_notes 阅读(465) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页