Andrew

Results 53 comments of Andrew

syslog problem was a known bug that got fixed. You can get the fix by rebuilding from current sources or wait couple of days for the next release. For more...

@dantraMSFT @daxian-dbw for info about GUID directories in /tmp

I can see the `An error has occurred in PowerShell IPC listening thread` error message on a simple launch and exit of PS `v7.3.0-preview.2` on Ubuntu 20: ``` Mar 29...

On a clean system [default `$env:PSModulePath` should consist of 3 parts](https://github.com/PowerShell/PowerShell/blob/d6727dcf1bdc3f446fef3ff3fb14f25b90914d23/src/System.Management.Automation/engine/Modules/ModuleIntrinsics.cs#L1173): `;;`. `` - is the `SpecialFolder.MyDocuments` location of current user (in this case - `nt authority\system`) that seems to...

Also, @VertigoRay in `Steps to reproduce` and `Expected behavior` you have `WindowsPowerShell` substring in PSModulePath (even though `Environment data` specifies `PSVersion 7.1.0`) - that is not usual for PS Core....

`"Restarting PowerShell or fixing the path manually will allow the PS Module to be discoverable."` Is there a chance that PowerShell was restarted After path was manually created? I'm pretty...

Easy workaround is to use `-FilesToSkip PSGetModuleInfo.xml` parameter; for example: ``` PS C:\> Test-FileCatalog "C:\Program Files\WindowsPowerShell\Modules\Microsoft.PowerShell.Archive\1.1.0.0\Microsoft.PowerShell.Archive.cat" ValidationFailed PS C:\> Test-FileCatalog "C:\Program Files\WindowsPowerShell\Modules\Microsoft.PowerShell.Archive\1.1.0.0\Microsoft.PowerShell.Archive.cat" -FilesToSkip PSGetModuleInfo.xml Valid ```

I have one project which is running BLE server (listening for broadcasts) on RPi3. And another one that uses classic Bluetooth for streaming data between 2 devices (RPiZero with USB...

That support list for Raspbian is out of date. Recent PS release should work on Buster fine.

It would certainly be beneficial to have a PowerShell way of enabling I2C (and, as extension, other interfaces). Though doing this during module import may not be the best place...