分类 Win科技 下的文章

IIS 10 网页服务器设置代理 | 服务器请求走代理

web.config
文件中找到
system.net
节点, 在节点里加入即可.

<system.net>
    <defaultProxy>
      <proxy
        proxyaddress="http://10.0.2.231:42"
        bypassonlocal="true"
      />
    </defaultProxy>
</system.net>

阅读全文 >>


优雅的干掉 AlibabaProtect.exe | 彻底删除 Alibaba PC Safe Service

Alibabaprotect是阿里巴巴的全家桶插件,此进程不仅会占用大量内存和cpu性能,会在后台悄悄的监控你的上网过程,还在后台监控你的一举一动,然后给你精准推送广告,所以它不仅仅是一个文件,还是一个恶意软件。而且Alibabaprotect非常难删除,删掉后重启电脑又会自动出现,是一个名副其实的流氓软件.

1.下载 Autoruns 系统管理工具
2.使用 管理员权限 启动Autoruns64.exe
3.选择Drivers 选项卡
4.找到 AliPaladin 驱动, 右键,弹出菜单选择delete删除.
Snipaste_2019-01-07_16-19-56.png

阅读全文 >>


mktorrent Win下命令行制作种子

工具下载:
GitHub : q3aql/mktorrent-win
version 1.1

Creating a torrent

  • To make a .torrent file using command line, execute this command:
mktorrent -v -p -a http://tracker.url -o filename.torrent folder_name

-v is for verbose -p is for private, as in not DTH or PeerExchange -a is for tracker url follows -o is for output file name follows .

  • Important! The command needs to be all in one line, and quotes must
    be used around the folder name if it contains spaces.
  • For example, if I wanted to make a torrent for What.cd from the data
    in the "VA – Summer Trance 2009" directory I already have on my
    server at ~/torrents/completed/VA - Summer Trance 2009, you would
    navigate to the parent directory to make your torrent. Type to
    navigate to it:

Note: The disks must be written with the format

/cygdrive/<letter>/
. For example,
C:
is
/cygdrive/c/
.

阅读全文 >>


在您妈的见,彻底禁用微软强制更新!!! | SC命令

SC命令---安装、开启、配置、关闭 cmd命令行和bat批处理操作windows服务

一、cmd命令行---进行Windows服务操作
1、安装服务

sc create 服务名 binPath= "C:\Users\Administrator\Desktop\win32srvDemo\win32srvdemo\Debug\win32srvDemo.exe"

注:服务名:指创建的Windows服务名
binPath:指Windows服务程序的路径

阅读全文 >>


CMD空格转义的三种方法,总有一种会解决问题

CmD空格转义
在cmd中,如果路径中存在空格报错 可以有三种解决方法:

1、将存在空格的路径用双引号包起来,如:"D:/Program Files/xx";
2、将存在空格的名称前6个字母表示,以后的用~1代替. 如:"D/Progra~1/xx"

阅读全文 >>