Bug Buster Brunobugbusterbruno.hashnode.dev·Oct 14, 2024Customize your PowerShell promptThe default PowerShell prompt is pretty basic and not very informative. It only shows “PS”, followed by a “>” sign. Luckily, it's possible to customize it by editing the PowerShell profile file. Here’s what it looks like before and after: PowerShel...DiscussPowershell
Till LazarevforLazarev Cloud team blogblog.lazarev.cloud·Sep 22, 2024Automate Your Troubleshooting: Essential Scripts for Common Windows and Linux IssuesIn today’s fast-paced digital landscape, system reliability and uptime are paramount for businesses and individuals alike. However, even the most robust systems can encounter issues that disrupt workflows and productivity. Manually diagnosing and fix...DiscussPowerShell Scripts
Till LazarevforLazarev Cloud team blogblog.lazarev.cloud·Sep 22, 2024Automating WinGet Path Fixes and Package Upgrades on Windows with PowerShellManaging software on Windows has become incredibly efficient thanks to WinGet, Microsoft’s Windows Package Manager. However, users sometimes face issues where the winget command isn’t recognized due to missing or incorrect path configurations. At Laz...Discuss·1 likeWindows Automation
Bernice Choybernicecpz.hashnode.dev·Aug 5, 2024How to Create and Update Gitlab CI/CD Variables Using PowerShellContext I needed to create multiple CI/CD variables in Gitlab on my Windows machine. I chose to be lazy and skip the Clickops, so I automated everything instead using PowerShell 🤪️️️️️️ Prerequisite Create a personal access token with api scope to ...Discuss·52 readsAutomation and ToolsGitLab
codingwithadicodingwithadi.hashnode.dev·May 12, 2024Elevating Automation: Mastering PowerShell and C# Integration with Dynamic Paths and ParametersHello, dear friends! In today's post, we're going to delve deeper into the world of automation by enhancing our PowerShell scripts and integrating them seamlessly with C# applications. We'll focus on using Path.Combine for creating dynamic paths and ...DiscussC#
Repro Devreprodev.hashnode.dev·Feb 16, 2024Simplify your OpenSSL CSR Requests with PowerCSR GUI ToolLet's all take a moment to think about all those Web Servers and Services that are secured with an SSL (Secure Socket Layer) certificate. That little padlock in the address bar that makes sure the traffic is trusted, encrypted and going through a HTT...Discussopenssl
Brian BaldockProblog.brianbaldock.net·Nov 4, 2023Automating UPN Suffix Updates in Active DirectoryIn a large-scale enterprise environment, managing User Principal Name (UPN) suffixes in Active Directory can become a herculean task, especially when there are domain transitions, mergers, or rebranding. Manually updating the UPN suffixes is not only...Discuss·62 readsPowershell scripting
Mohamed El ErakiforEraki Blogeraki.hashnode.dev·Oct 20, 2023#5 - PowerShell - Loops - Modules - PowerShell GaleryInception Hello everyone, This article is part of The PowerShell series, The knowledge in this series is built in sequence, Check out The PowerShell series. In the last article, we discussed Using Pipelines, Variables, And Functions. Today's Article ...Discuss·30 readsPowerShellPowershell
Yogeshwaran RforYogi's blogitops.hashnode.dev·Oct 8, 2023Find unknown SID in GPOImport-Module GroupPolicy $gpo = Get-GPO -All Foreach ($g in $gpo) { $permissions = $g.getsecurityinfo() Foreach ($p in $permissions) { If ($p.Trustee.SidType -eq “unknown”) { Write-Host “Policy with unknown SID: $($g.DisplayName)” Write-Host “Truste...DiscussPowershell scripting
Aasifa Shaikmysoftwarediary.hashnode.dev·Oct 7, 2023Getting started with PowerShellIntroduction Like Bash scripting is commonly used in Unix-based systems, including Linux and macOS. similarly, PowerShell is indeed a powerful scripting language and automation framework primarily associated with Windows operating systems, It is One ...DiscussDevops