mirror of
https://github.com/massgravel/Microsoft-Activation-Scripts.git
synced 2026-04-27 06:55:51 +03:00
[GH-ISSUE #132] Powershell Command #113
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Microsoft-Activation-Scripts#113
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mucookul on GitHub (Aug 25, 2022).
Original GitHub issue: https://github.com/massgravel/Microsoft-Activation-Scripts/issues/132
You can make the command smaller:
irm https://massgrave.dev/get | iexJust sayin
@mucookul commented on GitHub (Aug 27, 2022):
you didn't update the website and gitlab in case you forgot
@RokeJulianLockhart commented on GitHub (Jan 26, 2025):
@Mukul1127, it's not generally a good idea to use aliases, though. They're fragile, since if anything in
$PATHoverrides them, you'll be calling another command, and they're frequently deprecated without much grace period. They're not even consistent across editions of PowerShell (like Core). Better to expand them to their commandlets.@thecatontheceiling commented on GitHub (Jan 26, 2025):
I am afraid you're a bit late to the party (This change was made years ago!).
We haven't seen any users report issues with the shortened aliases rather than using the expanded commandlets, so your concerns have ended up not being an issue, thank you for the feedback though
@mucookul commented on GitHub (Jan 26, 2025):
Hm, I didn't know that, maybe we could add a note to the docs using
iwr -useb. I believeirmworks in all versions of PowerShell though and I don't know of any tool using that name.@thecatontheceiling commented on GitHub (Jan 26, 2025):
It's not necessary