These are public posts tagged with #powershell. You can interact with them if you have an account anywhere in the fediverse.
PowerShell Wednesdays are now on YouTube! Learn from Lucas Allman about pipelines and level up your skills. Join us live every Wed at 2PM ET on PDQ Discord! Full video in comments. #PowerShellWednesday #PowerShell
New blog post before MMSMOA 2025. I wanted to write something before then. I went into some details on how we randomize our rollouts of #Intune policies with a #Powershell function to randomize an #Entra group.
Creating Intune Randomized Rollouts with Entra Group…
JoeLoveless.comHave you seen what's new in the #PowerShell Gallery? Use the PSGallery reports. https://github.com/jdhitsolutions/PSGalleryReport
Here's a module I use to display a large, customizable clock on my Windows desktop using a WPF-based #PowerShell tool. https://github.com/jdhitsolutions/PSClock
:watch: A set of PowerShell commands for creating and…
GitHubWrote a quick blog post for Windows users: How to create a custom shortcut with Powertoys, to string together unlimited shortcuts.
#windows #windows11 #powertoys #powershell
https://blog.ifconfig.pro/2025/04/16/windows-powertoys-2-in-1-short-cuts/
Run #XSLT transform on #XML file in #dotnet #PowerShell
$filedatetime = $( get-date -format 'yyyyMMdd hhmmss ffff' )
$filedate = $filedatetime.substring(0,8)
$myxsltfile = 'xyz.xsl'
$myfilein = 'xyz_' + $filedate + '.rss'
$myfileout = 'xyz_' + $filedate + '.txt'
Write-Output "xyz's RSS feed to Text on " + $filedate
$xslt = New-Object System.Xml.Xsl.XslCompiledTransform;
$xslt.load( $myxsltfile )
$xslt.Transform( $myfilein , $myfileout )
Write-Output " Done."
Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount
Your weekly dose of PowerShell magic has arrived! Discover Announcements, Blogs, Modules, and more in PowerShell Weekly for April 18, 2025. Time to level up!
#PowerShell #Automation #TechNews
https://psweekly.dowst.dev/?p=7763
FYI: There is a new major release of the PnP.PowerShell (#SharePoint administration) #PowerShell module. "Biggest release yet" (!!) More info: https://pnp.github.io/blog/pnp-powershell/pnp-powershell-v3-0-0/
Detailed change log: https://github.com/pnp/powershell/blob/master/CHANGELOG.md
PnP PowerShell is a cross-platform PowerShell Module…
Microsoft 365 and Power Platform Community BlogSome really fantastic #CommandLine tips in this newsletter by @NVAccess https://www.nvaccess.org/post/in-process-11th-april-2025/ #NVDA #PowerShell #Terminal #CommandPrompt
We are getting close to a beta for NVDA 2025.1. We…
NV AccessI've come to the conclusion that the command line is peak UI. It's fast, and it doesn't freeze as often. I had an issue where I tried to delete a task in the Windows Task Scheduler and every time I would try, the UI froze on me. I piped the below into Powershell and it was deleted! No lag, no nothing!
Unregister-ScheduledTask -TaskName "RClone Backup Writings"
Threat actors misuse Node.js to deliver malware and other malicious payloads
Since October 2024, threat actors have been leveraging Node.js to deliver malware and payloads for information theft and data exfiltration. A recent malvertising campaign uses cryptocurrency trading themes to lure users into downloading malicious installers. The attack chain includes initial access, persistence, defense evasion, data collection, and payload delivery. The malware gathers system information, sets up scheduled tasks, and uses PowerShell for various malicious activities. Another emerging technique involves inline JavaScript execution through Node.js. Recommendations include educating users, monitoring Node.js execution, enforcing PowerShell logging, and implementing endpoint protection.
Pulse ID: 67fec5ac1e94a608250d9aa2
Pulse Link: https://otx.alienvault.com/pulse/67fec5ac1e94a608250d9aa2
Pulse Author: AlienVault
Created: 2025-04-15 20:46:36
Be advised, this data is unverified and should be considered preliminary. Always do further verification.
#CyberSecurity #Endpoint #InfoSec #InformationTheft #Java #JavaScript #Malvertising #Malware #Nodejs #OTX #OpenThreatExchange #PowerShell #RAT #ScriptExecution #bot #cryptocurrency #AlienVault
iX-Workshop: PowerShell für Systemadministratoren - Effiziente Automatisierung
Aufgaben optimieren und Systeme verwalten: Lernen Sie, wie Sie mit PowerShell Ihre Windows-Administration effizient automatisieren und optimieren.
#Automatisierung #IT #iXWorkshops #PowerShell #Windows #news
Aufgaben optimieren und Systeme verwalten: Lernen Sie,…
heise onlineI've released an update to the PSPodcast #PowerShell module https://github.com/jdhitsolutions/PSPodcast
If you missed it, check out my chat from #PowerShell Summit with @franklesniak@infosec.exchangeinfosec.exchange and David R.
Frank is longtime bar session guest and interviews me for a bit, but only after sharing game on how to grow and capitalize on your career
David is a listener and first-timer and shares their journey to #PSHSummit
New Open-Source Tool Spotlight
Invoke-Obfuscation is a PowerShell framework for generating heavily obfuscated scripts. It simulates attacker techniques, allowing defenders to test detection systems against syntax manipulation in versions 2.0+. A valuable tool for Blue Teams refining PowerShell monitoring. #PowerShell #CyberSecurity
Project link on #GitHub
https://github.com/danielbohannon/Invoke-Obfuscation
#Infosec #Cybersecurity #Software #Technology #News #CTF #Cybersecuritycareer #hacking #redteam #blueteam #purpleteam #tips #opensource #cloudsecurity
— P.S. Found this helpful? Tap Follow for more cybersecurity tips and insights! I share weekly content for professionals and people who want to get into cyber. Happy hacking
@spencer Came across this nice #Powershell #JSON #tutorial that explains a few quirks to handle too.
Using PowerShell to Read and Write JSON (Updated)
https://www.alkanesolutions.co.uk/2023/05/04/using-powershell-to-read-and-write-json/
cc: @ryan
This blog provides a simple example of using PowerShell…
Alkane Solutions Application Packaging ServicesI caught up with first-time attendee, Lucas, about their biggest takeaway from #PSHSummit 2025 so far
I just learned Powershell has a ‘WhatIf’ parameter to show what a command will do before actually executing it.
#powershell