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
| # Discord Timestamp Generator for Windows PowerShell | |
| # Save this as 'discord_ts.ps1' | |
| # You might required to run 'Set-ExecutionPolicy Unrestricted' then press A to use this script | |
| function Get-DiscordTimestamp { | |
| $d = Read-Host "Enter specific date you want (YYYY-MM-DD)" | |
| $t = Read-Host "Enter the time you want, 24-hour format (HH:MM:SS)" | |
| try { | |
| $dt = [datetime]::ParseExact("$d $t", "yyyy-MM-dd HH:mm:ss", $null) |