-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkynet_pOpUp_Prank
41 lines (40 loc) · 1.03 KB
/
Skynet_pOpUp_Prank
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
REM Title: Skynet_pOpUp_Prank
REM Author: LulzAnarchyAnon
REM Description: A windows balloon pop up notifies you Skynet is
REM awaiting final instructions. PRESS ANY KEY TO CONTINUE
REM Target: Windows 10 PowerShell
Props: Darren Kitchen and I am Jakoby
REM Version: 1.0
REM Category: Prank
GUI r
DELAY 500
STRING powershell -windowstyle hidden
ENTER
DELAY 1000
STRING Add-Type -AssemblyName System.Windows.Forms
DELAY 500
ENTER
STRING $global:balloon = New-Object System.Windows.Forms.NotifyIcon
DELAY 500
ENTER
STRING $path = (Get-Process -id $pid).Path
DELAY 500
ENTER
STRING $balloon.Icon = [System.Drawing.Icon]::ExtractAssociatedIcon($path)
DELAY 500
ENTER
STRING $balloon.BalloonTipIcon = [System.Windows.Forms.ToolTipIcon]::Warning
DELAY 500
ENTER
STRING $balloon.BalloonTipText = 'SKYNET IS AWAITING FINAL INSTRUCTIONS. PRESS ANY KEY TO CONTINUE'
DELAY 500
ENTER
STRING $balloon.BalloonTipTitle = "Attention $Env:USERNAME"
DELAY 500
ENTER
STRING $balloon.Visible = $true
DELAY 500
ENTER
STRING $balloon.ShowBalloonTip(5000)
DELAY 500
ENTER