Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xyz8848/starrail-warp-history-url-grabbers
《崩坏:星穹铁道》跃迁历史记录链接获取器
https://github.com/xyz8848/starrail-warp-history-url-grabbers
powershell powershell-script script starrail windows windows10 windows11
Last synced: 28 days ago
JSON representation
《崩坏:星穹铁道》跃迁历史记录链接获取器
- Host: GitHub
- URL: https://github.com/xyz8848/starrail-warp-history-url-grabbers
- Owner: xyz8848
- Created: 2024-01-15T13:48:19.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-17T04:23:56.000Z (10 months ago)
- Last Synced: 2024-10-11T14:04:30.018Z (28 days ago)
- Topics: powershell, powershell-script, script, starrail, windows, windows10, windows11
- Language: PowerShell
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 《崩坏:星穹铁道》跃迁历史链接获取器
此脚本仅适用于**Windows 10及以上**版本。__代码来自[Star Rail Station](https://gist.github.com/Star-Rail-Station/2512df54c4f35d399cc9abbde665e8f0)。__
## 如何使用
1. 登录《崩坏:星穹铁道》PC端并打开游戏内的跃迁历史记录。
2. 打开Windows PowerShell。(你可以通过Windows搜索「Windows PowerShell」找到该程序。)
3. 粘贴并运行下述命令:
```powershell
$response = Invoke-WebRequest -Uri "https://gitee.com/xyz8848/StarRail-Warp-History-Url-Grabbers/raw/main/get_warp_link_cn.ps1"
$content = $response.Content
Set-Content -Path $env:TEMP\temp.ps1 -Value $content -Encoding UTF8
& chcp 65001 | Out-Null
Invoke-Expression -Command "& $env:TEMP\temp.ps1"
```