https://github.com/twgh/getxcgui
get xcgui.dll
https://github.com/twgh/getxcgui
go golang
Last synced: 24 days ago
JSON representation
get xcgui.dll
- Host: GitHub
- URL: https://github.com/twgh/getxcgui
- Owner: twgh
- License: mit
- Created: 2022-07-03T08:07:58.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-31T02:16:13.000Z (almost 3 years ago)
- Last Synced: 2025-03-31T22:41:28.324Z (2 months ago)
- Topics: go, golang
- Language: Go
- Homepage: https://github.com/twgh/xcgui
- Size: 9.77 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# getxcgui
## 介绍
本工具可以帮助下载xcgui.dll
## 获取
```bash
go install -ldflags="-s -w" github.com/twgh/getxcgui@latest
```成功则`GOPATH`下的bin目录里会出现一个`getxcgui.exe`
## Flags
```bash
-v xcgui.dll 的版本号,为空时默认最新版本
-b xcgui.dll 的位数,为空时默认64
-o 输出文件名,为空时默认“xcgui.dll”
```## 使用
#### (默认)下载最新版本64位的dll到当前目录
```bash
getxcgui
```
#### 下载最新版本64位的dll到`C:\Windows\System32`目录
```bash
getxcgui -o %windir%\system32\xcgui.dll
```#### 下载最新版本32位的dll到当前目录
```bash
getxcgui -b 32
```#### 下载3.3.5.0版本,64位的dll到当前目录
```bash
getxcgui -v 3.3.5.0
```#### 下载3.3.5.0版本,64位的dll到当前目录,命名为xc.dll
```bash
getxcgui -v 3.3.5.0 -o xc.dll
```