How to get the shell interface like that on mac silicone?
@allensbad917923 күн бұрын
Great video thanks. Maybe you can help if you read this as I have been searching for days for a solution to my problem. I'm trying to attach a certificate to a IIS smtp server, the certificate is already installed in the certificate store. I'm trying to do this in C# using System.Management.Automation and this is my first time using System.Management.Automation. This is the powershell command that works in the powershell console. # Get the SMTP server object $smtpServer = Get-WmiObject -Namespace root/MicrosoftIISv2 -Class IIsSmtpServerSetting # Specify the certificate thumbprint $certThumbprint = "YOUR_CERTIFICATE_THUMBPRINT" # Set the certificate on the SMTP server $smtpServer.ServerCertHash = $cert.GetCertHash() $smtpServer.Put() Here's what I have using System.Management.Automation but I cant figure out how to access the Put() method. Collection<PSObject> results = powershell .AddCommand("Get-WmiObject") .AddParameter("-Class", "iissmtpserversetting") .AddParameter("-Namespace", @"root\microsoftiisv2") .Invoke(); The results gives me what seems to be the IIsSmtpServerSetting but its wrapped by the PSObject and I can't seem to find the Put() method. Hope someone can help Al
@milosmaksimovic874624 күн бұрын
Are there any news, when Piping support for PowerShell Graph is coming?
@bzmrgonzАй бұрын
Wonderful work Chris. Thanks for a wonderful and comprehensive intro to redfish/swordfish. I think it is going to prove invaluable in our visibility plane, as well as ondemand query, as well as, as you mentioned, baselining and asset state comparison.
@m1nor1_Ай бұрын
Very informative. But why isn't this included in Secure Score or some other feature in M365 ?
@michaelpettersson6028Ай бұрын
Could errohandling be more complicated…
@Zachsnotboard2 ай бұрын
Blue team version of azure hound haha
@merillxАй бұрын
I ❤ this comparison of 🔥Maester. I'm going to steal it. Thanks Zach!
@HEADSPACEnTIMING2 ай бұрын
i think i've watched this about 5 times over the weekend as I worked on a very complex active directory script, lots of knowlege and very enjoyed able instruction, thankyou
@BenGyaaattttt2 ай бұрын
I wish we got to know the 42 char solution :(
@FeliksTrzymalko2 ай бұрын
Thanks for sharing this, Steven seems so passionate about technology that I imediately started googling for other his stuff.
@JoeKuster2 ай бұрын
Great to know I was doing everything wrong 🤣 - Thanks for calling out more efficient methods of working with graph throttling
@tomfahlberg2 ай бұрын
Excellent vid. Helped me with many questions that I had about using PowerShell in my component. Thanks.
@dilatedconciousness2 ай бұрын
Too much water drinking
@prakashjha262 ай бұрын
Brilliant stuff... Cleared up lots for things for me. One day, i want to attend PowerShell Summit.
@Toommy783 ай бұрын
Thank for the talk. Are you able to suggest any tutorials on PowerShell graph more like step by step, especially how to handle relations, odata etc ?
@mptcz3 ай бұрын
Amazing presentation, I keep rewatching this. 🙌👏
@mannedmodule3 ай бұрын
Very clear and to the point. I particulary enjoyed the English accent and anecdotes just as much.❤
@allwayshype3 ай бұрын
This was really fantastic! Thank you, Michael!
@bjornsjoberg98893 ай бұрын
Great tips and tricks. Learned a lot about the how's and why's. Thank you!
@shivakumarshiva00101313 ай бұрын
useful information on AI more than powershell.
@johnnyrico99573 ай бұрын
F me but you're first of all not in a presentation - too much back and forth ... really. Nobody can follow you. I gave you the minute 39 chance. NO! BYE! FFS
@shivakumarshiva00101313 ай бұрын
very useful presentation.
@ammadkhan46874 ай бұрын
can I host ansible in cloud and update windows laptop which are always out of internal network. They are always connected to extrnal network. no vpn
@mattcargile4 ай бұрын
Really cool stuff. Love the toys.😊
@AbdullahOllivierreIT4 ай бұрын
## Summary of "Best Practices for Creating PowerShell Modules: A Vendor's Perspective" by Robert Quimbey This KZbin video by Robert Quimbey, a product manager at Pure Storage, shares practical insights on developing PowerShell modules from a vendor's perspective. He emphasizes the importance of building modules that are: **User-Friendly and Troubleshootable:** * **Don't hide modules:** Use built-in PowerShell tools for easy troubleshooting and allow users to find and manage modules easily. * **Provide clear help:** Utilize built-in "Get-Help" functionality and consider Dynamic Help for automatic updates. * **Support multiple versions:** Allow simultaneous installation of different versions of a module and its dependencies. * **Consider backward compatibility:** Handle different API versions and provide ways for users to specify specific API versions. * **Offer alternatives:** Provide CLI options for functionality not yet available in the API. **Automated and Efficient:** * **Automate release notes:** Use scripts to generate release notes automatically by comparing old and new module versions. * **Automate code generation:** Use tools like Swagger to generate module functions from API changes. * **Test thoroughly:** Utilize Pester for unit testing and Jenkins for orchestration of testing. * **Implement robust logging:** Log critical information for troubleshooting and track module usage for development prioritization. **Best Practices for Module Development:** * **Minimize parameter creep:** Avoid adding too many parameters to a commandlet to simplify usage and testing. * **Filter data on the endpoint:** Reduce network traffic and improve performance by filtering data at the source. * **Set reasonable defaults:** Provide default values for parameters and consider providing a configuration file for customization. * **Provide clear examples:** Include sample scripts in the help documentation and on GitHub to demonstrate common use cases. **Key Takeaways:** * Building user-friendly, stable, and efficient PowerShell modules requires careful planning and attention to detail. * Automation is crucial for streamlining development and release processes. * Consider the needs and limitations of your users and the environments they work in when making design decisions. This presentation provides valuable insights and recommendations for developers looking to create high-quality PowerShell modules that are both practical and maintainable.
@Traxano4 ай бұрын
Thank you I just needed this for my scripts!!
@MartinBinder19675 ай бұрын
Ever questioned yourself about your abilities as a speaker? Oh boy, that was the least content in the longest speaking time ever - this was essentially a 10 minutes talk blown up to a full hour. And nothing was really new with the possible exception of PS7 optimizations for | out-null... The only takeaway for me was your testing framework which I really like.
@abhijeetpathare67875 ай бұрын
Great Learning thanks
@jocelsabellano3785 ай бұрын
Pode is an an amazing framework for building APIs in pwsh.
@robervaldo46335 ай бұрын
great talk! I'm a quite experienced linux sysadmin, worked as a windows sysadmin from 2010-2014, although don't really use it much nowadays, still love and miss powershell, I wish it to gain ground in the linux sysadmin space
@ravilobo79775 ай бұрын
This is so awesome! Just the timeline option is so useful. Thank you so much.
@That_IT_Trainer5 ай бұрын
His book windows PowerShell in action is the Bible in PowerShell
@Traxano5 ай бұрын
Underrated video, thank Ou
@chrisrogers10925 ай бұрын
Lets see how close chatgpt can get me to this
@therealpatod5 ай бұрын
Great content, thanks Michael!
@BrianGonzalezReal6 ай бұрын
he mentions a github in the comments, but no luck :( I was hoping I could grab his testing json entries.
@archygonzalez30866 ай бұрын
Update the db in apt and source the shell to get a new session in the current session and it would have detected the java RunTime or force it by exporting the RUNTIME variable to the local session in the current shell or force systemd to restart in place (but wsl dont know if systemd is actually there)
@Wahinies6 ай бұрын
What is the best way to protect the password file? Deny file ACLs with disabled inheritance?
@RevengeBS6 ай бұрын
e essa barriguinha aí em
@analyth6 ай бұрын
Thank your for this great talk! 🙂
@이상의bld6 ай бұрын
donald trump
@bennguyen13136 ай бұрын
So are package managers (WinGet, Chocolatey, Scoop, Pacman, etc) meant for system administrators, or do end users (or teams) benefit? For example, a small team developing firmware in which the end customer may upgrade the firmware running on the device?
@HeyItsGilbertS6 ай бұрын
Phenomenal talk Chris! I've only learned about Redfish earlier this year and it's been great to use. I look forward to pulling the toolkit (and hopefully contributing!).
@sureshkrishnan837 ай бұрын
Excellent Session :)
@alioughana7 ай бұрын
Awesome!
@RPG_ash7 ай бұрын
Great Duo. Nice talk 👍🏻
@RPG_ash7 ай бұрын
Nice 👍🏻
@RPG_ash7 ай бұрын
Very interesting, thanks for sharing 👍🏻
@nvlddmkm12827 ай бұрын
Man, bummer - it almost seems like it would've been better to risk fixing the resolution even if it ruined the demo, since this demo was the bulk of the presentation and it was unreadable rendering it basically useless anyway.