Closed SebastianK90 closed 5 years ago
...this little tweak...
1574 lines added, 1554 lines removed. Seems that your IDE takes the tabs vs spaces wars seriously. :)
Also
If (!(Test-Path ...)) {
New-Item ...
Set-ItemProperty ...
}
else {
Set-ItemProperty ...
}
can be simplified as
If (!(Test-Path ...)) {
New-Item ...
}
Set-ItemProperty ...
Could you please rebase the commit on the current master and stick with the contribution guidelines? Alternatively you can leave it as it is and I'll fish it out later.
i will make a new pr....
Hi there, it's me again. Is it possible to integrate this little tweak? It helps people who never open IE but want to use Invoke-Webrequest in Powershell :-)