-
Notifications
You must be signed in to change notification settings - Fork 7
/
PSTrollFunctions.psm1
787 lines (684 loc) · 17.4 KB
/
PSTrollFunctions.psm1
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
#HELPER FUNCTIONS
Function Start-AudioControl {
Add-Type -TypeDefinition '
using System.Runtime.InteropServices;
[Guid("5CDF2C82-841E-4546-9722-0CF74078229A"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IAudioEndpointVolume
{
// f(), g(), ... are unused COM method slots. Define these if you care
int f(); int g(); int h(); int i();
int SetMasterVolumeLevelScalar(float fLevel, System.Guid pguidEventContext);
int j();
int GetMasterVolumeLevelScalar(out float pfLevel);
int k(); int l(); int m(); int n();
int SetMute([MarshalAs(UnmanagedType.Bool)] bool bMute, System.Guid pguidEventContext);
int GetMute(out bool pbMute);
}
[Guid("D666063F-1587-4E43-81F1-B948E807363F"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IMMDevice
{
int Activate(ref System.Guid id, int clsCtx, int activationParams, out IAudioEndpointVolume aev);
}
[Guid("A95664D2-9614-4F35-A746-DE8DB63617E6"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IMMDeviceEnumerator
{
int f(); // Unused
int GetDefaultAudioEndpoint(int dataFlow, int role, out IMMDevice endpoint);
}
[ComImport, Guid("BCDE0395-E52F-467C-8E3D-C4579291692E")] class MMDeviceEnumeratorComObject { }
public class Audio
{
static IAudioEndpointVolume Vol()
{
var enumerator = new MMDeviceEnumeratorComObject() as IMMDeviceEnumerator;
IMMDevice dev = null;
Marshal.ThrowExceptionForHR(enumerator.GetDefaultAudioEndpoint(/*eRender*/ 0, /*eMultimedia*/ 1, out dev));
IAudioEndpointVolume epv = null;
var epvid = typeof(IAudioEndpointVolume).GUID;
Marshal.ThrowExceptionForHR(dev.Activate(ref epvid, /*CLSCTX_ALL*/ 23, 0, out epv));
return epv;
}
public static float Volume
{
get { float v = -1; Marshal.ThrowExceptionForHR(Vol().GetMasterVolumeLevelScalar(out v)); return v; }
set { Marshal.ThrowExceptionForHR(Vol().SetMasterVolumeLevelScalar(value, System.Guid.Empty)); }
}
public static bool Mute
{
get { bool mute; Marshal.ThrowExceptionForHR(Vol().GetMute(out mute)); return mute; }
set { Marshal.ThrowExceptionForHR(Vol().SetMute(value, System.Guid.Empty)); }
}
}
'
}
Function Get-WAVWebList
{
#Credits: https://pastebin.com/1GGJ8fCg
$List = @(
'http://www.wavlist.com/movies/011/ha-filthy.wav',
'http://www.wavlist.com/humor/001/cbdick.wav',
'http://www.wavlist.com/humor/001/grndhog.wav',
'http://www.wavlist.com/humor/001/duckjob.wav',
'http://sounds.stoutman.com/sounds/bitchass.wav',
'http://sounds.stoutman.com/sounds/dirtyrat.wav',
'http://sounds.stoutman.com/sounds/heybitch.wav',
'http://sounds.stoutman.com/sounds/perv.wav',
'http://sounds.stoutman.com/sounds/puckerup.wav',
'http://sounds.stoutman.com/sounds/shithead.wav',
'http://sounds.stoutman.com/sounds/yousmell.wav',
'http://sounds.stoutman.com/sounds/fartlaff.wav',
'http://sounds.stoutman.com/sounds/dplaugh.wav'
)
return $List
}
Function Send-WAVWeb
{
Param(
[parameter(Mandatory=$true)]
[string]$URL
)
if(Test-Path "DownloadedWAVFile.wav")
{
Remove-Item "DownloadedWAVFile.wav" -Force
}
Invoke-WebRequest -Uri $URL -OutFile "DownloadedWAVFile.wav"
$filepath = ((Get-Childitem "DownloadedWAVFile.wav").FullName)
$sound = new-Object System.Media.SoundPlayer;
$sound.SoundLocation=$filepath;
$sound.Play();
}
Function Disable-Mouse
{
$PNPMice = Get-WmiObject Win32_USBControllerDevice | %{[wmi]$_.dependent} | ?{$_.pnpclass -eq 'Mouse'}
$PNPMice.Disable()
}
Function Enable-Mouse
{
$PNPMice = Get-WmiObject Win32_USBControllerDevice | %{[wmi]$_.dependent} | ?{$_.pnpclass -eq 'Mouse'}
$PNPMice.Enable()
}
Function Disable-Keyboard
{
$PNPKeyboard = Get-WmiObject Win32_USBControllerDevice | %{[wmi]$_.dependent} | ?{$_.pnpclass -eq 'Keyboard'}
$PNPKeyboard.Disable()
}
Function Enable-Keyboard
{
$PNPKeyboard = Get-WmiObject Win32_USBControllerDevice | %{[wmi]$_.dependent} | ?{$_.pnpclass -eq 'Keyboard'}
$PNPKeyboard.Enable()
}
Function Set-WallPaper
{
Param(
[parameter(Mandatory=$true)]
[string]$Path,
[parameter(Mandatory=$true)]
[string]$UserName
)
if (-Not(Test-Path $Path))
{
Write-Error "Path to the Wallpaper does not exist, try again"
return
}
$AdObj = New-Object System.Security.Principal.NTAccount("$UserName")
$strSID = $AdObj.Translate([System.Security.Principal.SecurityIdentifier]).Value
$RemoteReg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('Users', $Env:Computername)
$RegPath = $strSID + "\Control Panel\Desktop"
$WallPaper= $RemoteReg.OpenSubKey($RegPath,$True)
$WallPaper.SetValue("Wallpaper",$Path)
}
#Sets the Audio Level to Maximum
Function Set-AudioMax {
Start-AudioControl
[audio]::Volume = 1
}
#Sets the Audio Level to a Minimum
Function Set-AudioMin {
Start-AudioControl
[audio]::Volume = 0
}
#Gets the Audio Level that it is currently
Function Get-AudioLevel {
Start-AudioControl
[audio]::Volume
}
#Sets the Audio Level to your own liking
Function Set-AudioLevel {
Param(
[parameter(Mandatory=$true)]
[ValidateRange(0,1)]
[double]$AudioLevel
)
Start-AudioControl
[audio]::Volume = $AudioLevel
}
#Unmutes the Audio
Function Unmute-Audio {
Start-AudioControl
[Audio]::Mute = $false
}
#Mutes the Audio
Function Mute-Audio {
Start-AudioControl
[Audio]::Mute = $true
}
#Sends a random joke to your victim, has a switch to send as a messagebox
Function Send-Joke {
Param(
[switch]$AsMessageBox
)
$Joke = Invoke-RestMethod -Uri 'https://official-joke-api.appspot.com/jokes/random' -Method Get
if ($AsMessageBox)
{
$Message = (($Joke).setup) + " " + ($Joke).punchline
msg.exe * $Message
}
else {
Add-Type -AssemblyName System.speech
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$SpeechSynth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$SpeechSynth.Speak(($Joke).setup)
Start-Sleep -Seconds 1
$SpeechSynth.Speak(($Joke).punchline)
}
}
#Sends a random catfact to your prank victim
Function Send-CatFact
{
Add-Type -AssemblyName System.speech
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$SpeechSynth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$CatFact = Invoke-RestMethod -Uri 'https://catfact.ninja/fact' -Method Get | Select-Object -ExpandProperty fact
$SpeechSynth.Speak("did you know?")
$SpeechSynth.Speak($CatFact)
}
#Sends a random Chuck Norris fact to your prank victim
Function Send-ChuckNorrisFact
{
Add-Type -AssemblyName System.speech
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$SpeechSynth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$ChuckFact = Invoke-RestMethod -Uri 'https://api.chucknorris.io/jokes/random' -Method Get | Select-Object -ExpandProperty Value
$SpeechSynth.Speak("did you know?")
$SpeechSynth.Speak($ChuckFact)
}
#Sends a random Dad Joke to your prank victim
Function Send-DadJoke
{
Add-Type -AssemblyName System.speech
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$SpeechSynth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("Accept", 'text/plain')
$DadJoke = Invoke-RestMethod -Uri 'https://icanhazdadjoke.com' -Method Get -Headers $headers
$SpeechSynth.Speak($DadJoke)
}
#Sends the best song ever to your prank victim
Function Send-RickRoll
{
Invoke-Expression (New-Object Net.WebClient).DownloadString("https://www.leeholmes.com/projects/ps_html5/Invoke-PSHtml5.ps1")
}
#Sends epic gandalf
Function Send-Gandalf
{
Set-AudioLevel(0.4) #For optimal surprise
Start-Process iexplore -ArgumentList "-k https://player.vimeo.com/video/198392879?autoplay=1"
}
#Opens up ie and sends user to a fake win10 update page and fullscreens ie
Function Send-FakeUpdate
{
Start-Process iexplore -ArgumentList "-k http://fakeupdate.net/win10u/"
}
#Sends Row, Row, Row your boat to your prank victim
Function Send-RowBoat
{
Add-Type -AssemblyName System.speech
$SpeechSynth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$SpeechSynth.Speak("Row, Row, Row your boat gently down the stream. Merrily! Merrily! Merrily! Life is but a dream.")
}
#Sends a custom message to any user logged into the computer
Function Send-Message([string]$Message)
{
msg.exe * $Message
}
Function Send-Alarm
{
Invoke-WebRequest -Uri "https://github.com/perplexityjeff/PowerShell-Troll/raw/master/AudioFiles/Wake-up-sounds.wav" -OutFile "Wake-up-sounds.wav"
$filepath = ((Get-Childitem "Wake-up-sounds.wav").FullName)
Write-Host $filepath
$sound = new-Object System.Media.SoundPlayer;
$sound.SoundLocation=$filepath;
$sound.Play();
}
#Open the CD Drive
Function Open-CDDrive
{
Add-Type -TypeDefinition @'
using System;
using System.Runtime.InteropServices;
using System.ComponentModel;
namespace CDROM
{
public class Commands
{
[DllImport("winmm.dll")]
static extern Int32 mciSendString(string command, string buffer, int bufferSize, IntPtr hwndCallback);
public static void Eject()
{
string rt = "";
mciSendString("set CDAudio door open", rt, 127, IntPtr.Zero);
}
public static void Close()
{
string rt = "";
mciSendString("set CDAudio door closed", rt, 127, IntPtr.Zero);
}
}
}
'@
[CDROM.Commands]::Eject()
}
#Close the CD Drive
Function Close-CDDrive{
Add-Type -TypeDefinition @'
using System;
using System.Runtime.InteropServices;
using System.ComponentModel;
namespace CDROM
{
public class Commands
{
[DllImport("winmm.dll")]
static extern Int32 mciSendString(string command, string buffer, int bufferSize, IntPtr hwndCallback);
public static void Eject()
{
string rt = "";
mciSendString("set CDAudio door open", rt, 127, IntPtr.Zero);
}
public static void Close()
{
string rt = "";
mciSendString("set CDAudio door closed", rt, 127, IntPtr.Zero);
}
}
}
'@
[CDROM.Commands]::Close()
}
#Send all the notifications that Windows has with a custom interval
Function Send-NotificationSoundSpam
{
param
(
[Parameter()][int]$Interval = 4
)
Get-ChildItem C:\Windows\Media\ -File -Filter *.wav | Select-Object -ExpandProperty Name | Foreach-Object { Start-Sleep -Seconds $Interval; (New-Object Media.SoundPlayer "C:\WINDOWS\Media\$_").Play(); }
}
#Send a custom voice message
Function Send-VoiceMessage([string]$Message)
{
Add-Type -AssemblyName System.speech
$SpeechSynth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$SpeechSynth.Speak($Message)
}
#Minimize all apps to taskbar
Function Minimize-Apps
{
$apps = New-Object -ComObject Shell.Application
$apps.MinimizeAll()
}
#Sends the song from Super Mario
Function Send-SuperMario
{
Function b($a,$b){
[console]::beep($a,$b)
}
Function s($a){
Start-Sleep -m $a
}
b 660 100;
s 150;
b 660 100;
s 300;
b 660 100;
s 300;
b 510 100;
s 100;
b 660 100;
s 300;
b 770 100;
s 550;
b 380 100;
s 575;
b 510 100;
s 450;
b 380 100;
s 400;
b 320 100;
s 500;
b 440 100;
s 300;
b 480 80;
s 330;
b 450 100;
s 150;
b 430 100;
s 300;
b 380 100;
s 200;
b 660 80;
s 200;
b 760 50;
s 150;
b 860 100;
s 300;
b 700 80;
s 150;
b 760 50;
s 350;
b 660 80;
s 300;
b 520 80;
s 150;
b 580 80;
s 150;
b 480 80;
s 500;
b 510 100;
s 450;
b 380 100;
s 400;
b 320 100;
s 500;
b 440 100;
s 300;
b 480 80;
s 330;
b 450 100;
s 150;
b 430 100;
s 300;
b 380 100;
s 200;
b 660 80;
s 200;
b 760 50;
s 150;
b 860 100;
s 300;
b 700 80;
s 150;
b 760 50;
s 350;
b 660 80;
s 300;
b 520 80;
s 150;
b 580 80;
s 150;
b 480 80;
s 500;
b 500 100;
s 300;
b 760 100;
s 100;
b 720 100;
s 150;
b 680 100;
s 150;
b 620 150;
s 300;
b 650 150;
s 300;
b 380 100;
s 150;
b 430 100;
s 150;
b 500 100;
s 300;
b 430 100;
s 150;
b 500 100;
s 100;
b 570 100;
s 220;
b 500 100;
s 300;
b 760 100;
s 100;
b 720 100;
s 150;
b 680 100;
s 150;
b 620 150;
s 300;
b 650 200;
s 300;
b 1020 80;
s 300;
b 1020 80;
s 150;
b 1020 80;
s 300;
b 380 100;
s 300;
b 500 100;
s 300;
b 760 100;
s 100;
b 720 100;
s 150;
b 680 100;
s 150;
b 620 150;
s 300;
b 650 150;
s 300;
b 380 100;
s 150;
b 430 100;
s 150;
b 500 100;
s 300;
b 430 100;
s 150;
b 500 100;
s 100;
b 570 100;
s 420;
b 585 100;
s 450;
b 550 100;
s 420;
b 500 100;
s 360;
b 380 100;
s 300;
b 500 100;
s 300;
b 500 100;
s 150;
b 500 100;
s 300;
b 500 100;
s 300;
b 760 100;
s 100;
b 720 100;
s 150;
b 680 100;
s 150;
b 620 150;
s 300;
b 650 150;
s 300;
b 380 100;
s 150;
b 430 100;
s 150;
b 500 100;
s 300;
b 430 100;
s 150;
b 500 100;
s 100;
b 570 100;
s 220;
b 500 100;
s 300;
b 760 100;
s 100;
b 720 100;
s 150;
b 680 100;
s 150;
b 620 150;
s 300;
b 650 200;
s 300;
b 1020 80;
s 300;
b 1020 80;
s 150;
b 1020 80;
s 300;
b 380 100;
s 300;
b 500 100;
s 300;
b 760 100;
s 100;
b 720 100;
s 150;
b 680 100;
s 150;
b 620 150;
s 300;
b 650 150;
s 300;
b 380 100;
s 150;
b 430 100;
s 150;
b 500 100;
s 300;
b 430 100;
s 150;
b 500 100;
s 100;
b 570 100;
s 420;
b 585 100;
s 450;
b 550 100;
s 420;
b 500 100;
s 360;
b 380 100;
s 300;
b 500 100;
s 300;
b 500 100;
s 150;
b 500 100;
s 300;
b 500 60;
s 150;
b 500 80;
s 300;
b 500 60;
s 350;
b 500 80;
s 150;
b 580 80;
s 350;
b 660 80;
s 150;
b 500 80;
s 300;
b 430 80;
s 150;
b 380 80;
s 600;
b 500 60;
s 150;
b 500 80;
s 300;
b 500 60;
s 350;
b 500 80;
s 150;
b 580 80;
s 150;
b 660 80;
s 550;
b 870 80;
s 325;
b 760 80;
s 600;
b 500 60;
s 150;
b 500 80;
s 300;
b 500 60;
s 350;
b 500 80;
s 150;
b 580 80;
s 350;
b 660 80;
s 150;
b 500 80;
s 300;
b 430 80;
s 150;
b 380 80;
s 600;
b 660 100;
s 150;
b 660 100;
s 300;
b 660 100;
s 300;
b 510 100;
s 100;
b 660 100;
s 300;
b 770 100;
s 550;
b 380 100;
s 575;
}
Function Send-HappyBirthday
{
$BeepList = @(
@{ Pitch = 1059.274; Length = 300; };
@{ Pitch = 1059.274; Length = 200; };
@{ Pitch = 1188.995; Length = 500; };
@{ Pitch = 1059.274; Length = 500; };
@{ Pitch = 1413.961; Length = 500; };
@{ Pitch = 1334.601; Length = 950; };
@{ Pitch = 1059.274; Length = 300; };
@{ Pitch = 1059.274; Length = 200; };
@{ Pitch = 1188.995; Length = 500; };
@{ Pitch = 1059.274; Length = 500; };
@{ Pitch = 1587.117; Length = 500; };
@{ Pitch = 1413.961; Length = 950; };
@{ Pitch = 1059.274; Length = 300; };
@{ Pitch = 1059.274; Length = 200; };
@{ Pitch = 2118.547; Length = 500; };
@{ Pitch = 1781.479; Length = 500; };
@{ Pitch = 1413.961; Length = 500; };
@{ Pitch = 1334.601; Length = 500; };
@{ Pitch = 1188.995; Length = 500; };
@{ Pitch = 1887.411; Length = 300; };
@{ Pitch = 1887.411; Length = 200; };
@{ Pitch = 1781.479; Length = 500; };
@{ Pitch = 1413.961; Length = 500; };
@{ Pitch = 1587.117; Length = 500; };
@{ Pitch = 1413.961; Length = 900; };
);
foreach ($Beep in $BeepList) {
[System.Console]::Beep($Beep['Pitch'], $Beep['Length']);
}
}