# getxcgui **Repository Path**: twgh/getxcgui ## Basic Information - **Project Name**: getxcgui - **Description**: 帮助下载xcgui.dll - **Primary Language**: Go - **License**: MIT - **Default Branch**: main - **Homepage**: https://github.com/twgh/xcgui - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-07-03 - **Last Updated**: 2022-08-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ```