PowerShell Command Line Debugging

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ธ.ค. 2024

ความคิดเห็น • 7

  • @ashisharya65
    @ashisharya65 2 ปีที่แล้ว +3

    Wow Adam. Learnt a new thing today in PowerShell. Thanks a lot for sharing this. 👍

  • @mandem9319
    @mandem9319 2 ปีที่แล้ว +1

    Aha!
    Been wrestling around with this throughout the day but couldn't really get it to cooperate. This video surely highlighted a few gotchas that should help me along nicely tomorrow!
    Thanks for these videos, Adam. I really appreciated them. A lot!

  • @ashisharya65
    @ashisharya65 2 ปีที่แล้ว +3

    @Adam : I request you to please make videos on topics like a Working with Advance Function, Using PowerShell to work with .net methods, working with rest APIs using PowerShell etc. Thanks.

  • @garypuckering7458
    @garypuckering7458 6 หลายเดือนก่อน

    Very helpful! Thanks!

  • @espressobuzz1253
    @espressobuzz1253 ปีที่แล้ว

    Is there a way to get-content, but with line numbers? In order to know what line to set a breakpoint on. Thx.

  • @LukeAvedon
    @LukeAvedon 4 หลายเดือนก่อน

    LOVE this.

  • @espressobuzz1253
    @espressobuzz1253 ปีที่แล้ว

    I guess....Get-Content .\fileName.ps1 | Select-String -Pattern "search string here" | Select-Object LineNumber, but I'd rather 'cat' through the file & see it all like vim line numbers.