File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ New-Alias pushp Push-PSRoot
31
31
Set-Alias ls Get-ChildItemColorized - Force - Option AllScope
32
32
33
33
# 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
35
35
36
36
function Start-Wilma { & ' C:\Program Files\Tools\WiLMa\WinLayoutManager.exe' }
37
37
New-Alias wilma Start-Wilma
@@ -59,7 +59,9 @@ if (Test-Path($ChocolateyProfile)) {
59
59
# interactive shell, otherwise it will interfere with command-lines like Flat.bat and modifying
60
60
# the current working directory when we don't want it to!
61
61
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
+
63
65
if ($cmd -notmatch ' cmd\.exe' )
64
66
{
65
67
if (Test-Path ' D:\scp' ) { Set-Location ' D:\scp' ; }
Original file line number Diff line number Diff line change @@ -21,11 +21,14 @@ Get-Command -CommandType ExternalScript | % `
21
21
Write-Host " $name " - NoNewline
22
22
23
23
$parameters = $_.Parameters
24
- $parameters.Keys | ? { $sysparams -notcontains $_ } | % `
24
+ if ( $parameters -ne $null )
25
25
{
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
+ }
29
32
}
30
33
31
34
$alias = $aliases [$name ]
You can’t perform that action at this time.
0 commit comments