Earlier quoted context omitted.
Wow... would have never thunk it
No, it's native 64-bit telemetry. No thunks necessary! This is the new Microsoft.
Two Months with Powershell on a Unix
71–80 of 113 posts
Re: Two Months with Powershell on a Unix
#72"so they do these cool things, which of necessity break a model some of you will have been familiar with for 50 years in some cases, but its amazing" (in my case, 40 years.) There is considerable merit in new things. But there are also costs. And, there is the proplist version of this story in OSX. So, I know this is a "thing"
Re: Two Months with Powershell on a Unix
#73I spent some time with Powershell on Windows recently, more time than I am used to. Powershell is a clear winner over CMD.EXE by a mile, but… - As an interactive shell, it suffers from an ecosystem which is much poorer than the bash/zsh ecosystem, - As a scripting language, I’m going to use Python or Go the moment anything becomes larger than a few lines, - Installing Posh Git is just a really mediocre experience (in…
My biggest issue with powershell is how undiscoverable it is. Good luck doing anything without searching for commands in a web browser. But maybe that's just a result if it being so new. 'ls' has been around for almost 50 years... What it really feels like is a complete programming language inside of notepad.exe because of the historically terrible windows command prompt.
Re: Two Months with Powershell on a Unix
#74I spent some time with Powershell on Windows recently, more time than I am used to. Powershell is a clear winner over CMD.EXE by a mile, but… - As an interactive shell, it suffers from an ecosystem which is much poorer than the bash/zsh ecosystem, - As a scripting language, I’m going to use Python or Go the moment anything becomes larger than a few lines, - Installing Posh Git is just a really mediocre experience (in…
My biggest issue with powershell is how undiscoverable it is. Good luck doing anything without searching for commands in a web browser. But maybe that's just a result if it being so new. 'ls' has been around for almost 50 years... What it really feels like is a complete programming language inside of notepad.exe because of the historically terrible windows command prompt.
PS: the ISE (Integrated Scripting Environment) helps when writing scripts.
Re: Two Months with Powershell on a Unix
#75>For example, if we wanted to get the first three files from ls I’d do something like `ls | head -n 3`. In Powershell, it’s `$(dir)[0..2]` since the dir command is returning an array which I can index into. You could do that, but the way to write it in the bash way would be `dir | select -first 3` >a quick Google told me to use `echo | openssl s_client -showcerts -servername joejag.com -connect joejag.com:443 2>/dev/…
Re: Two Months with Powershell on a Unix
#76Earlier quoted context omitted.
My biggest issue with powershell is how undiscoverable it is. Good luck doing anything without searching for commands in a web browser. But maybe that's just a result if it being so new. 'ls' has been around for almost 50 years... What it really feels like is a complete programming language inside of notepad.exe because of the historically terrible windows command prompt.
Yes, but, POSIX shells aren’t that much more discoverable, either. It takes loads of reading and trial and error to become competent in any command line.
Re: Two Months with Powershell on a Unix
#77If you don't want PowerShell reporting your activities back to the mothership, don't forget to set POWERSHELL_TELEMETRY_OPTOUT=1 in your environment before launching PowerShell!
How often do you need to reapply this?
export POWERSHELL_TELEMETRY_OPTOUT=1
and, in theory, you should be good to go (unless/until Microsoft decides to change things up).---
After logging out and logging in again, you can verify this has been set properly by simply running
echo $POWERSHELL_TELEMETRY_OPTOUT
in your shell (it should simply output "1").Re: Two Months with Powershell on a Unix
#78If you don't want PowerShell reporting your activities back to the mothership, don't forget to set POWERSHELL_TELEMETRY_OPTOUT=1 in your environment before launching PowerShell!
Re: Two Months with Powershell on a Unix
#79Earlier quoted context omitted.
My biggest issue with powershell is how undiscoverable it is. Good luck doing anything without searching for commands in a web browser. But maybe that's just a result if it being so new. 'ls' has been around for almost 50 years... What it really feels like is a complete programming language inside of notepad.exe because of the historically terrible windows command prompt.
Yes, but, POSIX shells aren’t that much more discoverable, either. It takes loads of reading and trial and error to become competent in any command line.
Re: Two Months with Powershell on a Unix
#80If you don't want PowerShell reporting your activities back to the mothership, don't forget to set POWERSHELL_TELEMETRY_OPTOUT=1 in your environment before launching PowerShell!
I was just thinking "could this be it? Another Microsoft product that I start voluntarily using? (besides VSCode)" and then I go to the comments and the first comment I see reveals the Microsoft stink.