Chrissy LeMaire
Chrissy LeMaire
``` Get-PSLConfig Set-PSLConfig Edit-PSLConfig New-PSLConfig ``` Sample module use
logging
log4net works xplat
https://github.com/MrWyss-MSFT/ShowUpdateApplicabilityRules > Windows Updates have Applicability Rules, that decide whether an update is installable or is installed. This information can be very useful in Troubleshooting cases and to understand why...
Would be paired with https://github.com/potatoqualitee/kbupdate/issues/59 ``` # get available updates for query $UpdateSession = New-Object -com Microsoft.Update.Session $UpdateSearcher = $UpdateSession.CreateupdateSearcher() $SearchResult = $UpdateSearcher.Search("Type!='Driver' and IsHidden=0 and IsInstalled=0") # create a...
https://github.com/rgl/packer-plugin-windows-update/blob/master/update/windows-update.ps1
https://twitter.com/wincmdfu/status/1140668272821460995 ```` #Powershell script to fetch missing #Windows updates PS C:\> (New-Object -ComObject microsoft.update.session).CreateUpdateSearcher().Search("IsHidden=0 and IsInstalled=0").Updates | select Title,RebootRequired,CVEIds,IsMandatory ````
`import-module -UseWindowsPowerShell PSDesiredStateConfiguration -MaximumVersion 1.1` according to gael > you can probably disable windows 5.1 and still have PS7 working... but that's something you should have in your help.
First, thank you so much for mkcert! I love it and use it often ⭐ It seems that some default behavior may have changed in macOS 11, as mkcert isn't...
### Summarize Functionality I did a demo on this which suggests it worked but I didn't see it in the code. This is an issue for me to ensure that...