2022/02/14 #破壊するコマンド

皆様おはようございます、

#猫でもできるPowerShell(備忘録)

#破壊するコマンド

PS> Get-Command *break* |FT -a
Alias    dbp -> Disable-PSBreakpoint            
Alias    ebp -> Enable-PSBreakpoint            
Alias    gbp -> Get-PSBreakpoint            
Alias    rbp -> Remove-PSBreakpoint            
Alias    sbp -> Set-PSBreakpoint            
Cmdlet    Disable-PSBreakpoint    3.1.0.0    Microsoft.PowerShell.Utility    
Cmdlet    Enable-PSBreakpoint    3.1.0.0    Microsoft.PowerShell.Utility    
Cmdlet    Get-PSBreakpoint    3.1.0.0    Microsoft.PowerShell.Utility    
Cmdlet    Remove-PSBreakpoint    3.1.0.0    Microsoft.PowerShell.Utility    
Cmdlet    Set-PSBreakpoint    3.1.0.0    Microsoft.PowerShell.Utility    

破壊するコマンド(レット)の割には中身とエイリアスがそろっていて綺麗です
ではまた;