Skip to content

Instantly share code, notes, and snippets.

@CannoHarito
Last active February 26, 2024 07:01
Show Gist options
  • Save CannoHarito/9b8935e3c6a20c3ba1386cc717f9483f to your computer and use it in GitHub Desktop.
Save CannoHarito/9b8935e3c6a20c3ba1386cc717f9483f to your computer and use it in GitHub Desktop.
DMM版アサルトリリィLastBulletでゲーム内メニューでスクリーンショットを取り共有をキャンセルした画像ファイルをコピーするPowershell
$from = "~\AppData\LocalLow\Pokelabo\Assaultlily\LilyProject.png"
if (Test-Path $from) {
$to = "./" + (Get-ChildItem $from).LastWriteTime.ToString("yyyyMMdd_HHmmss") + ".png"
Copy-Item $from $to
}
else {
Get-ChildItem $from
Pause
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment