lukesampson / pshazz

Give your powershell some pizazz.
The Unlicense
577 stars 40 forks source link

Needing to run 'pshazz init' every time I open PowerShell #64

Closed YajJackson closed 6 years ago

YajJackson commented 6 years ago

For the longest time pshazz was automatically running when I would open PowerShell, and for some reason I'm needing to do as the title suggests to have it run.

arthurcohen commented 6 years ago

Please, check your powershell profile.

In your file must have something like this:* try { $null = gcm pshazz -ea stop; pshazz init } catch { }

If not, yout have 2 options:

  1. Reinstall pshazz
  2. Insert this* piece of code manually
YajJackson commented 6 years ago

@arthurcohen Thanks a ton, reinstalling solved the problem! (Why didn't I try turning it off and back on the first time?)