emptygif
Ngôn ngữ: Tiếng Việt

Tất cả ngôn ngữ và framework

PowerShell PowerShell

Đoạn mã PowerShell cho PowerShell, trả lời các yêu cầu tới /pixel.gif bằng GIF rỗng, được giải mã một lần khi khởi động.

PowerShell PowerShell

Tệp
pixel.ps1
# Works in Windows PowerShell 5.1 and PowerShell 7+ (.NET needs an absolute path).
$bytes = [Convert]::FromBase64String('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==')
[IO.File]::WriteAllBytes((Join-Path $PWD 'pixel.gif'), $bytes)

Chúng tôi đã chạy đoạn mã này và so sánh các byte nó trả về.

Trang chính thức: PowerShell

Thêm với PowerShell