Audit Events in Your Azure Subnoscription with PowerShell
By: Trevor Jones
Update! v.1.1 released fixing a bug where the most recent events were not being returned (2022-09-13) A quick post - I just published a new noscript for retrieving activity log events for an Azure subnoscription as the current options for searching and retrieving events didn't satisfy me.
Link
By: Trevor Jones
Update! v.1.1 released fixing a bug where the most recent events were not being returned (2022-09-13) A quick post - I just published a new noscript for retrieving activity log events for an Azure subnoscription as the current options for searching and retrieving events didn't satisfy me.
Link
smsagent.blog
Audit Events in Your Azure Subnoscription with PowerShell
Update! v.1.1 released fixing a bug where the most recent events were not being returned (2022-09-13) A quick post – I just published a new noscript for retrieving activity log events for an Az…
Today's cmdlet ‣ Compress-Archive
Creates a compressed archive, or zipped file, from specified files and directories.
Example's Remarks:
• The Path parameter accepts specific file names and file names with wildcards, `*.vsd`.
• The Path uses a comma-separated list to get files from different directories.
• The compression level is Fastest to reduce processing time.
• The DestinationPath parameter specifies the location for the `Draft.zip` file.
• The `Draft.zip` file contains `Draftdoc.docx` and all the files with a `.vsd` extension.
#tutorial
Creates a compressed archive, or zipped file, from specified files and directories.
Example's Remarks:
• The Path parameter accepts specific file names and file names with wildcards, `*.vsd`.
• The Path uses a comma-separated list to get files from different directories.
• The compression level is Fastest to reduce processing time.
• The DestinationPath parameter specifies the location for the `Draft.zip` file.
• The `Draft.zip` file contains `Draftdoc.docx` and all the files with a `.vsd` extension.
#tutorial
PowerShell Secrets Management – Part 4: Backup/Export/Migrate Secrets
By: Roman Stadlmair
The PowerShell Secrets Management Module became one of my must-haves on every computer i use with PowerShell. I already wrote a couple of posts about it. First Look into the beta module 1-Introduction 2-Installation and first steps 3-Use secrets in noscripts Recently i tested a Macbooc Air M1 and wanted to use the secrets i had on my main Windows machine. The approac was to simply generate a CSV-file from the secrets and import it on the Mac. As a reminder, lets summarize what Secrets Managemt Architecture is about. Secrets are stored in Vaults Secrets may occur in the form
Link
By: Roman Stadlmair
The PowerShell Secrets Management Module became one of my must-haves on every computer i use with PowerShell. I already wrote a couple of posts about it. First Look into the beta module 1-Introduction 2-Installation and first steps 3-Use secrets in noscripts Recently i tested a Macbooc Air M1 and wanted to use the secrets i had on my main Windows machine. The approac was to simply generate a CSV-file from the secrets and import it on the Mac. As a reminder, lets summarize what Secrets Managemt Architecture is about. Secrets are stored in Vaults Secrets may occur in the form
Link
www.powershell.co.at
PowerShell Secrets Management - Part 4: Backup/Export/Migrate Secrets
The PowerShell Secrets Management Module became one of my must-haves on every computer i use with PowerShell. I already wrote a couple of posts about it.
Fir
Fir
HTML Reporting with Powershell Part 1 Creating the Basic Report
By: Chasse TAC
In tis video, we look at how to create an html report in powershell. This will shows the basics of how to create a multiple fragment body and why it's needed for more complex reports.
Link
By: Chasse TAC
In tis video, we look at how to create an html report in powershell. This will shows the basics of how to create a multiple fragment body and why it's needed for more complex reports.
Link
YouTube
HTML Reporting with Powershell Part 1 Creating the Basic Report
In tis video, we look at how to create an html report in powershell. This will shows the basics of how to create a multiple fragment body and why it's needed for more complex reports.
In the upcoming part 2 video, we'll then add css and html tag info into…
In the upcoming part 2 video, we'll then add css and html tag info into…
👍1
Updating and setting primary attributes in SuccessFactors with PowerShell
By: Darren Robinson
Approximately five years ago I rolled through a number of Identity and Access lifecycle management projects that used SAP SuccessFactors as the source of authority for user data. It isn't uncommon to use a HRM solution to source identity data, but it is never a one way street.
Link
By: Darren Robinson
Approximately five years ago I rolled through a number of Identity and Access lifecycle management projects that used SAP SuccessFactors as the source of authority for user data. It isn't uncommon to use a HRM solution to source identity data, but it is never a one way street.
Link
darrenjrobinson - Bespoke Identity and Access Management Solutions
Updating and setting primary attributes in SuccessFactors with PowerShell - darrenjrobinson - Bespoke Identity and Access Management…
Updating SuccessFactors with email addresses or phone numbers with PowerShell and setting them as Primary via API using upsert and purgeType.
Install, remove, list, and set default printer with PowerShell
By: Emanuel Halapciuc
With PowerShell, you can easily install a printer driver, add a printer to the repository, and then add a local or shared network printer to your Windows installation. In this post, I will also explain how you can list printers, add a printer port, set the default printer, and remove a printer with PowerShell.
Link
By: Emanuel Halapciuc
With PowerShell, you can easily install a printer driver, add a printer to the repository, and then add a local or shared network printer to your Windows installation. In this post, I will also explain how you can list printers, add a printer port, set the default printer, and remove a printer with PowerShell.
Link
👍1
PsInfo: Get disk space, installed applications, and other information about local and remote Windows systems
By: Leos Marek
PsInfo, a command-line tool that is part of the Sysinternals suite, gets key information about Windows systems, such as the type of installation, available disk space, installed applications, kernel build number, uptime, registered owner, and the number of processors.
Link
By: Leos Marek
PsInfo, a command-line tool that is part of the Sysinternals suite, gets key information about Windows systems, such as the type of installation, available disk space, installed applications, kernel build number, uptime, registered owner, and the number of processors.
Link
4sysops
PsInfo: Get disk space, installed applications, and other information about local and remote Windows systems
PsInfo, a command-line tool that is part of the Sysinternals suite, gets key information about Windows systems, such as the type of installation, available disk space, installed applications, kernel build number, uptime, registered owner, and the number of…
Format time and date output of PowerShell New-TimeSpan
By: Emanuel Halapciuc
My function, Get-TimespanPretty, allows you to view the time span-the difference between two time points or dates-in a compact, user-friendly format. It is built on top of the New-TimeSpan cmdlet, which offers details as output that you usually need. With Get-TimespanPretty, you can simply pipe the output (TimeSpan object) of New-TimeSpan or Measure-Command to Get-TimespanPretty. It's easy to use, and there's no need for complex reworking of noscripts that may include such commands.
Link
By: Emanuel Halapciuc
My function, Get-TimespanPretty, allows you to view the time span-the difference between two time points or dates-in a compact, user-friendly format. It is built on top of the New-TimeSpan cmdlet, which offers details as output that you usually need. With Get-TimespanPretty, you can simply pipe the output (TimeSpan object) of New-TimeSpan or Measure-Command to Get-TimespanPretty. It's easy to use, and there's no need for complex reworking of noscripts that may include such commands.
Link
4sysops
Format time and date output of PowerShell New-TimeSpan
My function, Get-TimespanPretty, allows you to view the time span—the difference between two time points or dates—in a compact, user-friendly format. It is built on top of the New-TimeSpan cmdlet, which offers details as output that you usually need. With…
🔥1
Using PowerShell on chromeOS Flex
By: Harm Veenstra
On an older laptop, I use chromeOS Flex. Easy to install, and for simple web browsing, it's a perfect solution without any license requirement. But yeah... I also wanted to use PowerShell on that, this blog post will show you how to install and use PowerShell on chromeOS Flex.
Link
By: Harm Veenstra
On an older laptop, I use chromeOS Flex. Easy to install, and for simple web browsing, it's a perfect solution without any license requirement. But yeah... I also wanted to use PowerShell on that, this blog post will show you how to install and use PowerShell on chromeOS Flex.
Link
PowerShell is fun :)
PowerShell is fun :) Using PowerShell on chromeOS Flex
On an older laptop, I use chromeOS Flex. Easy to install, and for simple web browsing, it’s a perfect solution without any license requirement. But yeah… I also wanted to use PowerShell…
Today's tip ‣ Arrays: Arrays as reference types
”As array types are reference types, a variable designating an array can be made to refer to any array of any rank, length, and element type.”
#tip
”As array types are reference types, a variable designating an array can be made to refer to any array of any rank, length, and element type.”
$a = 10,20 # $a refers to an array of length 2
$a = 10,20,30 # $a refers to a different array, of length 3
$a = "red",10.6 # $a refers to a different array, of length 2
$a = New-Object 'int[,]' 2,3 # $a refers to an array of rank 2#tip
Microsoft Graph Known Issue
By: Sam Erde
If you're using the Microsoft Graph API and getting repeated auth prompts with every request you may have a corrupt token cache.
Link
By: Sam Erde
If you're using the Microsoft Graph API and getting repeated auth prompts with every request you may have a corrupt token cache.
Link
Twitter
If you're using the Microsoft #Graph API and getting repeated auth prompts with every request, you may have a corrupt token cache. Reset it w/#PowerShell:
Disconnect-MgGraph
Remove-Item "$env:USERPROFILE\.graph" -Recurse -Force
Reconnect.
Profit 😎
h…
Disconnect-MgGraph
Remove-Item "$env:USERPROFILE\.graph" -Recurse -Force
Reconnect.
Profit 😎
h…
AzExpression 0.2.0
By: Simon Wahlin
Small module with functions that let you run Azure ARM template functions from PowerShell
Link
By: Simon Wahlin
Small module with functions that let you run Azure ARM template functions from PowerShell
Link
Powershellgallery
AzExpression 0.2.0
Small module with functions that let you run Azure ARM template functions from PowerShell
How to Use a PowerShell Array
By: Michael Reinders
A PowerShell array is a data structure designed to store
Link
By: Michael Reinders
A PowerShell array is a data structure designed to store
Link
Petri
How to Use a PowerShell Array | Petri IT Knowledgebase
A PowerShell array is what you need to use whenever you need to gather or even manipulate multiple pieces of data. In this article, we'll explain how PowerShell arrays work, how to use an array of objects, and everything you need to know about PowerShell…
How do you schedule your PS noscripts?
By: u/Distinct_Ship_3152
Im with two small IT help desk/ ops teams located in two different manufacturing plants.
Link
By: u/Distinct_Ship_3152
Im with two small IT help desk/ ops teams located in two different manufacturing plants.
Link
reddit
How do you schedule your PS noscripts?
Im with two small IT help desk/ ops teams located in two different manufacturing plants. We have leaned on our global IT teams for automation so...
How to add BGP routes to AWS security groups
By: Alex Neihaus
PowerShell's Compare-Object makes it easy to compare two collections of objects
Link
By: Alex Neihaus
PowerShell's Compare-Object makes it easy to compare two collections of objects
Link
Thinking aloud
Thinking aloud | How to add BGP routes to AWS security groups
PowerShell’s Compare-Object makes it easy to compare two collections of objects
Today's cmdlet ‣ Get-WinEvent
Gets events from event logs and event tracing log files on local and remote computers.
Example's Remarks:
• In this example, `Get-WinEvent` gets all events from the Application log for the last two days except those that have a Level of 4 (Information).
#tutorial
Gets events from event logs and event tracing log files on local and remote computers.
Example's Remarks:
• In this example, `Get-WinEvent` gets all events from the Application log for the last two days except those that have a Level of 4 (Information).
#tutorial
👍1
PowerShell SnippetRace 44/45-2022
By: Roman Stadlmair
PSScriptAnalyzer, OpenSSH, curl, -ne, Azure Automation Events PowerShell Workshop (MS-Graph, PowerShellGet, news around PS), 9. November 2022 in Linz. Workshop will be held in GERMAN language.
Link
By: Roman Stadlmair
PSScriptAnalyzer, OpenSSH, curl, -ne, Azure Automation Events PowerShell Workshop (MS-Graph, PowerShellGet, news around PS), 9. November 2022 in Linz. Workshop will be held in GERMAN language.
Link
www.powershell.co.at
PowerShell SnippetRace 44/45-2022
PSScriptAnalyzer, OpenSSH, curl, -ne, Azure Automation
Events
PowerShell Workshop (MS-Graph, PowerShellGet, news around PS), 9. November 2022 in Linz. See
Events
PowerShell Workshop (MS-Graph, PowerShellGet, news around PS), 9. November 2022 in Linz. See
Practicing PowerShell
By: u/Ckn0wt
Hi everyone. What would be the most cost effective option/service I could use to spin up a few servers so I can build out a test AD environment to effectively practice PowerShell?
Link
By: u/Ckn0wt
Hi everyone. What would be the most cost effective option/service I could use to spin up a few servers so I can build out a test AD environment to effectively practice PowerShell?
Link
reddit
Practicing PowerShell
Hi everyone. What would be the most cost effective option/service I could use to spin up a few servers so I can build out a test AD environment to...
👍1
PowerShell Community Textbook Update
By: u/PowerShellMichael
Gday everyone! I'm really sorry about the delay with the release of the paper-back editions. We are having amazon issues. At the moment I'm exploring other options to get a paperback so I can conduct a final review.
Link
By: u/PowerShellMichael
Gday everyone! I'm really sorry about the delay with the release of the paper-back editions. We are having amazon issues. At the moment I'm exploring other options to get a paperback so I can conduct a final review.
Link
reddit
PowerShell Community Textbook Update
Gday everyone! I'm really sorry about the delay with the release of the paper-back editions. We are having amazon issues. At the moment I'm...