Doug Maurer

Results 12 comments of Doug Maurer

Are these two comments backwards? **Shutdown**: osascript -e 'tell application "System Events" to **restart**' **Reboot**: osascript -e 'tell application "System Events" to **shut down**'

I actually see the issue as "missing a space on rows that lack a drive letter" as the digits on those rows are too far to the left ```Powershell DiskPath:...

I thought I had actually checked windows powershell, and therefore thought the issue was specific to pwsh.exe. However, after your comment I checked and confirm the issue is present on...

If I only read the expected and actual behavior sections, it appears it's working as you desire.

Maybe I'm misunderstanding, but wouldn't this be a perfect time to use [JEA](https://learn.microsoft.com/en-us/powershell/scripting/security/remoting/jea/overview?view=powershell-7.4)? (just enough administration) JEA allows you to specify what commands a user can run and can even...

Did an issue ever get raised for this in the dotnet repo?

Are you going to close this issue @Brodieman?

I am unable to duplicate this issue on several different machines.

Hello, Could you run the following commands to investigate? ``` $ErrorActionPreference = 'Stop' try{ Import-Module wifiprofilemanagement -Force . (Get-Module wifiprofilemanagement) { $Host.EnterNestedPrompt() } $interfaceListPtr = 0 $clientHandle = New-WiFiHandle [WiFi.ProfileManagement]::WlanEnumInterfaces($clientHandle,...

OK I'm thinking maybe I'm confused about how it should work. After successfully querying with ```powershell $cred = Get-Credential domainuser Get-OpenADComputer -Server dc01.domain.com -Credential $cred ``` Then the following commands...