PowerShell – Generate Script – Run Script – Use Toasts v1

Screenshots & Flow Show Toast 1   Run script.cmd (generated by PowerShell)   Show Toast 2   Code     Notes   Balloon Tip – Toast (older post demonstrating clickable events) Disable Quiet Hours Key: HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\QuietHours Type: DWORD Value: Enable Data: 0 Enable Notifications Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PushNotifications Type: DWORD Value: ToastEnabled Data: 1 Key: HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explor‌​er Type: Read More …

Remove HP Software – OEM Build 1903

For those in the know, remove this software…       Notes Return all MS Apps Get-AppxPackage -AllUsers Remove Apps that Match String Get-AppxPackage *xboxapp* | Remove-AppxPackage   Remove Specific App Remove-AppxPackage -AllUsers -Package “AD2F1837.HPJumpStarts_1.5.1296.0_x64__v10z8vjag6ke6”   From the Command Line powershell.exe -command “Remove-AppxPackage -AllUsers -Package AD2F1837.HPJumpStarts_1.5.1296.0_x64__v10z8vjag6ke6”   HP App Details   Other Apps 7EE7776C.LinkedInforWindows_2.0.1.0_neutral__w1wdnht996qgy Microsoft.XboxSpeechToTextOverlay_1.21.13002.0_x64__8wekyb3d8bbwe Read More …