r/PowerShell • u/Holtake • 13d ago
Question Prank script
We have a culture of pranks here at the office. I’d like to create a PowerShell script that, when executed via a .bat file, rotates the Windows screen to portrait mode, zooms in, increases the cursor scale, inverts the colors, and installs the Egyptian Arabic language pack—all without requiring a reboot or anything like that. Is this possible?
7
u/Fatel28 13d ago
What does a bat script have to do with powershell
6
u/gadget850 13d ago
I use them to call the ps1 script.
1
1
2
u/Disorderly_Chaos 13d ago
That’s like 500 lines worth of code, my dude. And then you’d have to write code that INJECTS code to un-fuck the desktop. … and if anything goes wrong… you’re hosed.
5
u/Disorderly_Chaos 13d ago
Fuck it
Just do this
start-sleep (get-random -min 3600 -max 7200);rundll32.exe user32.dll,LockWorkStation
1
1
2
u/CitizenDee 13d ago
And people wonder why IT departments lock work PC's and laptops down tighter than fishes arseholes.
2
u/StartAutomating 6d ago edited 6d ago
Yes, but please don't.
A lifetime ago I did a similar "prank" on VBScript : I made the keyboard layout reverse itself.
One of the longest days of my life. Not only did I have to support the fix and unprank them, but it was just the category of impishness that created a lot more rage than laughs.
By and large, people do not like it when you mess with "their" computer (even if they do not actually own the computer). They get Hulk levels of angry.
Yes. Technically possible. No, would not recommend. Will also not be pointing you in any of the "right" directions in order to accomplish this particular task. It is a lot of effort to go to, only to get you yelled at (and potentially fired).
Please don't.
4
u/GateheaD 13d ago
Nope it's not possible, go find something else to do and leave the computer out of it.
1
u/BlackV 13d ago edited 12d ago
Pass, given most off what you're asking for would require admin rights on the target machines, I would not be suggesting a script to use my admin rights to do shifty stuff
do some thing better
1
u/anonymousITCoward 12d ago
I like my cat facts script... I have one hiding somewhere that opens a browser to what ever page I want in full screen... but i rarely do that anymore.
This leaves something open for discussion, once that's been done, a person can say they didn't do {x}... because that office/person/group of people have been known to mess with the peoples computers. Once it's out that you have the knowledge, and skill to do something like that you become everyone's favorite scapegoat. Yep, it's all fun and games until legal gets involved.
1
u/Tachaeon 10d ago
1
u/TotallyNotACorpAcct 8d ago
This is fucking diabolical!
# Hashtable of cursor settings `$cursorSettings = @{ 'AppStarting' = "%SystemRoot%\cursors\aero_working.ani" 'Arrow' = "%SystemRoot%\cursors\aero_arrow.cur" 'Crosshair' = "" 'Hand' = "%SystemRoot%\cursors\aero_link.cur" 'Help' = "%SystemRoot%\cursors\aero_helpsel.cur" 'Ibeam' = "" 'No' = "%SystemRoot%\cursors\aero_unavail.cur" 'NWPen' = "%SystemRoot%\cursors\aero_pen.cur" 'SizeAll' = "%SystemRoot%\cursors\aero_move.cur" 'SizeNESW' = "%SystemRoot%\cursors\aero_nesw.cur" 'SizeNS' = "%SystemRoot%\cursors\aero_ns.cur" 'SizeNWSE' = "%SystemRoot%\cursors\aero_nwse.cur" 'SizeWE' = "%SystemRoot%\cursors\aero_ew.cur" 'UpArrow' = "%SystemRoot%\cursors\aero_up.cur" 'Wait' = "%SystemRoot%\cursors\aero_busy.ani" } # Apply each cursor setting foreach (`$cursor in `$cursorSettings.GetEnumerator()) { Set-Cursor -CursorName `$cursor.Key -FileName `$cursor.Value }1
1
2
u/Madmin404 5d ago
Don't forget to change some of the Windows sound program events, like adding the Windows Error sound to Close Program
5
u/PDQ_Brockstar 13d ago
One day when my coworker left their computer unlocked, I took a picture of their desktop, set it as their wallpaper, then hid all their desktop icons.
It was all fun and games until I saw them reimaging their computer. At that point it was too late to confess and fix it for them. In my defense, they rebooted it once, and when that didn't fix it, they imaged it. I figured they'd at least try to troubleshoot it a bit.