惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
WordPress大学
WordPress大学
D
DataBreaches.Net
腾讯CDC
小众软件
小众软件
B
Blog RSS Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Y
Y Combinator Blog
V
V2EX
I
InfoQ
D
Docker
量子位
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Discover PowerShell Commands: Advanced Searching
arnostorg · 2026-04-25 · via DEV Community

Discover PowerShell Commands: Advanced Searching

PowerShell has commands you don't know about. Learn to find them using verb-noun patterns.

How It Works

PowerShell commands follow Verb-Noun naming. Get-Process, Remove-Item, Set-Location. Once you understand the pattern, you can predict command names. Get-Command helps you discover commands you didn't know existed.

Code Examples

Search by Pattern

# Find all commands with 'process' in the name
Get-Command -Name '*process*'

# Results:
# Get-Process
# Stop-Process
# Wait-Process

Enter fullscreen mode Exit fullscreen mode

Search by Verb

# Find all 'Get' commands
Get-Command -Verb Get

# Result: Hundreds of commands that retrieve information!

# Find all 'Set' commands
Get-Command -Verb Set

# Commands that configure or change things

Enter fullscreen mode Exit fullscreen mode

Search by Noun

# Find all commands working with 'Item' (files/folders)
Get-Command -Noun Item

# Results:
# Clear-Item
# Copy-Item
# Get-Item
# Move-Item
# Remove-Item
# Rename-Item
# Set-Item

# All file operations in one place!

Enter fullscreen mode Exit fullscreen mode

See All Available Verbs

# What verbs exist in PowerShell?
Get-Verb

# See the complete list - helps you think in PowerShell terms

Enter fullscreen mode Exit fullscreen mode

Most Used Options

  • -Name 'word' - Find command by name pattern
  • -Verb - Find all commands using this verb
  • -Noun - Find all commands for this noun
  • Get-Verb - See all official PowerShell verbs

The Trick: Power Usage

Predict command names using verb-noun pattern:

# You need to: Create a new service
# Think: New + Service = New-Service
Get-Command -Name '*service*'  # Verify it exists

# You need to: Stop a process
# Think: Stop + Process = Stop-Process
Get-Command -Name '*process*'  # Verify it exists

# This prediction skill saves Google searches!

Enter fullscreen mode Exit fullscreen mode

Build a custom command list:

# Save all Item commands to a file
Get-Command -Noun Item | Select-Object Name | Out-File item-commands.txt

# Reference whenever you need file operations

Enter fullscreen mode Exit fullscreen mode

Learn It Through Practice

Stop reading and start practicing:

👉 Practice on your browser

The interactive environment lets you type these commands and see real results.

Part of PowerShell for Beginners

This is part of the PowerShell for Beginners series:

  1. Getting Started - Your first commands
  2. Command Discovery - Find what exists
  3. Getting Help - Understand commands
  4. Working with Files - Copy, move, delete
  5. Filtering Data - Where-Object and Select-Object
  6. Pipelines - Chain commands together

Related Resources

Summary

You now understand:

  • How this command works
  • The most useful options
  • One powerful trick
  • Where to practice hands-on

Practice these examples until they're automatic. Mastery comes from repetition.


Practice now: Head to the interactive environment and try these commands yourself. That's how PowerShell clicks for you!

What would you like to master next?