Found 59 bookmarks
Newest
PnP PowerShell | PnP PowerShell
PnP PowerShell | PnP PowerShell
PnP PowerShell is an open source, community driven, PowerShell Module designed to work with Microsoft 365.
·pnp.github.io·
PnP PowerShell | PnP PowerShell
PowerShell : Show Progress Bar, Status and % Completed for Long Running Script
PowerShell : Show Progress Bar, Status and % Completed for Long Running Script
This post contains powershell commands to display progress status and show percentage of process completed for a running command or script and it will also display total amount time remains to complete current process.
·morgantechspace.com·
PowerShell : Show Progress Bar, Status and % Completed for Long Running Script
Documentation
Documentation
The project dedicated to empowering your PowerShell scripting.
·psframework.org·
Documentation
Extract Icon from .EXE Powershell
Extract Icon from .EXE Powershell
Function ExtractIcon { Param ( [Parameter(Mandatory=$true)] [string]$folder ) [System.Reflection.Assembly]::LoadWithPartialName('System.Drawing') | Out-N...
Function ExtractIcon { Param ( [Parameter(Mandatory=$true)] [string]$folder ) [System.Reflection.Assembly]::LoadWithPartialName('System.Drawing') | Out-Null md $folder -ea 0 | Out-Null dir $folder *.exe -ea 0 -rec | ForEach-Object { $baseName = [System.IO.Path]::GetFileNameWithoutExtension($_.FullName) Write-Progress "Extracting Icon" $baseName [System.Drawing.Icon]::ExtractAssociatedIcon($_.FullName).ToBitmap().Save("$folder\$BaseName.ico") } } ExtractIcon -folder "C:\Path"
·community.spiceworks.com·
Extract Icon from .EXE Powershell
Powershell: Your first internal PSScript repository
Powershell: Your first internal PSScript repository
Setting up a basic internal repository for scripts and modules is surprisingly simple. I had no idea how easy this was for the longest time. If you are looking for ways to distribute your modules to others in your team, then you should consider this approach. Index Index Pre-requirements PowerShellGet...
·powershellexplained.com·
Powershell: Your first internal PSScript repository
dbatools
dbatools
the community's sql powershell module
·dbatools.io·
dbatools
How YOU create a script package for PowerShell gallery
How YOU create a script package for PowerShell gallery
TLDR; this article covers how to build a package for the PowerShell gallery. This is a great way to share your scripts and modules with others. You want to help the community, right? Of course, you do Here's the steps we are about to take: Author script. First you need to create a script. In this ...
·techcommunity.microsoft.com·
How YOU create a script package for PowerShell gallery
Want to use Microsoft Defender using PowerShell? Here's how.
Want to use Microsoft Defender using PowerShell? Here's how.
In this guide, we'll show you the steps to adjust settings and perform common tasks on Microsoft Defender Antivirus using PowerShell command on Windows 10.
·windowscentral.com·
Want to use Microsoft Defender using PowerShell? Here's how.
Getting setup for PowerShell Development
Getting setup for PowerShell Development
Learn how to configure and setup your computer for PowerShell Development. Start coding PowerShell daily with a few free components and easy configuration.
·techthoughts.info·
Getting setup for PowerShell Development
Using Windows PowerShell with Ansible | 4sysops
Using Windows PowerShell with Ansible | 4sysops
Microsoft Windows PowerShell is a powerful, robust tool to manage Windows Servers. Using Windows PowerShell with Ansible provides many advantages over simply using PowerShell alone.
·4sysops.com·
Using Windows PowerShell with Ansible | 4sysops
Optimizing your $Profile
Optimizing your $Profile
Optimizing your $Profile Your PowerShell Profile allows you to customize your PowerShell session and runs at startup. Complex profiles can cause a significant delay in the startup of PowerShell as it is a script that needs to be executed before the prompt first shows up.
·devblogs.microsoft.com·
Optimizing your $Profile
Powershell - Scripting - Tutorialspoint
Powershell - Scripting - Tutorialspoint
Powershell - Scripting - Windows PowerShell is a command-line shell and scripting language designed especially for system administration. Its analogue in Linux is called as Bash Scripti
·tutorialspoint.com·
Powershell - Scripting - Tutorialspoint
about_Profiles - PowerShell
about_Profiles - PowerShell
Describes how to create and use a PowerShell profile.
·docs.microsoft.com·
about_Profiles - PowerShell
PowerShell Fundamentals - powershell.one
PowerShell Fundamentals - powershell.one
In this section we are looking at PowerShell fundamentals so you can better understand and leverage some of the best hidden PowerShell features.
·powershell.one·
PowerShell Fundamentals - powershell.one
Posh-SYSLOG
Posh-SYSLOG
Send SYSLOG messages from PowerShell. Contribute to poshsecurity/Posh-SYSLOG development by creating an account on GitHub.
·github.com·
Posh-SYSLOG
Use a PowerShell Module to Run Windows Update | Scripting Blog
Use a PowerShell Module to Run Windows Update | Scripting Blog
Summary: Microsoft Scripting Guy, Ed Wilson, talks about using a free Windows PowerShell module to run Windows Update on a computer. Microsoft Scripting Guy, Ed Wilson, is here. One thing that is a bit disappointing is that Windows 8 and Windows Server 2012 do not come with cmdlets to permit me to run Windows Update from inside Windows PowerShell.
·devblogs.microsoft.com·
Use a PowerShell Module to Run Windows Update | Scripting Blog