Merge pull request #385 from P-ict0/master

Max Volume Rickroll for Windows 10/11
more_extensions
Dallas Winger 2023-10-16 06:40:28 -04:00 committed by GitHub
commit 263a88036e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Max Volume Rickroll
## Description
Runs following oneliner in Windows Run:
```PowerShell
powershell $obj = New-Object -ComObject WScript.Shell; 1..50 | ForEach-Object { $obj.SendKeys( [char] 175 ) }; Start-Process 'https://www.youtube.com/watch?v=xvFZjo5PgG0&autoplay=1'
```
Turns up the volume of **Windows 10/11** computer to **100%** and opens **rickroll** in the default browser
## Requirements
- Windows 10/11
- Internet connection (to open rickroll)
- US Keyboard Layout (to turn up the volume, not tested with other layouts)
## Check me out
https://github.com/P-ict0

View File

@ -0,0 +1,9 @@
REM Title: Simple max volume rickroll
REM Author: P-ict0 (https://github.com/P-ict0)
REM Description: Turns up the volume to 100% and opens rickroll in default browser, all in one command
REM https://github.com/P-ict0/duckyINO/tree/main/payloads/funny/rickroller
DELAY 3000
GUI r
STRING powershell $obj = New-Object -ComObject WScript.Shell; 1..50 | ForEach-Object { $obj.SendKeys( [char] 175 ) }; Start-Process 'https://www.youtube.com/watch?v=xvFZjo5PgG0&autoplay=1'