From bf9d21b626cb56d89a794619a1bc0bd61086d060 Mon Sep 17 00:00:00 2001 From: es3n1n Date: Tue, 20 May 2025 12:08:01 +0900 Subject: [PATCH] docs(readme): make advanced usage examples shorter --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c2f9d3..7a986dc 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ Open the powershell as administrator and execute any of these: irm https://es3n1n.io/defendnot.ps1 | iex # Example 2: With custom AV name -& ([ScriptBlock]::Create((Invoke-RestMethod https://es3n1n.io/defendnot.ps1))) --name "Custom AV name" +& ([ScriptBlock]::Create((irm https://es3n1n.io/defendnot.ps1))) --name "Custom AV name" # Example 3: Without allocating console -& ([ScriptBlock]::Create((Invoke-RestMethod https://es3n1n.io/defendnot.ps1))) --silent +& ([ScriptBlock]::Create((irm https://es3n1n.io/defendnot.ps1))) --silent ``` > [!NOTE]