- 你要使用的字体(仅非版权字体)
- Microsoft Visual Studio C#2010 express[^VS2010Express]
- [XNA Game Studio 4.0][]
- [CharacterRegionTool(C#)][]
- 一个可以可以保存扩展名为"all files"的文本编辑器, 例如([notepad++][])
- [XNAFormatter][]或[XNAContentCompiler][]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
taskkill /t /f /im WTabletServicePro.exe | |
ping -n 3 127.0.0.1>nul | |
sc stop WTabletServicePro | |
ping -n 3 127.0.0.1>nul | |
sc start WTabletServicePro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def urldecode: | |
def unhex: | |
if 48 <= . and . <= 57 then . - 48 elif 65 <= . and . <= 70 then . - 55 else . - 87 end; | |
def bytes: | |
def loop($i): | |
if $i >= length then empty else 16 * (.[$i+1] | unhex) + (.[$i+2] | unhex), loop($i+3) end; | |
[loop(0)]; | |
def codepoints: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### OR take a look at | |
### https://github.com/HotCakeX/Harden-Windows-Security |
- To disable a service, download
Disable<Service>.reg
and double-click to import. (Replace<Service>
with the name of the service you want to disable.) - To re-enable a service, download
Enable<Service>.reg
and double-click to import. (Replace<Service>
with the name of the service you want to enable.)
Note that if you save the files by copying them into a text editor, they may need to be saved with Windows-style line endings (\r\n
).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#user nobody; | |
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include mime.types; |
NewerOlder