python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to chunk items from pipeline in PowerShell?
in my PowerShell cmdlet I get an arbitrary number of items via pipeline and want to return chunks of a specified number of items.
When, for example, my script gets as input:
("A", "B&qu...
Kai Radewald
Votes: 0
Answers: 3
Add proxy element to applicationHost.config in system.webServer section via Powershell
I am trying to add <proxy enabled="true" /> element under system.webServer section.
Add-WebConfigurationProperty -Filter '/system.webServer/proxy' -Name . -Value @{ enabled="true&...

Zergatul
Votes: 0
Answers: 1
Powershell Get-Package not filtering properly
I am having this issue with filtering of application with Get-Package cmdlet
when I use the below code,
$Cred = Get-Credential
Invoke-Command -ComputerName "server01" -Credential $Cred -Sc...
Sid133
Votes: 0
Answers: 1
Powershell 5 Sign data using private RSA key
I have googled extensively on this topic, but have not found any method to replicate the following functionality in powershell 5:
Powershell 7 code:
$rsaPrivateKey = [IO.File]::ReadAllText($RSAPrivate...
Dobob
Votes: 0
Answers: 1