jszabo98
jszabo98
Saying "Minimum PowerShell version 5.1.0" is very confusing.
This is probably an old argument, but to me if a folder is excluded, a user wouldn't expect it to be recursed into. How often has this question been asked...
I found another location that seems to have all invalid dwords. It seems to be a natural part of Windows 10. ```powershell get-itemproperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\History\*\0' lParam get-itemproperty : Unable to...
```powershell PowerShell 7.4.0 reg import badreg.reg The operation completed successfully. (get-itemproperty HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*).count Get-ItemProperty: Unable to cast object of type 'System.Int64' to type 'System.Int32'. ```
It's funny that windows even allows entering invalid 64 bit dword values, that are supposed to be 32 bit. Netbeans still does it by the way. My Netbeans install script...
Powershell 5.1. c:\users\. Including hidden files.
This suits me, to skip the reparsepoints like the mounted Onedrive ... $top = ($di.GetDirectories()).Where( { $_.attributes -notmatch 'reparsepoint' })
Looks good. Actually my typical usage is like this, sort of "du | sort -n". It's good for avd, where the disk is slower. icm comp001 { dir -dir -force...
My workaround is to use powershell to wait until "un_a.exe" is done. The exit code of un_a is usually '1'. If I just tried to upgrade with "StandalonePsychoPy-2022.2.5-win64.exe /S", it...
My Excel from Office 2016 does no space trimming. Using double quotes in the csv in powershell also prevents any trimming. `Export-csv -usequotes asneeded` doesn't put any double quotes in...