Skip to content

Commit 29fe7ce

Browse files
committed
ps7 compatibility
1 parent 3b68b89 commit 29fe7ce

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

Microsoft.PowerShell_profile.ps1

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ New-Alias pushp Push-PSRoot
3131
Set-Alias ls Get-ChildItemColorized -Force -Option AllScope
3232

3333
# curl.exe is installed as a choco package to \system32; ensure no alias
34-
Remove-Item alias:curl
34+
Remove-Item alias:curl -ErrorAction SilentlyContinue
3535

3636
function Start-Wilma { & 'C:\Program Files\Tools\WiLMa\WinLayoutManager.exe' }
3737
New-Alias wilma Start-Wilma
@@ -59,7 +59,9 @@ if (Test-Path($ChocolateyProfile)) {
5959
# interactive shell, otherwise it will interfere with command-lines like Flat.bat and modifying
6060
# the current working directory when we don't want it to!
6161

62-
$cmd = (gwmi win32_process -filter ("ProcessID={0}" -f (gwmi win32_process -filter "ProcessID=$PID").ParentProcessID)).CommandLine
62+
$cmd = (Get-WmiObject win32_process -filter ("ProcessID={0}" -f `
63+
(Get-WmiObject win32_process -filter "ProcessID=$PID").ParentProcessID)).CommandLine
64+
6365
if ($cmd -notmatch 'cmd\.exe')
6466
{
6567
if (Test-Path 'D:\scp') { Set-Location 'D:\scp'; }

Modules/Scripts/Get-Scripts.ps1

+7-4
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ Get-Command -CommandType ExternalScript | % `
2121
Write-Host "$name " -NoNewline
2222

2323
$parameters = $_.Parameters
24-
$parameters.Keys | ? { $sysparams -notcontains $_ } | % `
24+
if ($parameters -ne $null)
2525
{
26-
$p = $parameters[$_]
27-
$c = if ($p.ParameterType -like 'Switch') { 'DarkGray' } else { 'DarkCyan' }
28-
Write-Host "-$_ " -NoNewline -ForegroundColor $c
26+
$parameters.Keys | ? { $sysparams -notcontains $_ } | % `
27+
{
28+
$p = $parameters[$_]
29+
$c = if ($p.ParameterType -like 'Switch') { 'DarkGray' } else { 'DarkCyan' }
30+
Write-Host "-$_ " -NoNewline -ForegroundColor $c
31+
}
2932
}
3033

3134
$alias = $aliases[$name]

0 commit comments

Comments
 (0)