WaterMoon

  • technology
  • essay
  • English
    • 简体中文
net
technology

windows office激活 vlmcsd搭建

本文主要讲解windows和office通过kms激活 以及vlmcsd服务器搭建,激活原理是待激活设备每隔一个周期与模拟kms服务器vlmcsd通信 ,从而获得授权,所以如果是极端状态无法联网的设备,可能到一个周期后是无法保持激活状态的,这点得注意,如果用虚拟机充当服务器的话,激活周期快到的时候,重新打开虚拟机,手动激活续时间即可! 1. vlmcsd服务端 vlmcsd是个小应用程序,可以放在docker,实体机,以及虚拟机里面,只要能用来当服务器的设备都可以。 因为笔者拥有多台设备需要激活,所以放在装有ubuntu的云服务器里,随时可用。 进入https://github.com/Wind4/vlmcsd/releases下载最新版源码,当然你也可以用wget。 编译起来颇为简单,只需要gcc和make,我并没有安装其他依赖。 复制服务内容进去,不需要改 然后: 2.客户端 去msdn itellyou 下载正版镜像安装 序列码可进入https://github.com/ActiveIce/vlmcsd中查看。 启动 Windows Powershell (管理员运行) 并输入下列命令: 激活 windows 激活 Office 返回sucess即可,去软件界面查看license。 激活常见错误返回值 1 ERROR CODE: 0xC004F069ERROR DESCRIPTION: The Software Licensing Service reported that the product SKU is not found. 笔者安装的是office 2019 pro plus,查了一下是因为装的office零售版,需要转换为批量版,新建一个xx.bat文件 其他版本的转换bat 自行搜索,大同小异,当然如果不是默认安装,目录也是需要你修改的 然后复制进去: 右键用管理员运行不报错即可,之后再运行之前的命令。 2 ERROR CODE: 0xC004F017ERROR DESCRIPTION: The Software Licensing Service reported that the license is not installed. 哪个注册码报错就卸载哪个

2022-10-22 0Comments 1073Browse 2Like 水月大侠 Read more
technology

v2ray+apache2+ssl+tls

v2ray+apache2+ssl+tls 伪装流量加密配置: 由于某度搜索对科学文献方面不甚友好,所以为提高工作效率,带给大家以下方法确保安全和健康上网! 1.准备工作: 1.云服务器的选择 当下流行好多家的vps可以选择,大家可以自己去搜适合自己的服务器,由于目的不同还可以选香港机房来降低ping 用于玩外国游戏之类的 这里笔者自己用的是搬瓦工,由于主站被墙,所以提供以下几个国内镜像:bwh81.net/bwh89.net. 2.云服务器的购买以及配置 先注册,一定要输入正确可用邮箱,无论账单还是其他信息,搬瓦工都是用邮箱跟你交流! 进入主页后,按以下指示来购买vps   一般用于google搜索和youtube 看视频 这个台主机配置已经足够了,而且也已经要rmb300左右一年,算上优惠码,如果有钱,想延迟低,可以考虑下面的香港服务器;     输入减免6.58%的优惠码BWH3HYATVBJW,可以便宜一些,如果无效,请自行搜索最新优惠码   然后就是等待,大概10分钟内吧,你会收到已建设好的邮件,邮件里面会包含你的密码,ip和ssh端口! 完成后,回到Client Area,点击my services 点击管理控制面板   如果你习惯于centos的系统 ,接下来的操作可略过就不用看了,直接远程ssh登录即可, 因为笔者更习惯ubuntu,所以首先需要关闭主机,然后安装新系统,我选的20.04,自带bbr加速模块 之后就是putty登录了,输入IP 和port,打开即可,如果你熟悉,可以自行配置字体大小,心跳之类的更方便操作的选项;   3域名的购买和ssl证书的免费获取 由于笔者觉得备案太麻烦,所以选择的是国外域名商https://www.dynadot.com/,具体如何购买域名和下载SSL证书,由于非常简单,不想再赘述,或者等笔者有空再补上,现在请另行搜索 2.apache2的安装和配置 ubuntu安装apache2 apt install apache2 安装成功过后,通过本地浏览器访问 ip即可得到apache2欢迎你的首页   开启apache2 模块用于https a2enmod ssl a2enmod proxy a2enmod proxy_wstunnel a2enmod proxy_http a2enmod rewrite a2enmod headers     其实我不建议改端口,因为http和https的端口默认为80和443,防火墙一般不会封这个两个端口,既然你是伪装流量,那你就不要改. 所以直接修改apache2 配置文件, 首先将https 激活,创建软连到sites-enabled中 cd /etc/apache2/sites-enabled ln -s ../sites-available/default-ssl.conf ./000-default-ssl.conf   然后修改 vi 000-default.conf   <VirtualHost *:80> # The ServerName directive sets the request scheme, hostname and port that # the server uses to identify itself. This is used when creating # redirection URLs. In the context of virtual hosts, the ServerName # specifies what hostname must appear in the request's Host: header to # match this virtual host. For the default virtual host (this file) this # value is not decisive as it is used as a last resort host regardless. # However, you must set it for any further virtual host explicitly. #ServerName www.example.com ServerName xxblog.com  #以下四条改为你的域名和path ServerAlias www.xxblog.com ServerAdmin xxblog.com DocumentRoot /var/www/html/xxblog # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # It is also possible to configure the loglevel for particular # modules, e.g. #LogLevel info ssl:warn ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined RewriteEngine on  #这里的重写,就是把所有的http请求转发为https请求,实现ssl加密 RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}$1 [L,R] # For most configuration files from conf-available/, which are # enabled or disabled at a global level, it is possible to # include a line for only one particular virtual host. For example the # following line enables the CGI…

2021-08-10 2Comments 1515Browse 2Like 水月大侠 Read more
Newest Hotspots
Newest Hotspots
windows office激活 vlmcsd搭建 使用qBreakpad跟踪程序异常退出 FFT一种C代码实现 Tiff图像直方图均衡化以及规定化算法 Linux问题 Debian: cannot find -lGL

COPYRIGHT © 2021 WaterMoon. ALL RIGHTS RESERVED.