AutoCAD 2010 注册激活说明

AutoCAD 2010 注册激活说明

序列号:356-72378422
密钥:001B1

  1. 安装包下载:到Pandownload–资源搜索
  2. 运行setup,填写cad序列号 ,一直到安装完成;

Read More

Hexo设置跳过渲染某个文件或文件夹

Hexo安装的根目录中的_config.yml有提供一个配置项skip_render来设置跳过渲染的文件及文件夹,亦可以使用layout的功能禁止渲染。

单文件操作

直接在文件中加入如下设置

Read More

Office 2016 零售版转Vol版

操作方法

新建文本文件,将下列内容复制进去,将后缀改成bat,双击运行。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@ECHO OFF&PUSHD %~DP0
setlocal EnableDelayedExpansion&color 3e & cd /d "%~dp0"
title office2016 retail转换vol版
%1 %2
mshta vbscript:createobject("shell.application").shellexecute("%~s0","goto :runas","","runas",1)(window.close)&goto :eof
:runas
if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16"
if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16"
:WH
cls
echo.
echo 选择需要转化的office版本序号
echo.
echo --------------------------------------------------------------------------------
echo 1. 零售版 Office Pro Plus 2016 转化为VOL版
echo.
echo 2. 零售版 Office Visio Pro 2016 转化为VOL版
echo.
echo 3. 零售版 Office Project Pro 2016 转化为VOL版
echo.
echo. --------------------------------------------------------------------------------

set /p tsk="请输入需要转化的office版本序号【回车】确认(1-3): "
if not defined tsk goto:err
if %tsk%==1 goto:1
if %tsk%==2 goto:2
if %tsk%==3 goto:3
:err
goto:WH
:1
cls
echo 正在安装 KMS 许可证...
for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul
echo 正在安装 MAK 许可证...
for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul
set /p y=请输入激活密钥,按回车确定:
cscript ospp.vbs /inpkey:%y%
goto :e
:2
cls
echo 正在安装 KMS 许可证...
for /f %%x in ('dir /b ..\root\Licenses16\visio???vl_kms.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul
echo 正在安装 MAK 许可证...
for /f %%x in ('dir /b ..\root\Licenses16\visio???vl_mak.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul
set /p y=请输入激活密钥,按回车确定:
cscript ospp.vbs /inpkey:%y%
goto :e
:3
cls
echo 正在安装 KMS 许可证...
for /f %%x in ('dir /b ..\root\Licenses16\project???vl_kms.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul
echo 正在安装 MAK 许可证...
for /f %%x in ('dir /b ..\root\Licenses16\project???vl_mak.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul
set /p y=请输入激活密钥,按回车确定:
cscript ospp.vbs /inpkey:%y%
goto :e
:e
echo.
echo 转化完成,按任意键退出!
pause >nul
exit

Read More

使用多个github账号管理仓库

操作方法

  1. 打开终端或者git Bash
  2. 生成公钥和私钥

    1
    2
    $ ssh-keygen -t rsa -f ~/.ssh/id_rsa_1 -C "one@gmail.com" 
    $ ssh-keygen -t rsa -f ~/.ssh/id_rsa_2 -C "two@gmail.com"

Read More

个人推荐的Win应用

浏览器

浏览器看个人喜好,但建议不使用国产浏览器,尤其是360和猎豹,原因是隐私安全

Read More

亲测好用的油猴脚本

相信不少使用Chrome或Firefox浏览器的网友都听说过油猴,作为浏览器拓展中的神器,对于优化浏览体验,提升工作休闲效率起到了不小的作用。

本文将介绍我自己所使用的一些油猴脚本。这些脚本的介绍来自奔跑中的奶酪有哪些值得推荐的油猴脚本?一文,介绍模板也参考了,不过部分插件略有删减,判断依据是我自己的使用体验。

Read More

Windows网络修复工具 Complete Internet Repair

一些电脑小白同学偶尔会碰到突然无法正常上网的情况,而却不懂得如何简单的重置网络。 Complete Internet Repair就是小白福音。它可以快速修复 Windows 的各种网络设置,搞定绝大多数的网络问题,而且最重要的是它是免费的。

Read More

GitHub上的版本和本地版本冲突的解决方法

这是自己曾经遇到过的问题,分享给大家,也方便自己下次查找

问题描述

在github上创建项目,在本地运行:

1
2
3
4
git init
git add.
git commit -m "init"
git push -u origin master

而忘记git pull -f --all导致github上的版本里有readme文件和本地版本冲突,git弹出以下错误:

1
2
3
4
5
6
7
8
9
Username for 'https://github.com': XXXX
Password for 'https://XXXX@github.com':
To https://github.com/XXXX/test.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/XXXX/test.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

Read More

利用MKLINK 命令保护、节省硬盘

用过 Linux 的人应该都熟悉软硬链接,但某些人可能还不知道 Windows 中也包含了这项功能。前几天在知乎专栏看到有人利用类似原理转移iTunes的备份文件夹节省C盘空间,索性也汇编篇文章介绍这个功能。

个人目前使用它转移C盘Users文件夹、 Outlook产生的本地邮箱缓存以及OneNote的本地缓存。

Read More

绿色良心KMS激活推荐

本文KMS及介绍来自零散坑,感谢他所作的努力。

原文地址:https://03k.org/kms.html

功能介绍

适用对象:VOL版本的windows和office

适用版本:win7-win10;office2007-office2016

优点:操作简单,无需安装软件,干净无毒,不占用电脑资源,多版本均可用(需要寻找相应的Key或者进行版本转换)

缺点:服务器挂了,可能需要重新激活

Read More